@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');



:root {

  /* Colors */

  --bg-main: #000716;

  --bg-secondary: #0a0a0a;

  --bg-card: rgba(25, 25, 25, 0.6);

  --bg-card-hover: rgba(35, 35, 35, 0.8);



  --text-primary: #ffffff;

  --text-secondary: #a1a1aa;

  --text-muted: #71717a;



  --accent-primary: #ffffff;

  --accent-glow: rgba(255, 255, 255, 0.1);

  --gradient-primary: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 100%);

  --gradient-text: linear-gradient(135deg, #6c6cff 0%, #bebef6 100%);

  --gradient-glow: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);



  --border-color: rgba(255, 255, 255, 0.08);

  --border-color-hover: rgba(255, 255, 255, 0.15);



  /* Typography */

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;



  /* Utilities */

  --radius-sm: 8px;

  --radius-md: 12px;

  --radius-lg: 24px;

  --radius-xl: 32px;



  --transition-fast: 0.15s ease;

  --transition-normal: 0.3s ease;

  --transition-slow: 0.5s ease;

}



/* Reset & Base */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  background-color: var(--bg-main);

  color: var(--text-primary);

  font-family: var(--font-main);

  line-height: 1.6;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  line-height: 1.2;

  letter-spacing: -0.03em;

  margin-bottom: 1rem;

  font-weight: 500 !important;

  font-family: "Playfair Display", Georgia, serif;



}



a {

  color: inherit;

  text-decoration: none;

  transition: all var(--transition-fast);

}



img {

  max-width: 100%;

}



.hl {

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-style: italic;

}



/* Typography Utilities */

.text-gradient {

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.secGap {

  padding: 60px 0

}



.section-tag {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.35rem 0.75rem;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border-color);

  border-radius: 100px;

  font-size: 0.875rem;

  font-weight: 500;

  color: var(--text-secondary);

  margin-bottom: 1.5rem;

}



.timeline-list li {

  font-size: 14px;

}



.section-tag i {

  width: 14px;

  height: 14px;

  stroke-width: 2.5;

}



.section-title {

  font-size: clamp(2.5rem, 5vw, 4rem);

  font-weight: 800;

  letter-spacing: -0.04em;

  margin-bottom: 1.5rem;

  color: white;

}



.section-subtitle {

  font-size: 1.125rem;

  color: var(--text-secondary);

  max-width: 700px;

  margin: 0 auto 3rem;

  font-weight: 400;

}



/* Buttons */

.btn-primary-new {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 0.75rem 1.5rem;

  background: var(--text-primary);

  border: 1px solid #00133f;

  color: var(--bg-main);

  border-radius: 26px;

  font-weight: 600;

  font-size: 0.95rem;

  cursor: pointer;

  transition: all var(--transition-fast);

}



.btn-primary-new:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);

  color: var(--bg-main);

}



.btn-secondary-new {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 0.75rem 1.5rem;

  background: rgba(255, 255, 255, 0.05);

  color: var(--text-primary);

  border-radius: 100px;

  font-weight: 600;

  font-size: 0.95rem;

  border: 1px solid var(--border-color);

  cursor: pointer;

  transition: all var(--transition-fast);

}



.btn-secondary-new:hover {

  background: rgba(255, 255, 255, 0.1);

  border-color: var(--border-color-hover);

  color: var(--text-primary);

}



/* Layout Utilities */

.glass-card {

  background: var(--bg-card);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  border: 1px solid var(--border-color);

  border-radius: var(--radius-lg);

  padding: 2rem;

  transition: all var(--transition-normal);

}



.glass-card:hover {

  border-color: var(--border-color-hover);

  background: var(--bg-card-hover);

  transform: translateY(-4px);

}



header {

  position: sticky;

  top: 0;

  z-index: 1000;

}



/* Navbar */

.navbar-modern {

  position: relative;

  width: 100%;

  background: rgba(0, 19, 63, 0.7);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  padding: 0.75rem 1.5rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  transition: all var(--transition-normal);

}



