.splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease;
}
  
.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

#splash-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-intro-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    z-index: 10;
}

.skip-intro-btn:hover {
    background: rgba(0,0,0,0.8);
}
  
.hidden {
    display: none;
}


/* styles.css */
body {
  margin: 0;
  font-family: 'Montserrat';
  background-color: #f4f7fa;
  color: #33495d;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

body.fade-out {
  opacity: 0;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 999;
}
  
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: black;
    white-space: nowrap;
}

.logo a {
  text-decoration: none;
  color: inherit;
}
  
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    position: relative;
}
  
.nav-link {
    color: black;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}
  
.nav-link:hover {
    color: #fe0099;
}
  
.nav-underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #fe0099;
    transition: 0.4s;
}
  
nav.navbar {
    position: fixed;
    top: 0;
    width: 95%;
    background-color: white;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
nav.sticky {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
  
nav.hide-nav {
    transform: translateY(-100%);
}  
 
/* HAmburger menu style */
/* Hamburger Icon Styles */
/* Hamburger base style */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: center;
}

/* The three bars */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              opacity 0.3s ease-in-out;
  transform-origin: center;
}



/* Animate on toggle */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6.3px, 6.3px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6.3px, -6.3px);
}

/* Mobile Styles */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 20px 10px;
  }

  .nav-links {
    position: fixed;
    top: 0px;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    width: 200px;
    height: calc(100vh - 70px);
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex !important;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-underline {
    display: none;
  }
}

/* Home Page */
.hero {
    height: 75vh;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background-color: #b8c0ca;
    overflow: hidden;
    background-image: url('media/Images/hero_section.jpeg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: #000; /* Black text */
}

@media (max-width: 768px) {
  .hero {
    height: 55vh; /* Adjusts height for smaller screens */
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}
  
.hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
    color: white;
    padding-top: 100px;
    margin-bottom: 1.5rem;
}
  
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-subtitle {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}
  
.cta {
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 2;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
  
.cta:hover {
    transform: scale(1.05);
    background-color: #fe0099;
}
  

#hero-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}
  
.services h2 {
    font-size: 2rem;
    color: #33495d;
    margin-bottom: 40px;
}
  
.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
  
.card {
    background-color: #75ba75;
    padding: 30px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}
  
.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
  

.digital-presence {
    background-color: white;
    color: black;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}
  
.bouncing-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #33495d;
}
  
.bouncing-heading span {
    display: inline-block;
    animation: bounce 0.5s ease-in-out;
  
}


/* Add staggered animation delay */
.bouncing-heading span:nth-child(1)  { animation-delay: 0s; }
.bouncing-heading span:nth-child(2)  { animation-delay: 0.05s; }
.bouncing-heading span:nth-child(3)  { animation-delay: 0.1s; }
.bouncing-heading span:nth-child(4)  { animation-delay: 0.15s; }
.bouncing-heading span:nth-child(5)  { animation-delay: 0.2s; }
.bouncing-heading span:nth-child(6)  { animation-delay: 0.25s; }
.bouncing-heading span:nth-child(7)  { animation-delay: 0.3s; }
.bouncing-heading span:nth-child(8)  { animation-delay: 0.35s; }
.bouncing-heading span:nth-child(9)  { animation-delay: 0.40s; }
.bouncing-heading span:nth-child(10)  { animation-delay: 0.45s; }
.bouncing-heading span:nth-child(11)  { animation-delay: 0.50s; }
.bouncing-heading span:nth-child(12)  { animation-delay: 0.55s; }
.bouncing-heading span:nth-child(13)  { animation-delay: 0.60s; }
.bouncing-heading span:nth-child(14)  { animation-delay: 0.65s; }
.bouncing-heading span:nth-child(15)  { animation-delay: 0.70s; }
.bouncing-heading span:nth-child(16)  { animation-delay: 0.75s; }
.bouncing-heading span:nth-child(17)  { animation-delay: 0.80s; }
.bouncing-heading span:nth-child(18)  { animation-delay: 0.85s; }
.bouncing-heading span:nth-child(19)  { animation-delay: 0.90s; }
.bouncing-heading span:nth-child(20)  { animation-delay: 0.95s; }
.bouncing-heading span:nth-child(21)  { animation-delay: 1.00s; }
.bouncing-heading span:nth-child(22)  { animation-delay: 1.05s; }
.bouncing-heading span:nth-child(23)  { animation-delay: 1.10s; }
.bouncing-heading span:nth-child(24)  { animation-delay: 1.15s; }
.bouncing-heading span:nth-child(25)  { animation-delay: 1.20s; }
.bouncing-heading span:nth-child(26)  { animation-delay: 1.25s; }
.bouncing-heading span:nth-child(27)  { animation-delay: 1.30s; }
.bouncing-heading span:nth-child(28)  { animation-delay: 1.35s; }
.bouncing-heading span:nth-child(29)  { animation-delay: 1.40s; }
.bouncing-heading span:nth-child(30)  { animation-delay: 1.45s; }
/* ... continue increasing delay for each span ... */

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
}
  
