/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background: #f2f2f2;
  font-family: "Source Code Pro", monospace;
}

/* Wrapper spacing */
/* HEADER WRAPPER - Fixed */
.header-wrapper {
  position: fixed;
  top: 3px;
  left: 25px;
  right: 25px;
  z-index: 1000;
}

/* Header Box */
.main-header {
  width: 100%;
  background-image: linear-gradient(to right, #100e78, #332fc4);
  border-radius: 15px;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Logo */
.logo img {
  height: 45px;
}

/* Nav */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #ff914d;
}

/* Button */
.contact-btn a {
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  transition: 0.3s ease;
}

.contact-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ------------------- */
/* Tablet & Mobile */
/* ------------------- */

.hero-section {
  animation: heroReveal 1.2s ease-out;
}

@keyframes heroReveal {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.hero-left h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 55px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* Italic Stylish Span */
.hero-left h1 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(to left, #ff914d, #c9530a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Trusted Section */
.trusted-section {
  margin-top: 40px;
}

.trusted-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.trusted-text strong {
  color: #000;
}

/* Logos */
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 35px;
  opacity: 0.6;
  transition: 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-badge {
  display: inline-block;
  background: black;
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-left{
  margin-top: 100px;
}

.hero-left h1 {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #332fc4;
}

.hero-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

/* BUTTONS */
/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Black Button */
.btn-primary {
  background: black;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Orange Gradient Button */
.btn-secondary {
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201,83,10,0.35);
}

/* RIGHT SIDE SLIDER */
.hero-right {
  flex: 1;
  overflow: hidden;
}

.image-slider {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 20s linear infinite;
}

.slide-track img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Animation */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 700px;
  overflow: hidden;
}

/* Each column */
.image-column {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Image track */
.image-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Images */
.image-track img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 260px;
}

/* UP Animation */
.column-up .image-track {
  animation: scrollUp 40s linear infinite; /* slower speed */
}

/* DOWN Animation */
.column-down .image-track {
  animation: scrollDown 40s linear infinite; /* slower speed */
}

/* Keyframes */
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.section {
  padding: 50px 6%;
  background: #f3f3f3;
}
.container {
  max-width: 1400px;
  margin: auto;
}
/* Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
  gap: 40px;
}

.section-badge {
  display: inline-block;
  background-image: linear-gradient(to right, #100e78, #332fc4);
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}
.section-left h2 {
  font-size: 56px;
  font-weight: 800;
  margin-top: 15px;
}

.section-right {
  max-width: 45%;
}

.section-right p {
  font-size: 22px;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e5e5e5;
  background: #dedede;
  border-radius: 24px;
  padding: 10px;
  display: flex;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

/* LEFT SIDE */
.card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
  opacity: 1;
  padding: 30px;
}

.card-left h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  margin-top: auto;   /* pushes it to bottom */
}

.card-left p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-btn {
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  transition: 0.3s ease;
  border: transparent;
}

/* RIGHT SIDE */
.card-right {
  flex: 1;
}

.card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Card */
.service-card {
  background: #dedede;
  border-radius: 24px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Top */
.card-top h3 {
  margin-top: 15px;
  font-size: 32px;
  color: #cf5a12;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-top p {
  margin: 10px 0 20px;
  font-size: 17px;
  color: #666;
  line-height: 1.5;
}

/* Folder Icon */
.folder-icon {
  font-size: 60px;
  line-height: 0.7;
}

.folder-icon span {
  font-size: 24px;
  font-style: italic;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: #e5e5e5;
  padding: 6px 14px;
  border-radius: 30px;
  color: #4f4f4f;
  font-weight: 600;
}

.tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  border-radius: 50%;
}

/* Preview Area */
.card-preview {
  margin-top: 25px;
  height: 230px;
  border-radius: 18px;
  background: linear-gradient(to right, #100e78, #332fc4);
  position: relative;
}

.card-preview.dark {
  background: #0f172a;
}

.card-preview.black {
  background: #000;
}

/* Bottom Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ff3c2f;
  border-radius: 50%;
}

/* ========================= */
/* BENEFITS SECTION */
/* ========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #ddd;
  border-radius: 15px;
  padding: 8px;
}

/* CARD */
.benefit-card {
  position: relative;
  background: #f2f2f2;
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid #eeeeee;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #e2e2e2;
}

/* BIG FAINT NUMBER */
.card-number {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 50px;
  font-weight: 800;
  color: #c9530a;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit-icon{
  font-size: 30px;
}

.benefit-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* CARD PREVIEW */
.card-preview {
  margin-top: 10px;
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* Slider */
.slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.slides.active {
  opacity: 1;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #ff3c2f;
}

.card-top {
  background-color: #f0f0f0;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
  opacity: 1;
  padding: 15px;
}

.benefit-top {
  padding-bottom: 80px;
}

.card-dots {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 32px;
  right: 25px;
}

.card-dots span {
  width: 10px;
  height: 10px;
  background: #dcdcdc; /* inactive color */
  border-radius: 50%;
  transition: 0.3s ease;
}

.card-dots span.active {
  background: linear-gradient(to left, #ff914d, #c9530a); /* active red */
}


.selected-work {
  padding: 80px 8%;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay block */
.work-overlay {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  transform: translateY(120%);
  transition: transform 0.4s ease;
}

/* Hover effects */
.work-card:hover img {
  transform: scale(1.05);
}

.work-card:hover .work-overlay {
  transform: translateY(0);
}

/* Text */
.work-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.work-info p {
  font-size: 14px;
  margin: 4px 0 0;
  color: #666;
}

/* Link button */
.work-link {
  width: 42px;
  height: 42px;
  background: linear-gradient(to left, #ff914d, #c9530a);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.work-link:hover {
  background: #333;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.pricing-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  background: #ddd;
  border-radius: 15px;
  padding: 8px;
}

.price-grid{
  position: relative;
  background: #f2f2f2;
  padding: 15px 15px 0;
  border-radius: 15px;
  border: 1px solid #eeeeee;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.dark {
  background: #0f0f0f;
  color: #fff;
}

.dark-grid {
  position: relative;
  background: #191919;
  padding: 15px 15px 0;
  border-radius: 15px;
  border: 1px solid #111;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.small-card .mini-box {
  position: relative;
  background: #f2f2f2;
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid #eeeeee;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.price {
  font-size: 26px;
  font-weight: 600;
}

.price small {
  font-size: 14px;
  opacity: .7;
}

.addon {
  margin: 12px 0;
  padding: 15px 20px;
  background: #dddddd;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.dark-addon {
  background: #121212;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 50px;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #e54848;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Buttons */
.btn-dark {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}

.btn-light {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}

.mini-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.mini-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.pricing-top {
  padding-bottom: 45px;
}
.pricing-list-top{
  padding-bottom: 35px;
}
.pricing-icon {
  font-size: 30px;
}

.price-heading {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.price-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.price-features-grid {
  position: relative;
  padding: 20px 40px;
  transition: 0.3s ease;
}

.price-features-grid ul {
  line-height: 2;
}

.mt-25 {
  margin-top: 25px;
}


.contact-bg {
  width: calc(100% - 50px);
  background-image: linear-gradient(to right, #100e78, #332fc4);
  padding: 40px 0;
  margin: 25px;
  border-radius: 30px;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;    
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.contact-badge {
  display: inline-block;
  font-size: 12px;
  color: #ff4d4d;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-left h2 {
  font-size: 56px;
  margin-bottom: 20px;
  color: #f3f3f3;
}

.contact-left p {
  color: #aaa;
  max-width: 400px;
}

/* Info Cards */


/* RIGHT FORM */
.contact-right {
  background: #151515;
  padding: 40px;
  border-radius: 20px;
}

.contact-form label {
  font-size: 14px;
  color: #aaa;
  display: block;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1c1c1c;
  border: none;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 25px;
  color: #fff;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.pricing-toggle button {
  flex: 1;
  padding: 12px;
  background: #1c1c1c;
  border: none;
  color: #aaa;
  border-radius: 10px;
  cursor: pointer;
}

.pricing-toggle .active {
  background: #2a2a2a;
  color: #fff;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: #e5e5e5;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
}

.tools-popup{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-radius: 15px;
  padding: 8px;
  margin-top: 300px;
  background: #0f0f0f;
  color: #fff;
}

/* CARD */
.contacts-card {
  position: relative;
  background: #191919;
  padding: 15px 15px 0;
  border-radius: 15px;
  border: 1px solid #111;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

.contacts-card:hover {
  transform: translateY(-6px);
  border-color: #e2e2e2;
}

.contacts-icon{
  font-size: 30px;
}

.contacts-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.contacts-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.contacts-top {
  margin-bottom: 45px;
}

.footer {
  background: #f4f4f4;
  padding: 120px 40px 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 100px;
}

/* Newsletter */
.footer-newsletter h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-newsletter p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-input {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  padding: 8px;
  width: 100%;
  max-width: 320px;
}

.newsletter-input input {
  border: none;
  outline: none;
  flex: 1;
  padding: 12px 15px;
  font-size: 14px;
}

.newsletter-input button {
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease;
}

.newsletter-input button:hover {
  background: #000;
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #111;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff3b2f;
}

/* Big Brand Text */
.footer-brand {
  font-size: 12vw;
  font-weight: 900;
  text-align: center;
  margin-top: 0;
  letter-spacing: -5px;
  color: #100e78;
  background: linear-gradient(to right, #100e78, #332fc4);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bottom */
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
}

.faq-section {
  padding: 120px 5%;
  background: #f4f4f4;
  font-family: sans-serif;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

.faq-left {
  flex: 1;
}

.faq-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.faq-left h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.faq-left p {
  color: #555;
  max-width: 350px;
}

.faq-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  background: #ddd;
  border-radius: 15px;
  padding: 8px;
}

/* FAQ Card */
.faq-item {
  position: relative;
  background: #f2f2f2;
  border-radius: 15px;
  border: 1px solid #eeeeee;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0.602187px 0.602187px -0.916667px, rgba(0, 0, 0, 0.08) 0px 2.28853px 2.28853px -1.83333px, rgba(0, 0, 0, 0.07) 0px 10px 10px -2.75px;
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 22px 25px;
  font-size: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer p {
  color: #666;
  padding-bottom: 20px;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  background: linear-gradient(to left, #ff914d, #c9530a);
  color: #fff;
}

.premium-showcase {
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
}

/* Scroll Wrapper */
.scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Scroll Row */
.scroll-row {
  overflow: hidden;
  white-space: nowrap;
  background: #ddd;
}

/* Track */
.scroll-track {
  display: flex;
  gap: 15px;  
  padding: 15px;
}

/* Images */
.scroll-track img {
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Animation */
.scroll-left .scroll-track {
  animation: scrollLeft 30s linear infinite;
}

.scroll-right .scroll-track {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Center Circle */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
}

.center-circle h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.circle-btn {
  background: linear-gradient(to left, #ff914d, #c9530a);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.circle-btn:hover {
  background: linear-gradient(to right, #ff914d, #c9530a);
}

.price-section {
  width: calc(100% - 50px);
  background-image: linear-gradient(to right, #100e78, #332fc4);
  padding: 40px 0;
  margin: 25px;
  border-radius: 30px;
  overflow: hidden;
}

.price-label {
  display: inline-block;
  background: #1e293b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.price-heading {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
}

.price-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card Base */
.price-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price-card .sub {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
}

/* Dark Cards */
.dark {
  background: #111827;
  border: 1px solid #1f2937;
}

/* Featured Card */
.featured {
  background: #fff;
  color: #111;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.featured .sub,
.featured .price span {
  color: #555;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(to left, #ff914d, #c9530a);
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* List */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.price-card ul li {
  margin-bottom: 12px;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}

.price-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 12px;
}

/* Buttons */
.btn-outline,
.btn-primary {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline {
  background: #1f2937;
  color: #fff;
}

.btn-outline:hover {
  background: #374151;
}

.btn-primary {
  background: linear-gradient(to left, #ff914d, #c9530a);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.section-badge-secondary {
  display: inline-block;
  background-image: linear-gradient(to left, #ff914d, #c9530a);
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

.color-white {
  color: white;
}