.navbar-modern.scrolled {

  background: rgba(0, 19, 63, 0.9);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}



.nav-brand img {

  height: 70px;

  /* filter: brightness(0) invert(1); */

}



.nav-links {

  display: flex;

  gap: 2.5rem;

  list-style: none;

  margin: 0;

  padding: 0;

}



.nav-links a {

  color: var(--text-secondary);

  font-size: 0.875rem;

  font-weight: 500;

}



.nav-links a:hover {

  color: var(--text-primary);

}



.nav-actions {

  display: flex;

  gap: 1rem;

  align-items: center;

}



.mobile-toggle {

  display: none;

  background: none;

  border: none;

  color: white;

  cursor: pointer;

}



.mobile-drawer {

  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: var(--bg-main);

  z-index: 999;

  padding: 6rem 2rem 2rem;

  flex-direction: column;

  align-items: center;

  gap: 2rem;

}



.mobile-drawer.active {

  display: flex;

}



/* Editorial Hero Section */

.editorial-hero {

  position: relative;

  background-color: #ffffff;

  color: #1a1a1a;

  overflow: hidden;

}



.editorial-hero::after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 500px;

  height: 500px;

  background: radial-gradient(circle at center, #00133f12 0%, #ffffff00 60%);

}



.editorial-hero::before {

  position: absolute;

  content: "";

  bottom: -50px;

  right: 30px;

  width: 600px;

  height: 600px;

  background: radial-gradient(circle at center, #00133f17 0%, #ffffff00 60%);

}





.editorial-content {

  position: relative;

  z-index: 1;

}



.editorial-tag {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.15em;

  font-weight: 600;

  color: #555;

  margin-bottom: 1.2rem;

}



.editorial-tag i {

  color: #111;

  width: 16px;

  height: 16px;

}



.editorial-title {

  font-size: clamp(3rem, 5vw, 5rem);

  font-weight: 500;

  font-family: "Playfair Display", Georgia, serif;

  line-height: 1.1;

  letter-spacing: -0.01em;

  margin-bottom: 1.5rem;

  color: #111;

}



.editorial-title .hl {

  font-style: italic;

  font-weight: 400;

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.editorial-subtitle {

  font-size: 1.125rem;

  line-height: 1.8;

  color: #666;

  margin-bottom: 2.5rem;

}



.hero-actions {

  display: flex;

  gap: 1rem;

  margin-bottom: 0;

}



/* Redesign buttons for light theme */

.editorial-btn-primary {

  background: #00133f;

  color: #fff;

  border: 1px solid #00133f;

  padding: 1rem 2rem;

  border-radius: 32px;

  text-decoration: none;

  font-weight: 500;

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  transition: all 0.3s ease;

}



.editorial-btn-primary:hover {

  background: #001d5f;

  color: #fff;

  border-color: #001d5f;

}



.editorial-btn-primary i {

  width: 18px;

  height: 18px;

}



.editorial-btn-secondary {

  background: transparent;

  color: #00133f;

  border: 1px solid #00133f;

  padding: 1rem 2rem;

  border-radius: 32px;

  text-decoration: none;

  font-weight: 500;

  transition: all 0.3s ease;

}



.editorial-btn-secondary:hover {

  color: #555;

}



.editorial-social-proof {

  margin-top: 3rem;

  display: flex;

  align-items: center;

  gap: 1rem;

  border-top: 1px solid rgba(0, 0, 0, 0.06);

  padding-top: 2rem;

}



.avatar-group {

  display: flex;

}



.avatar-group img {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  border: 2px solid #ffffff;

  margin-left: -10px;

}



.avatar-group img:first-child {

  margin-left: 0;

}



.editorial-social-proof p {

  color: #666;

  font-size: 0.875rem;

  margin: 0;

}



.editorial-social-proof strong {

  color: #111;

  font-weight: 600;

}



/* Gallery Collage */

.editorial-gallery {

  position: absolute;

  top: 0;

  right: 0;

  height: 100%;

  width: 45%;

}















/* Stats Section */

.stats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;

  padding: 4rem 0;

  border-top: 1px solid var(--border-color);

  border-bottom: 1px solid var(--border-color);

  margin: 0 4rem;

}



.stat-box {

  text-align: center;

}



.stat-number {

  font-size: 3rem;

  font-weight: 800;

  letter-spacing: -0.05em;

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  margin-bottom: 0.25rem;

}



.stat-number span {

  font-size: 2rem;

}



.stat-label {

  color: var(--text-secondary);

  font-weight: 500;

  font-size: 1rem;

}







.hero-section {



  min-height: 100vh;

  position: relative;

  overflow: hidden;

}



/* LEFT */



.hero-content {



  position: relative;

  z-index: 5;

  display: flex;

  align-items: center;

  min-height: 100vh;



}



.content-wrapper {



  background: white;



  width: 140%;

  height: 120vh;



  border-radius: 50%;



  margin-left: -55%;



  display: flex;

  flex-direction: column;

  justify-content: center;



  padding-left: 48%;



}



.eyebrow {



  font-size: 15px;

  letter-spacing: 1px;

  color: #444;



}



.content-wrapper h1 {



  margin: 30px 0;



  font-size: 5rem;



  line-height: 1;



  font-family: Georgia, serif;



  font-weight: 700;



}



.content-wrapper h6 {



  letter-spacing: 8px;

  font-size: 22px;



}





/* RIGHT */



.gallery-wrapper {



  position: relative;



  width: 100%;

  height: 100vh;



}



/* image card */



.gallery {



  position: absolute;



  overflow: hidden;



  border: 14px solid white;



  border-radius: 6px;



  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);



}