.digital-presence p {
    margin-top: 0;
    font-size: 1.125rem;
    color: #33495d;
}

.digital-presence .container {
    max-width: 1200px;
    margin: 0 auto;
}
  
.presence-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
  
.text-col {
    flex: 1;
    min-width: 300px;
}
  
.image-col {
    flex: 0.6;
    min-width: 300px;
    text-align: center;
    opacity: 1;
}
  
.image-col img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 1;
}
  
.digital-presence h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
  
.digital-presence .description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
}
  
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
  
.stat-item {
    min-width: 120px;
}
  
.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
  
.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #b8c0ca;
}
  
/* Responsive */
@media (max-width: 900px) {
    .presence-content {
      flex-direction: column;
      text-align: center;
    }
  
    .text-col, .image-col {
      width: 100%;
    }
    
    .stats {
      justify-content: center;
    }
}

.portfolio {
    padding: 60px 40px;
    background-color: #fff ;
    text-align: center;
}
  
.portfolio h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: black;
}
  
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
  
.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    width: 85%;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;

}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  margin: 0 auto;
}

.portfolio-item:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 85%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card-front img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 8px;
}

.card-front h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #33495d;
}

.card-back {
  width: 100%;
  height: 100%;
  background-color: #33495d;
  color: white;
  transform: rotateY(180deg);
  text-align: left;
  box-sizing: border-box;
}


.card-back h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-back p {
  font-size: 0.95rem;
}
  
.portfolio-item:hover {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
  
.portfolio-item img {
    width: 100%;
    display: block;
}
  
.portfolio-item h3 {
    margin: 20px;
    font-size: 1.2rem;
    color: #33495d;
}
  
.footer {
    background-color: #33495d;
    color: #ffffff;
    padding: 60px 40px 20px;
    font-family: 'Montserrat', sans-serif;
}
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}
  
.footer h2, .footer h3 {
    margin-bottom: 10px;
}
  
.footer a {
    color: #b8c0ca;
    text-decoration: none;
    transition: color 0.3s;
}
  
.footer a:hover {
    color: #fe0099;
}
  
.footer-nav ul {
    list-style: none;
    padding: 0;
}
  
.footer-nav li {
    margin-bottom: 8px;
}
  
.footer-social a {
    margin-right: 12px;
    display: inline-block;
}
  
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #75ba75;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #b8c0ca;
}


.footer-newsletter-full {
  background-color: #33495d; /* match footer */
  padding: 40px 20px;
}

.footer-newsletter-full .container {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
  text-align: left;
  padding: 0 20px;
}

.footer-newsletter-full h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.footer-newsletter-full p {
  color: #b8c0ca;
  margin-bottom: 20px;
  max-width: 500px;
}

.footer-newsletter {
    flex: 1 1 100%;
    max-width: 200px;
}
  
.footer-newsletter h3 {
    margin-bottom: 10px;
    color: #ffffff;
}
  
.footer-newsletter p {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 15px;
}
  
.klaviyo-form-T8AbCd {
    max-width: 100%;
    color: black;
}

/* Klaviyo form text black color maintain */
.klaviyo-form-T8AbCd h3,
.klaviyo-form-T8AbCd h2,
.klaviyo-form-T8AbCd p,
.klaviyo-form-T8AbCd label {
  color: black !important;
}

/* Confirmation */
.success-animation {
    margin-top: 20px;
    text-align: center;
    color: white;
    transition: opacity 0.5s ease;
  }
  
  .hidden {
    display: none;
  }
  
  .checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #75ba75;
    margin: 0 auto 10px;
    position: relative;
  }
  
  .checkmark {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 20px;
    height: 40px;
    border: solid white;
    border-width: 0 6px 6px 0;
    transform: rotate(45deg);
    animation: drawCheck 0.6s ease forwards;
  }
  
  @keyframes drawCheck {
    from {
      height: 0;
      width: 0;
      opacity: 0;
    }
    to {
      height: 40px;
      width: 20px;
      opacity: 1;
    }
}

/* how-it-works – Timeline Section */

