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

:root {
    --primary-dark-blue: #0A192F;
    --primary-medium-blue: #172A45;
    --accent-lime-green: #64FFDA;
    --accent-electric-blue: #00FFFF;
    --neutral-light-gray: #F0F2F5;
    --neutral-dark-gray: #6B7280;
    --text-white: #FFFFFF;
    --text-dark: #2D3748;
    --navbar-bg: rgba(0, 0, 0, 0.6);
    --navbar-link-hover: linear-gradient(to right, var(--accent-electric-blue), var(--accent-lime-green));
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--neutral-light-gray); 
    color: var(--text-dark); 
    scroll-behavior: smooth;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar img {
    height: 55px;
    margin-right: auto;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ccc; 
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
    color: var(--text-white); 
}

.dropdown {
    position: relative; 
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #111; 
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 100001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); 
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #222;
    color: #00f2fe;
}

/* Contact Button */
.contact-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent; 
    border-radius: 999px;
    color: var(--text-white);
    background: #000; 
    background-clip: padding-box;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1; 
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
    transition: all 0.3s ease;
    border: none; 
}

.contact-btn:hover {
    background: linear-gradient(to right, #00f2fe, #4931C1);
    border: none;
    box-shadow: 0 0 5px 5px #0693BB, 0 0 5px 5px #4931C1;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--text-white); 
    cursor: pointer;
    margin-left: 1rem;
}

#menu-toggle {
    display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 10;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .hamburger {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: #111;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.digital-growth-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(to bottom, #121212 45%, black 5%);
  min-height: 100%;
  padding: 60px 100px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  flex-wrap: wrap;
}

.content {
  flex: 1 1 50%;
  max-width: 50%;
}

.tagline {
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.95rem;
}

.title {
  font-size: 2.7rem;
  font-weight: bold;
  margin: 15px 0;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #d1d5db;
}

.btn {
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  border: 3px solid #dadbdb;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 0;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  background: #5e368e;
  border-color: #5e368e;
  transform: scale(1.05);
  box-shadow: 0 0 15px #5e368e;
  z-index: 2;
}

.image-container {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  left: 3rem;
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  width: 80%;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  background: #1e1e1e;
  padding: 18px;
  border-radius: 10px;
  transition: background 0.3s;
  border: 2px solid #1e1e1e;
  box-shadow: 0 0 0 4px #27272a;
  backdrop-filter: blur(8px);
}

.feature-box:hover {
  background: #27272a;
  box-shadow: 0 0 0 6px #2c2c2f, 0 0 16px 8px #2c2c2f;
}

.feature-box:hover h3 {
  color: #488eff;
}

.feature-box span {
  font-size: 1.6rem;
}

.feature-box h3 {
  margin: 10px 0 5px;
  font-size: 1.05rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.4;
}

@media (max-width: 1800px) {
  .digital-growth-section {
    background: linear-gradient(to bottom, #212121 52%, black 5%);
  }
  .image-container img {
    width: 95%;
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .feature-box {
    padding: 6px;
  }
}


@media (max-width: 1450px) {
  .title {
    font-size: 2.2rem;
  }
  .image-container img{
    width: 100%;
  }
  .feature-box h3 {
    font-size: 0.9rem;
  }

  .feature-box p {
    font-size: 0.7rem;
    color: #9ca3af;
    line-height: 1.4;
  }
}
/* For screens smaller than 1024px (e.g., tablets) */
@media (max-width: 1204px) {
  .digital-growth-section {
    padding: 40px 60px;
    min-height: auto; /* Allow height to adjust */
    background: linear-gradient(to bottom, #212121 47%, black 5%);
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
  }

  .image-container img{
    display: none;
  }

  .content {
    flex: 1 1 100%; /* Allow content to take full width */
    max-width: 100%;
    text-align: center; /* Center text content */
  }

  .features {
    grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
    gap: 20px;
    justify-content: center;
  }

  .feature-box {
    padding: 15px;
  }
  .feature-box h3 {
    font-size: 1rem;
  }

  .feature-box p {
    font-size: 0.8rem;
    color: #9ca3af;
  }
}

@media (max-width: 768px) {
  .digital-growth-section {
    background: linear-gradient(to bottom, #212121 35%, black 5%);
    padding: 30px 20px;
    flex-direction: column; /* Stack content and image vertically */
    align-items: center; /* Center items when stacked */
  }

  .content {
    order: 1; /* Content (with button) comes first */
    text-align: center;
  }

  .image-container {
    order: 2; /* Image comes after content */
    margin-top: 30px; /* Add space below image */
    margin-bottom: 30px; /* Add space below image to separate from features */
  }

  .title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.8rem;
  }

  .features {
    order: 3; /* Features come after image */
    grid-template-columns: 1fr; /* Single column for features */
    gap: 15px;
    margin-top: 25px;
    position: relative;
    top: 2rem; /* Reset top position */
  }

  .feature-box {
    padding: 12px;
  }

  .feature-box h3 {
    font-size: 1rem;
  }

  .feature-box p {
    font-size: 0.85rem;
  }
  .features {
    margin-top: 25px;
  }

}

/* For very small screens (e.g., narrow mobile views) */
@media (max-width: 480px) {
  .digital-growth-section {
    background: linear-gradient(to bottom, #212121 34%, black 5%);
    padding: 50px 15px;
  }

  .title {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 0.6rem;
  }
  .features {
    top: 3.5rem; /* Reset top position */
  }
}

.stats-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #121212;
    padding: 20px;
    color: white;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    min-width: 200px;
    padding: 10px;
    text-align: center;
}

.stat-box img {
    width: 80px;
    height: 80px;
}
.stat-box p {
  font-size: 1.2rem;
}

.rating {
    color: gold;
    font-size: 24px;
    line-height: 1.2;
}

.divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Tablet */
@media (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        padding: 15px;
    }
    .stat-box img {
      width: 50px;
      height: 50px;
    }
    .stat-box p {
    font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .stat-box {
        flex-direction: column;
        gap: 8px;
        width: auto;
        min-width: 80px;
    }
    .stat-box img {
      width: 40px;
      height: 40px;
    }
    .stat-box p {
      font-size: 0.9rem;
    }
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: url('../assets/Images/bg-image.png') center center/cover no-repeat;
  padding: 70px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Floating decorative shapes */
.hero-section .floating-shape {
  position:absolute;
  width:420px; height:420px;
  background:radial-gradient(circle at 35% 35%, rgba(4,228,255,0.5), rgba(4,228,255,0) 70%);
  filter:blur(40px);
  opacity:0.3;
  animation: drift 18s ease-in-out infinite;
  pointer-events:none;
}
.hero-section .floating-shape.shape-2 {
  top:auto; bottom:-120px; right:-160px; left:auto;
  background:radial-gradient(circle at 60% 40%, rgba(88,62,217,0.55), rgba(88,62,217,0) 70%);
  animation-delay:6s;
  width:500px; height:500px;
  opacity:0.25;
}
@keyframes drift {0%,100%{transform:translate3d(0,0,0);}50%{transform:translate3d(60px,-50px,0);}}

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

.hero-content {
  flex: 1;
  max-width: 60%;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #04E4FF, #583ED9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-line {
  width: 160px;
  height: 5px;
  background: linear-gradient(90deg, #04E4FF, #583ED9);
  border-radius: 4px;
  margin: 10px 0 25px;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.hero-content p {
  position: relative;
  top: 1rem;
  font-size: 28px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 45rem;
}

.hero-form {
  width: 500px;
  position: relative;
  top: 2.5rem;
  z-index: 1;
  text-align: center;
}

.form-icon {
  width: 90px;
  margin-bottom: 15px;
}

.hero-form form {
  background: rgba(31, 31, 31, 0.4);
  padding: 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-form h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.hero-form label {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
  color: #fff;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2d2d2d;
  color: #fff;
  font-size: 15px;
}

.hero-form textarea {
  resize: none;
  height: 90px;
}

.hero-form button {
  margin-top: 15px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border: none;
  padding: 14px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.hero-form button:hover {
  opacity: 0.9;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(139, 92, 246, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
  }
  .hero-content h2 {
    font-size: 1.6rem;
    max-width: 100%;
  }
  .hero-content p {
    top: 0rem;
    font-size: 14.5px;
    max-width: 100%;
  }
  .gradient-line {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
  }
  .hero-content, .hero-form {
    top: 0rem;
    max-width: 100%;
  }

  .hero-form {
    margin-top: 30px;
  }
}

@media (max-width: 450px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
  }
  .hero-content h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }
  .hero-form {
    padding:30px;
  }
}

.services-section {
  text-align: center;
  padding: 60px 280px;
  background: #0b0b0b;
  color: white;
  font-family: Arial, sans-serif;
}

.services-section h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 5px;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-section h2 span {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
  
.services-section .subtext {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.service-card {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 3px solid transparent;
  background:
    linear-gradient(#0b0b0b, #0b0b0b) padding-box,
    linear-gradient(90deg, #06b6d4, #3b82f6) border-box;
  height: 320px;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 35px;
  color: white;
  text-align: center;
  padding: 0 12px;
}

.explore-btn {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.explore-btn:hover {
  opacity: 0.92;
  background: linear-gradient(90deg, #2259b1, #04d9ff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(34, 89, 177, 0.25);
}

/* ------------------- Responsive ------------------- */
@media (max-width: 1200px) {
  .services-section {
    padding: 60px 100px;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 50px 60px;
  }
  .services-section h2 {
    font-size: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 30px;
  }
  .services-section h2 {
    font-size: 32px;
  }
  .overlay {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 30px 20px;
  }
  .services-section h2 {
    font-size: 25px;
  }
  .services-section .subtext {
    font-size: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
  .service-card {
    height: 280px;
  }
  .overlay {
    font-size: 24px;
  }
  .explore-btn {
    width: 100%;
    padding: 14px 0;
  }
}
/* Global Section */
.global-section {
  position: relative;
  padding: 50px 55px;
  background: black;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}

/* Text Content */
.global-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  left: 100px;
}

.global-content h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #2dd4bf, #60a5fa, #693aa3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 20px;
}

.global-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0f7fa;
  text-shadow: 0 0 5px rgba(0, 255, 200, 0.3);
}

.video-container {
  flex: 1;
  max-width: 750px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-left: 40px; /* Move video to right side by adding left margin */
  left: auto; /* Remove left alignment */
  margin-right: 0; /* Remove right margin */
  display: flex;
  justify-content: flex-end; /* Align video to the right */
}

.video-container video {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 15px;
  margin-left: 0; /* Align video to left */
}

@media (max-width: 1024px) {
  .global-section {
    padding: 40px 40px;
    flex-direction: column;
    text-align: center;
  }

  .global-content {
    left: 0;
    max-width: 90%;
  }

  .global-content h2 {
    font-size: 2.2rem;
  }

  .video-container {
    max-width: 100%;
    text-align: center;
  }

  .video-container video {
    width: 90%;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .global-section {
    padding: 30px 20px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .global-content {
    left: 0;
    max-width: 100%;
    text-align: center;
  }

  .global-content h2 {
    font-size: 2rem;
  }

  .global-content p {
    font-size: 1rem;
  }

  .video-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .video-container video {
    width: 100%;
    max-width: 500px;
  }
}

.faq-container {
    width: 100%;
    background-color: #000;
    padding: 2rem clamp(1.5rem, 5vw, 3rem);
    border: 1px solid #2D2D2D;
}

/* --- Header Section --- */
.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #EAEAEA;
}

.faq-header h2 .highlight {
  background: linear-gradient(90deg, #00AFFF, #5736b3 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.faq-header .image-placeholder {
    width: 100%;
    max-width: 250px;
    height: 150px;
    margin: 0 auto;
    background-color: #1E1E1E;
    border: 2px dashed #2D2D2D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B3B3B3;
    font-size: 0.9rem;
    /* Remove the line below and replace with your <img> tag */
    margin-bottom: 2rem; 
}

/* --- FAQ List --- */
.faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.faq-item {
    background-color: #1E1E1E;
    border-radius: 16px;
    border: 1px solid #2D2D2D;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #252525;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
    color: #EAEAEA;
    margin: 0;
}

/* Creates the circular bullet point */
.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #EAEAEA;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-question::before {
    background-color: #00AFFF;
}

/* --- Answer Styling & Hover Logic --- */
.faq-answer {
    color: #B3B3B3;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out, padding-top 0.5s ease-out;
    padding-left: 2rem; /* Aligns with question text */
}

.faq-answer p {
    margin: 0;
}

.faq-item:hover .faq-answer {
    padding-top: 1rem; /* Space between question and answer */
    max-height: 250px; /* Adjust if your answers are longer */
    opacity: 1;
}

/* --- Contact Form --- */
.contact-form {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}

.contact-form input {
    flex-grow: 1;
    background-color: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    color: #EAEAEA;
    font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder {
    color: #B3B3B3;
}

.contact-form button {
    background: linear-gradient(45deg, #00AFFF, #007BFF);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 175, 255, 0.3);
}

@media (max-width: 600px) {
    .faq-container {
        padding: 1.5rem;
    }
    .faq-container {
        padding: 1.5rem;
    } 
    .contact-form {
        flex-direction: column;
    }
}
.creative-journey {
    /* Added styles from body for component to be centered and have a dark background */
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
    padding: 1rem;
    position: relative;
    overflow: hidden; /* Hides gradient overflow */
    text-align: center;
    width: 100%;
    margin: auto; /* Center the component */
    z-index: 1;
}

/* -------------------
  * Faint Background Circles
  * ------------------- */
.creative-journey::before,
.creative-journey::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(40, 40, 40, 0.3) 0%, transparent 65%);
    z-index: -1; /* Place behind the content */
    transform: translate(-50%, -50%);
}

.creative-journey::before {
    top: 50%;
    left: 20%;
}

.creative-journey::after {
    top: 50%;
    left: 80%;
}

.journey-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap; 
}

.step-card {
    background-color: #212121;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    width: 260px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(51, 193, 255, 0.1);
}

.step-number {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #404040, #1e1e1e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f0f0f0;
    position: absolute;
    top: -27px; /* Half of height to sit on the edge */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

.step-title {
    color: #33C1FF; 
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.95rem;
    color: #c0c0c0; 
    line-height: 1.6;
}

@media (max-width: 920px) {
    .steps-container {
        gap: 5rem;
    }
    .step-card {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .creative-journey {
        padding: 1.5rem;
    }
    .journey-title {
        font-size: 1.8rem;
        margin-bottom: 5rem;
    }
    .step-card {
        width: 100%;
        max-width: 320px;
    }
}

.testimonials-section {
    /* CSS variables are scoped to this component */
    --gradient-start: #3a8bff;
    --gradient-end: #9d3aff;
    --card-width: 360px;
    --card-gap: 40px;

    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    width: 100%;
    padding: 60px 0;
    text-align: center;
    overflow: hidden; /* Critical for carousel effect */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    padding: 0 20px; /* Prevent text touching screen edges */
}

.section-title .gradient-text {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Carousel --- */
.carousel-wrapper {
    position: relative;
}

.testimonial-carousel {
    display: flex;
    align-items: center; /* Vertically align cards */
    gap: var(--card-gap);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Testimonial Card --- */
.testimonial-card {
    background-color: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
    width: var(--card-width);
    flex-shrink: 0;
    box-sizing: border-box;
    text-align: left;
    opacity: 0.4;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: #555;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: default;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-header .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #333;
}

.card-header .customer-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #333;
}

.card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0;
}

/* --- Carousel Navigation Dots --- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #444444;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .testimonials-section {
        --card-width: 320px;
        --card-gap: 20px;
    }
    .section-title {
        font-size: 2rem;
    }
}
  @media (max-width: 480px) {
    .testimonials-section {
        --card-width: 280px;
    }
    .section-title {
        font-size: 1.75rem;
    }
      .card-body p {
        font-size: 0.95rem;
    }
}
/* Banner Section */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #272727;
  padding: 40px;
  font-family: Arial, sans-serif;
}

/* Banner Box */
.banner-box {
  background: #1A1A1A;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgb(19, 19, 19);
  max-width: 900px;
  width: 100%;
  gap: 20px;
}

/* Banner Text */
.banner-text h2 {
  background: linear-gradient(90deg, #06b6d4, #6025b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 35px;
  margin-bottom: 10px;
}

.banner-text p {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Buttons */
.banner-buttons {
  display: flex;
  gap: 12px;
}

.connect-btn1,
.contact-btn2 {
  background: linear-gradient(90deg, #444444, #000000);
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.connect-btn1:hover,
.contact-btn2:hover {
  background: linear-gradient(to left, #444444, #000000);
}

/* Icon Section */
.banner-icon .phone-icon {
  width: 150px;
  height: auto;
}

/* Responsive */
@media (max-width: 600px) {
  .banner-text h2 {
    font-size: 23px;
  }
  .banner-text p {
    font-size: 13px;
  }
  .banner-box {
    flex-direction: column;
    text-align: center;
  }

  .banner-icon {
    margin-top: 15px;
  }
  .banner-buttons {
    text-align: center;
    justify-content: center;
  }
}


.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

.footer-col {
    padding: 0 15px; /* Gutter space between columns */
}

/* --- Column 1: About Section --- */
.footer-col.about {
    flex: 2; /* Takes up more space */
    min-width: 250px;
}

.footer-col .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col .logo svg {
    width: 40px;
    height: auto;
    margin-right: 12px;
}

.footer-col .logo-text {
    font-size: 28px;
    font-weight: 600;
}

.footer-col .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* --- Column 2 & 3: Links and Connect --- */
.footer-col.links,
.footer-col.connect {
    flex: 1; /* Each takes up 1 part of the available space */
    min-width: 200px; /* Increased min-width to better fit the new icons */
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a0a0a0;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- Social Icons --- */
.social-links a {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    margin-right: 15px; 
    transition: color 0.3s ease;
}

.social-links a:last-child {
    margin-right: 0;
}

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

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-col:last-child {
        margin-bottom: 0;
    }
      .footer-col.connect {
        min-width: unset;
    }
}