.gallery img {



  width: 100%;

  height: 100%;

  object-fit: cover;



  display: block;



}





/* TOP */



.gallery-1 {



  width: 390px;

  height: 310px;



  right: 120px;

  top: -20px;



  transform: rotate(-10deg);



}



/* MIDDLE */



.gallery-2 {

  width: 410px;

  height: 340px;

  right: 20px;

  top: 250px;

  transform: rotate(8deg);

}



/* BOTTOM */



.gallery-3 {

  width: 420px;

  height: 330px;

  right: 90px;

  top: 560px;

  transform: rotate(-10deg);

}



/* small image */

.gallery-4 {

  width: 220px;

  height: 230px;

  left: 10px;

  bottom: -70px;

  transform: rotate(-8deg);

}





@media(max-width:992px) {

  .hero-content {

    min-height: 550px;

  }



  .content-wrapper {

    width: 100%;

    height: auto;

    margin: 0;

    border-radius: 40px;

    padding: 70px 40px;

  }



  .content-wrapper h1 {

    font-size: 52px;

  }



  .gallery-wrapper {

    height: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 40px;

  }



  .gallery {

    position: relative;

    width: 100%;

    height: 320px;

    top: auto;

    right: auto;

    left: auto;

    bottom: auto;

    transform: none;

  }



}





@media(max-width:768px) {

  .gallery-wrapper {

    grid-template-columns: 1fr;

  }



  .content-wrapper h1 {

    font-size: 42px;

  }



  .gallery {

    height: 280px;

  }



}

















/**************************** Features - Bento Grid ****************************/

/* Features Wheel Layout */

.features-wheel-wrapper {

  /* display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem; */

  margin-top: 4rem;

}



.features-wheel-col {

  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 4rem;

}



.features-wheel-center {

  position: sticky;

  top: 4%;

}



.features-wheel-center img {

  max-width: 100%;

  height: auto;

  border-radius: 20px;

  /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));

  animation: float 6s ease-in-out infinite; */

}



.feature-wheel-item {

  display: flex;

  flex-direction: column;

  align-items: start;

  margin-bottom: 20px;

}