.how-it-works {
  background: #a8e6cf;
  padding: 60px 20px;
  text-align: center;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  color: #2c7be5;
  font-weight: 800;
}

@media (max-width: 767px) {
  .timeline-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
  }

  .timeline-steps {
    justify-items: left;
    margin: 3rem;
  
  }
}

/* arrow */

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2c7be5;
}

.arrow::before {
  content: '';
}

@media (min-width: 768px) {
  .arrow::before {
    content: '➔'; /* desktop: horizontal */
    font-size: 2rem;
    color: #2c7be5;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .arrow::before {
    content: '⬇'; /* mobile: vertical */
    font-size: 2rem;
    color: #2c7be5;
    margin: 20px 0;
  }
}


/* client-goals – Goals Grid */

.client-goals {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.goal-card {
  background: #a8e6cf;
  padding: 25px;
  margin: 1rem;
  border-radius: 14px;
  transition: transform 0.3s;
}

.goal-card:hover {
  transform: translateY(-8px);
}

/* tech-stack – Tools Grid */

.tech-stack {
  background: linear-gradient(135deg, #a8e6cf, #f9fcff);
  padding: 60px 20px;
  text-align: center;
}
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}
.stack-item {
  background: #ffffff;
  border: 1px solid #dce6f1;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}


/* live projectsm*/

.live-previews {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.slider-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
}
.slider-wrapper .slide {
  flex: 0 0 80%;
  border: 2px solid #e1e5ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}
.slider-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Latest blogs */

.latest-blogs {
  padding: 60px 20px;
  background: #a8e6cf;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.latest-blogs .section-heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 800;
  color: #333;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 350px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.blog-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #0073e6;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.fallback-message, .loading-placeholder {
  text-align: center;
  font-size: 1rem;
  color: #777;
  padding: 2rem 0;
}

/* Why Us Section */

.why-us-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.reasons-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1rem;
  text-align: left;
}

.reasons-list li {
  margin-bottom: 15px;
  padding-left: 1.5em;
  position: relative;
}

.reasons-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #10b981;
}

/* Services Page*/

.hero-services {
  height: 30vh;
  text-align: center;
  padding: 100px;
  position: relative;
  background-color: #b8c0ca;
  overflow: hidden;
  background-image: url('media/Images/services-hero.avif'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #000; /* Black text */
  bottom: -30px;
}

.hero-service-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  padding-top: 50px;
  margin-bottom: 1.5rem;
}

.hero-service-subtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.container {
  flex-wrap: wrap; /* for flexbox */
   /* ensures content grows */
}

.services-section {
  background-color: white;
  padding-bottom: 6rem;
  
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}


.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
}

.service-tile {
  background-color: #00b0905f;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-tile:hover {
  transform: translateY(-10px);
}

.service-tile .content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.service-tile h1 {
  font-size: 1rem;
  color: #666;
}

.service-tile p {
  font-size: 0.95rem;
  color: #555;
}

.service-tile img {
  width: 100%;
  height: auto;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .hero-services {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh; /* Ensures full screen height without clipping */
    box-sizing: border-box;
    overflow: visible; /* Prevent content clipping */
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .services-section {
    padding-bottom: 6rem; /* gives breathing room above footer */
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem; /* Left and right padding */
    box-sizing: border-box;
  }


  .service-tile {
    margin: 0; /* Don't let random margins mess things up */
    width: 100%;
  }

  .service-tile:not(:last-child) {
    margin-bottom: 2rem;
  }

  .service-tile img {
    width: 100%;
    height: auto;
    display: block;
  }
  

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

  footer {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
  }
}


/* Starter Kit */

.launch-kits-section {
  background: #a8e6cf;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
}

.launch-kit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.launch-kit-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 300px;
  opacity: 1;
  transform: translateY(40px);
  transition: none;
}
.launch-kit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.launch-kit-card h3 {
  color: #111;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.launch-kit-card ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #444;
}
.launch-kit-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c7be5;
}
.btn.explore-btn {
  background-color: #2c7be5;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn.explore-btn:hover {
  background-color: #fe0099;
}

@media (max-width: 768px) {
  .launch-kit-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* Service Breakdown */

.service-breakdown-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.breakdown-table-wrapper {
  overflow-x: auto;
  background: #a8e6cf;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  max-width: 100%;
}

.service-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.service-breakdown-table thead {
  background: #fff;
}

.service-breakdown-table th,
.service-breakdown-table td {
  padding: 16px;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-size: 1rem;
}

.service-breakdown-table td:first-child,
.service-breakdown-table th:first-child {
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .service-breakdown-table {
    font-size: 0.9rem;
  }
}

/* Add-ons section */

.add-ons-section {
  background: #a8e6cf;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.add-on-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.add-on-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.add-on-card p {
  font-size: 0.95rem;
  color: #555;
}

.add-on-card .price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2c7be5;
}