.features-wheel-col.right .feature-wheel-item {

  text-align: left;

  align-items: flex-start;

}



.featureTitle {

  display: flex;

  align-items: center;

  justify-content: start;

  gap: 16px;

  margin-bottom: 16px;

}



.feature-wheel-icon {

  width: 48px;

  height: 48px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border-color);

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  transition: all var(--transition-fast);

}



.feature-wheel-item:hover .feature-wheel-icon {

  background: rgba(255, 255, 255, 0.1);

  border-color: #6c6cff;

  color: #6c6cff !important;

}



.feature-wheel-item h3 {

  font-size: 1.25rem;

  margin-bottom: 0;

  color: white;

}



.feature-wheel-item p {

  color: var(--text-secondary);

  font-size: 0.95rem;

  line-height: 1.6;

}



/********************** About Split Section **********************/

.split-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;

}



.split-image {

  position: relative;

  border-radius: var(--radius-xl);

}



.split-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: var(--radius-xl);

  border: 1px solid var(--border-color);

}



.split-image .feature-list {

  margin-bottom: 0;

  margin-top: 1.5rem;

  padding-left: 0;

}



.split-content .section-title {

  font-size: 3rem;

  margin-bottom: 1.5rem;

  text-align: left;

}



.split-content .section-subtitle {

  text-align: left;

  margin-left: 0;

  margin-bottom: 2.5rem;

}



.feature-list {

  list-style: none;

  padding-left: 0;

}



.feature-list li {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  margin-bottom: 1.5rem;

  padding: 1.5rem;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid var(--border-color);

  border-radius: var(--radius-md);

}



.feature-list-icon {

  width: 40px;

  height: 40px;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--text-primary);

  flex-shrink: 0;

}



.feature-list-text h4 {

  font-size: 1.1rem;

  margin-bottom: 0.25rem;

  color: white;

}



.feature-list-text p {

  color: var(--text-secondary);

  font-size: 0.95rem;

  margin: 0;

}



/* About Us Light Theme */

.about-light-theme {

  background-color: #fcfcfb;

  color: #00133f;

  /* Add padding to contain the background visually */

}



.about-light-theme .section-title,

.about-light-theme .section-title .hl {

  color: #00133f;

}



.about-light-theme .section-subtitle {

  color: #4a5568;

}



.about-light-theme .feature-list li {

  background: #ffffff;

  border-color: rgba(0, 19, 63, 0.1);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

}



.about-light-theme .feature-list-icon {

  background: rgba(108, 108, 255, 0.1);

  /* Match the primary blue color used in pricing #6c6cff */

  color: #6c6cff;

}



.about-light-theme .feature-list-text h4 {

  color: #00133f;

}



.about-light-theme .feature-list-text p {

  color: #4a5568;

}



.about-light-theme .split-image img {

  border-color: rgba(0, 19, 63, 0.1);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}



/************************ How It Works - Timeline ************************/



.timeline {

  position: relative;

}



.timeline::before {

  content: '';

  position: absolute;

  top: 0;

  bottom: 0;

  left: 24px;

  width: 2px;

  background: var(--border-color);

}



.timeline-item {

  position: relative;

  padding-left: 80px;

  margin-bottom: 5rem;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;

}



.timeline-item:last-child {

  margin-bottom: 0;

}



.timeline-number {

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 50px;

  height: 50px;

  background: var(--bg-main);

  border: 2px solid var(--border-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 1.25rem;

  color: var(--text-secondary);

  transition: all var(--transition-normal);

  z-index: 2;

}



.timeline-item:hover .timeline-number {

  border-color: var(--text-primary);

  color: var(--text-primary);

  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);

}



.timeline-content h3 {

  font-size: 2rem;

  margin-bottom: 1rem;

  color: white;

}



.timeline-content p {

  color: var(--text-secondary);

  margin-bottom: 1.5rem;

  font-size: 1.1rem;

}



.timeline-list {

  list-style: none;

  padding-left: 0;

}



.timeline-list li {

  color: var(--text-secondary);

  margin-bottom: 0.5rem;

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.timeline-list li i {

  color: white;

  width: 16px;

  height: 16px;

}



.timeline-visual {

  width: 100%;

  border-radius: var(--radius-lg);

  overflow: hidden;

  border: 1px solid var(--border-color);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

  position: relative;

}



.timeline-visual-icon {

  position: absolute;

  bottom: 20px;

  right: 20px;

  width: 60px;

  height: 60px;

  background: var(--bg-main);

  border: 1px solid var(--border-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

  color: #6c6cff;

  z-index: 5;

}



.timeline-visual-icon i,

.timeline-visual-icon svg {

  width: 32px;

  height: 32px;

}



.timeline-visual img {

  width: 100%;

  height: 340px;

  display: block;

  object-fit: cover;

}



/**************************** Pricing Section ****************************/

.pricing-card {

  background: #00081a;

  border: 1px solid var(--border-color);

  border-radius: var(--radius-xl);

  padding: 3rem 2rem;

  display: flex;

  flex-direction: column;

  transition: all var(--transition-normal);

  position: relative;

}



.pricing-card:hover {

  transform: translateY(-10px);

  border-color: var(--border-color-hover);

}



.pricing-card.featured {

  background: linear-gradient(180deg, #000b25 0%, #001e63 100%);

  border: 1px solid #ffffff33;

}



.pricing-card .plan-features {

  padding-left: 0;

}



.pricing-badge {

  position: absolute;

  top: -14px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--text-primary);

  color: var(--bg-main);

  padding: 0.4rem 1.25rem;

  border-radius: 100px;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.05em;

  text-transform: uppercase;

}



.plan-name {

  font-size: 1.5rem;

  color: white;

  margin-bottom: 0.25rem;

}



.plan-for {

  color: var(--text-secondary);

  font-size: 0.9rem;

  margin-bottom: 1.5rem;

}



.plan-price {

  font-size: 3.5rem;

  font-weight: 800;

  letter-spacing: -0.05em;

  margin-bottom: 0.5rem;

  display: flex;

  align-items: baseline;

  color: white;

}



.plan-price span {

  font-size: 1rem;

  font-weight: 500;

  color: var(--text-secondary);

  margin-left: 0.5rem;

  letter-spacing: normal;

}



.plan-billing {

  color: var(--text-secondary);

  font-size: 0.85rem;

  margin-bottom: 2rem;

}



.plan-features {

  list-style: none;

  margin: 2rem 0 0 0;

  flex-grow: 1;

  padding-top: 2rem;

  border-top: 1px solid var(--border-color);

}



.plan-features li {

  display: flex;

  align-items: flex-start;

  gap: 0.75rem;

  margin-bottom: 1rem;

  font-size: 0.95rem;

  color: var(--text-secondary);

}



.plan-features li i {

  color: var(--text-primary);

  width: 18px;

  height: 18px;

  flex-shrink: 0;

  margin-top: 2px;

}



.pricing-card .btn-secondary-new {

  width: 100%;

  background: #00133f78;

}



.pricing-card .btn-primary-new {

  background: #6c6cff;

  color: white;

}



/********************************* FAQ Section *********************************/



.faq-container {

  padding: 22px;

  background: #f7f7f7;

  border-radius: 24px;

}



.faq-item.accordion-item {

  background: transparent;

  border: none;

  border-bottom: 1px solid var(--border-color);

  border-radius: 0;

}



.faq-item.accordion-item:last-child {

  border-bottom: none;

}



.faq-question.accordion-button {

  width: 100%;

  text-align: left;

  background: transparent;

  border: none;

  padding: 1rem 0;

  font-size: 1rem;

  font-weight: 500;

  color: var(--text-primary);

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-family: var(--font-main);

  transition: color var(--transition-fast);

  box-shadow: none;

}



.faq-question.accordion-button:hover,

.faq-question.accordion-button:not(.collapsed) {

  color: #fff;

  background: transparent;

  box-shadow: none;

}



.faq-question.accordion-button::after {

  display: none !important;

}



.faq-icon {

  transition: transform var(--transition-normal);

  color: var(--text-secondary);

  width: 24px;

  height: 24px;

}



.faq-question.accordion-button:not(.collapsed) .faq-icon {

  transform: rotate(180deg);

  color: var(--text-primary);

}



.faq-answer.accordion-body {

  padding: 0;

  background: transparent;

}



.faq-answer p {

  padding-bottom: 1rem;

  color: var(--text-secondary);

  font-size: 15px;

  margin: 0;

}



/* FAQ Light Theme */

.faq-light-theme {

  background-color: #fcfcfb;

  color: #00133f;

}



.faq-light-theme .section-title,

.faq-light-theme .section-title .hl {

  color: #00133f;

}



.faq-light-theme .section-subtitle {

  color: #4a5568;

}



.faq-light-theme .section-tag {

  background: rgba(108, 108, 255, 0.1);

  color: #6c6cff;

}



.faq-light-theme .faq-item.accordion-item {

  border-bottom-color: rgba(0, 19, 63, 0.1);

}



.faq-light-theme .faq-question.accordion-button {

  color: #00133f;

}



.faq-light-theme .faq-question.accordion-button:hover,

.faq-light-theme .faq-question.accordion-button:not(.collapsed) {

  color: #6c6cff;

  /* Primary accent */

}



.faq-light-theme .faq-icon {

  color: #4a5568;

}



.faq-light-theme .faq-question.accordion-button:not(.collapsed) .faq-icon {

  color: #6c6cff;

}



.faq-light-theme .faq-answer p {

  color: #4a5568;

}



/****************************** Colour Studio ******************************/

.colour-studio-section {

  position: relative;

}



.studio-section {

  padding: 8rem 0;

}



.studio-container {

  background: var(--bg-card);

  border: 1px solid var(--border-color);

  border-radius: var(--radius-xl);

  overflow: hidden;

  display: grid;

  grid-template-columns: 1.5fr 1fr;

  max-width: 1100px;

  margin: 4rem auto 0;

}



.studio-canvas {

  background: #111;

  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);

  background-size: 20px 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 4rem;

  position: relative;

}



.studio-canvas img {

  max-width: 100%;

  max-height: 400px;

  position: relative;

  z-index: 2;

  transition: all var(--transition-fast);

}



.studio-controls {

  border-left: 1px solid var(--border-color);

  padding: 3rem;

  background: rgba(10, 10, 10, 0.95);

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.studio-controls h4 {

  color: white;

  margin-bottom: 1.5rem;

}



.swatch-grid {

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 1rem;

  margin: 0 0 2.5rem;

}



.swatch {

  width: 100%;

  aspect-ratio: 1;

  border-radius: 50%;

  cursor: pointer;

  border: 2px solid transparent;

  transition: all var(--transition-fast);

}



.swatch:hover {

  transform: scale(1.1);

}



.swatch.active {

  border-color: white;

  transform: scale(1.1);

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);

}



.custom-colour-row {

  display: flex;

  gap: 1rem;

  margin-bottom: 2rem;

}



.hex-input {

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border-color);

  color: white;

  padding: 0.75rem 1rem;

  border-radius: var(--radius-sm);

  font-family: monospace;

  font-size: 1rem;

  width: 100%;

  outline: none;

}