.add-on-card.active {
  border-color: #2c7be5;
  background: #f0f6ff;
  transform: scale(1.02);
}

/* Quote */

.quote-builder {
  background: #a8e6cf;
  padding: 60px 20px;
  text-align: center;
}

.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.quote-column {
  flex: 1 1 300px;
  max-width: 400px;
}

.quote-service-card,
.quote-addon-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quote-service-card.active,
.quote-addon-card.active {
  border-color: #2c7be5;
  background: #e6f0ff;
}

#generate-quote {
  background: #2c7be5;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#generate-quote:hover {
  background: #fe0099;
}

#product-count-wrapper {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  text-align: left;
}

#product-count-wrapper label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

#product-count-wrapper input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out;
}

#product-count-wrapper input[type="number"]:focus {
  border-color: #2c7be5;
  outline: none;
}

.product-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-input-group input[type="number"] {
  flex: 1;
}

.unit-label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .addon-option {
    max-width: 100%;
  }
  .product-input-group {
    flex-direction: row;
    justify-content: space-between;
  }
  .quote-section input,
  .quote-section select {
    max-width: 100%;
  }
}

/* Service Quiz */

.service-quiz {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  max-width: 700px;
  margin: 40px auto;
}

.service-quiz h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.quiz-step, .quiz-result {
  transition: all 0.3s ease;
}

.quiz-step button, .quiz-result button {
  margin: 10px;
  padding: 15px 25px;
  font-size: 1rem;
  border: none;
  background: #2c7be5;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quiz-step button:hover {
  background: #fe0099;
}

#quizForm {
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quiz-step h3 {
  margin-bottom: 10px;
}

.quiz-step label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.next-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #2c7be5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#quizResult {
  margin-top: 30px;
  padding: 20px;
  background: #f1f7ff;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .quiz-step button, .quiz-result button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}


/* About Page*/

.hero-about {
  height: 90vh;
  text-align: center;
  padding: 100px;
  position: relative;
  background-color: #b8c0ca;
  overflow: hidden;
  background-image: url('media/Images/about_hero.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #000; /* Black text */
  bottom: -30px;
}

.hero-about-title {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  margin-top: 200px;
  margin-bottom: 1.5rem;
}

.hero-about-subtitle {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

 @media (max-width: 768px) {
  .hero-about {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-about-title {
    font-size: 3rem;
    margin: 0 10px;
  }
}



/* About Page - Story Section */

.my-story-section {
  background-color: #a8e6cf;
  padding: 5rem 2rem;
  text-align: center;
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
}

.my-story-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.my-story-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

/* About Page - TimeLine Section */

.timeline-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.timeline-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #00b090;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  width: 80%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.timeline-item .year {
  font-weight: bold;
  font-size: 1.25rem;
  color: #00b090;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .timeline {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
  }

  .timeline::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .timeline-item {
    width: 200px;
    max-width: 200px;
    text-align: center;
  }

  .timeline-item .year {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

/* what-we-do section */
.what-we-do-section {
  padding: 80px 20px;
  background-color: #a8e6cf;
}

.what-we-do-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #111827;
}

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

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.333);
}

.service-card.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111827;
}

.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
}

/* Meet the Fouder */

.meet-founder-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.founder-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: auto;
}

.founder-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  margin-bottom: 20px;
}

.founder-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .founder-intro {
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    text-align: left;
  }
  .founder-text {
    max-width: 500px;
  }
}


/* Contact Page */

.hero-contact {
  height: 30vh;
  text-align: center;
  padding: 100px;
  position: relative;
  background-color: #b8c0ca;
  overflow: hidden;
  background-image: url('media/Images/contact-hero.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #000; /* Black text */
  bottom: -30px;
}

.hero2-contact {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(50px);
  background-color: #a8e6cf;
  margin-bottom: 5rem;
}

.hero-contact-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  color: black;
  margin-bottom: 1.5rem;
}

.hero-contact-subtitle {
  font-size: 1rem;
  color: black;
  font-weight: 400;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}


/* CONTACT MAIN */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(50px);
  background-color: #a8e6cf;
  margin-bottom: 5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}

.contact-section h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.map-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.btn-book {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0078d7;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 1rem;
}

.btn-book:hover {
  background-color: #005fa3;
}

/* Show animation when visible */
.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fe0099;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
}