.hex-input:focus {

  border-color: rgba(255, 255, 255, 0.3);

}



.colour-picker-btn {

  width: 50px;

  height: 50px;

  border-radius: var(--radius-sm);

  border: 1px solid var(--border-color);

  overflow: hidden;

  position: relative;

  cursor: pointer;

}



.colour-picker-btn input[type="color"] {

  position: absolute;

  top: -10px;

  left: -10px;

  width: 200%;

  height: 200%;

  cursor: pointer;

}



/* Photo Retouching Light Theme */

.retouch-light-theme {

  background-color: #ffffff;

  color: #00133f;

}



.retouch-light-theme .section-title,

.retouch-light-theme .section-title .hl {

  color: #00133f;

}



.retouch-light-theme .section-subtitle {

  color: #4a5568;

}



.section-tag {

  background: rgba(108, 108, 255, 0.1);

  color: #6c6cff;

}



.retouch-light-theme .comparison-wrapper {

  background: #ffffff;

  border-color: rgba(0, 19, 63, 0.1);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

}



.retouch-light-theme .label {

  background: rgba(255, 255, 255, 0.85);

  color: #00133f;

  backdrop-filter: blur(4px);

}



/***************** Photo Retouching (Before/After) *****************/

.comparison-wrapper {

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  border: 1px solid var(--border-color);

  aspect-ratio: 14/6;

}



.comparison-slider {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}



.comparison-slider img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.before-img {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  filter: grayscale(100%);

}



.after-wrapper {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

}



.divider {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 50%;

  width: 2px;

  background: white;

  transform: translateX(-50%);

  pointer-events: none;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}



.slider-btn {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 40px;

  height: 40px;

  background: white;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

}



.slider-btn::before,

.slider-btn::after {

  content: '';

  width: 0;

  height: 0;

  border-top: 5px solid transparent;

  border-bottom: 5px solid transparent;

}



.slider-btn::before {

  border-right: 6px solid #000;

  margin-right: 2px;

}



.slider-btn::after {

  border-left: 6px solid #000;

  margin-left: 2px;

}



.pulse-ring {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.4);

  z-index: -1;

  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;

  pointer-events: none;

}



@keyframes pulse-ring {

  0% {

    transform: translate(-50%, -50%) scale(0.8);

    opacity: 1;

  }



  100% {

    transform: translate(-50%, -50%) scale(2.5);

    opacity: 0;

  }

}



.range-slider {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  opacity: 0;

}



.label {

  position: absolute;

  bottom: 20px;

  background: rgba(0, 0, 0, 0.6);

  color: white;

  padding: 0.5rem 1rem;

  border-radius: 100px;

  font-size: 0.85rem;

  font-weight: 600;

  backdrop-filter: blur(4px);

}



.label.before {

  left: 20px;

}



.label.after {

  right: 20px;

}



/******************************* CTA Section *******************************/

.cta-section {

  position: relative;

  overflow: hidden;

}



.cta-section .profile-cardUL {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 1.5rem;

  margin: 3rem 0;

  /* Top margin provides space for the arc */

  padding: 0;

  list-style: none;

}



.profile-card {

  position: relative;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.4s ease;

}



.profile-card img {

  border-radius: 50%;

  object-fit: cover;

  width: 100%;

  height: 100%;

  border: 4px solid var(--bg-main);

  /* Match background */

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

  transition: all 0.3s ease;

}



.profile-card:hover {

  transform: translateY(-5px) !important;

}



.profile-card:hover img {

  border-color: #6c6cff;

  /* Primary accent */

}



.cta-glow-1 {

  position: absolute;

  width: 600px;

  height: 600px;

  background: radial-gradient(circle, rgb(99 102 241 / 46%), transparent 60%);

  top: -200px;

  left: -100px;

  filter: blur(100px);

}



.cta-glow-2 {

  position: absolute;

  width: 600px;

  height: 600px;

  background: radial-gradient(circle, rgb(99 102 241 / 46%), transparent 60%);

  bottom: -200px;

  right: -100px;

  filter: blur(100px);

}





/* Arc Layout for 7 items */

.profile-card:nth-child(1),

.profile-card:nth-child(7) {

  width: 100px;

  height: 100px;

  transform: translateY(-90px);

}



.profile-card:nth-child(2),

.profile-card:nth-child(6) {

  width: 120px;

  height: 120px;

  transform: translateY(-40px);

}



.profile-card:nth-child(3),

.profile-card:nth-child(5) {

  width: 140px;

  height: 140px;

  transform: translateY(10px);

}



.profile-card:nth-child(4) {

  width: 160px;

  height: 160px;

  transform: translateY(40px);

}



.profile-card:nth-child(4) img {

  border: 4px solid #6c6cff;

}





.cta-box {

  background: linear-gradient(180deg, rgba(30, 30, 30, 0.4) 0%, rgba(10, 10, 10, 0.4) 100%);

  border: 1px solid var(--border-color);

  border-radius: var(--radius-xl);

  padding: 6rem 2rem;

  position: relative;

  overflow: hidden;

  text-align: center;

}



.cta-box::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

}



.cta-features {

  display: flex;

  justify-content: center;

  gap: 2rem;

  list-style: none;

  margin-top: 3rem;

  flex-wrap: wrap;

}



.cta-features li {

  color: var(--text-secondary);

  font-size: 0.95rem;

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.cta-features li i {

  color: var(--text-primary);

  width: 16px;

  height: 16px;

}



/************************ Footer New & Light Theme ************************/

.footer-new {

  padding: 3rem 0 1rem;

}



.footer-light-theme {

  background-color: #ffffff;

  border-top: 1px solid rgba(0, 19, 63, 0.1);

  color: #4a5568;

}



.footer-light-theme h4 {

  color: #00133f;

  font-size: 1.1rem;

  margin-bottom: 1.5rem;

  font-weight: 600;

}



.footer-light-theme .footer-brand img {

  height: 100px;

  margin-bottom: 1.5rem;

  /* filter: brightness(0); */

  /* Make logo dark */

}



.footer-light-theme .footer-brand p,

.footer-light-theme .footer-links a,

.footer-light-theme .footer-contact span,

.footer-light-theme .footer-bottom p {

  color: #4a5568;

  font-size: 0.95rem;

}



.footer-light-theme .footer-social {

  display: flex;

  gap: 1rem;

}



.footer-light-theme .footer-social a {

  width: 36px;

  height: 36px;

  background: rgba(0, 19, 63, 0.05);

  border: 1px solid rgba(0, 19, 63, 0.1);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #00133f;

  transition: all var(--transition-fast);

}



.footer-light-theme .footer-social a:hover {

  background: rgba(108, 108, 255, 0.1);

  color: #6c6cff;

  border-color: #6c6cff;

}



.footer-light-theme .footer-social a i,

.footer-light-theme .footer-social a svg {

  width: 16px;

  height: 16px;

}



.footer-light-theme .footer-links {

  list-style: none;

  padding: 0;

}



.footer-light-theme .footer-links ul {

  padding-left: 0;

}



.footer-light-theme .footer-links ul li {

  list-style-type: none;

}



.footer-light-theme .footer-links li {

  margin-bottom: 0.75rem;

}



.footer-light-theme .footer-links a {

  text-decoration: none;

  transition: color var(--transition-fast);

}



.footer-light-theme .footer-links a:hover {

  color: #6c6cff;

}



.footer-light-theme .footer-contact ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.footer-light-theme .footer-contact li {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  margin-bottom: 1rem;

}



.footer-light-theme .footer-contact i {

  color: #6c6cff;

  width: 18px;

  height: 18px;

  flex-shrink: 0;

  margin-top: 3px;

}



.footer-light-theme .footer-bottom {

  border-top: 1px solid rgba(0, 19, 63, 0.1);

  padding-top: 1rem;

  margin-top: 1rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.payment-methods {

  display: flex;

  gap: 0.5rem;

}



.payment-methods img {

  height: 24px;

  opacity: 0.6;

  filter: grayscale(100%);

  transition: all var(--transition-fast);

}



.payment-methods img:hover {

  opacity: 1;

  filter: grayscale(0%);

}





.text-center {

  text-align: center;

}



.container {

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1.5rem;

}