:root {
  --bg:#f3e1dc;
  --card:#ffffff;
  --text:#4b1e1e;
  --accent:#8b1e1e;
  --border:#e2bcbc;
}

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

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR */
/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    #6b1212,
    #8b1e1e
  );
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-brand span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ffd6d6;
  transition: width 0.35s ease;
}

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

.nav-link.active {
  color: #ffd6d6;
}

/* CONTACT BUTTONS */
.nav-actions {
  display: flex;
  gap: 0.8rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s ease;
  white-space: nowrap;
}

.icon-btn span {
  display: inline;
}

.icon-btn.email {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.icon-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .icon-btn span {
    display: none; /* show icons only */
  }

  .icon-btn {
    padding: 0.55rem;
    border-radius: 50%;
  }
}


/* HERO */
.hero {
  background: linear-gradient(135deg,#6b1212,#a32020);
  padding:4rem 2rem;
  color:#fff;
}
.hero-content {
  max-width:700px; 
}
/* ================= HERO LAYOUT ================= */
/* ================= HERO BASE ================= */
.ms-hero.ms-hero-material {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: #5a0f0f; /* fallback */
}

/* BG HOLDER */
.ms-hero.ms-hero-material .ms-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* SHAPE 1 */
.ms-hero.ms-hero-material .ms-hero-bg::before {
  content: "";
  position: absolute;
  background-color: rgb(186, 22, 10);
  height: 290%;
  width: 71%;
  bottom: -140%;
  left: -43%;
  transform: rotate(-33deg);
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.5) 28px 10px 43px -1px;
  animation: heroBackTwo 0.6s ease forwards;
}

/* SHAPE 2 */
.ms-hero.ms-hero-material .ms-hero-bg::after {
  content: "";
  position: absolute;
  background-color: rgb(210, 25, 11);
  height: 470%;
  width: 46%;
  bottom: -232%;
  right: 0;
  transform: rotate(52deg);
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.53) -33px -22px 43px -1px;
  animation: heroBackThree 0.6s ease forwards;
}

/* DARK OVERLAY (READABILITY) */
.ms-hero.ms-hero-material::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.45)
  );
  z-index: 2;
}

/* ================= CONTENT LAYER ================= */
.container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

/* LEFT */
.hero-left {
  color: #fff;
  text-align: left;
}

 /* ================= HERO IMAGE SCALE POP ================= */
.hero-right
{
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transform-origin: center;
}

/* Shrink out */
.scale-out {
  animation: scaleOut 0.6s ease forwards;
}

/* Pop in */
.scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
}

@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-image-wrapper {
    max-width: 300px;
    margin-top: 2rem;
  }
  .container
  {
    padding: 1px
  }
}

/* ================= TEXT ================= */
.company-name {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.proprietor span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-desc {
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* SERVICES */
.hero-services {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  
}

.hero-services span {
  background: rgba(255,255,255,0.15);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
}
.hero-services span:hover
{
  background-color: wheat;
  color: black;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.btn {
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn.primary {
  background: #fff;
  color: #7a1616;
  display: flex;
  justify-content: center;
  align-items: center;
  
  border: 1px solid white;
}
.btn.primary:hover
{
  
  color: white;
  background-color: transparent;
}
.btn.secondary {
  border: 2px solid #25d366; 
  color: #fff;
}
 .btn.secondary:hover
 {
  background-color: #25d366;
  border-color: white; 
 }

/* ================= ANIMATIONS ================= */
@keyframes heroBackTwo {
  from { transform: rotate(-33deg) translateY(50px); opacity: 0; }
  to { transform: rotate(-33deg) translateY(0); opacity: 1; }
}

@keyframes heroBackThree {
  from { transform: rotate(52deg) translateY(-50px); opacity: 0; }
  to { transform: rotate(52deg) translateY(0); opacity: 1; }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-services,
  .hero-actions {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    margin-top: 2rem;
  }
  .company-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0px;
}

.proprietor span {
  font-size: 1.2rem;
  font-weight: 800;
}
.proprietor{
  font-size: 1.2rem;
}
}
/* ================= GLASS EFFECT ================= */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.171),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-radius: 1.6rem;
  padding: 2.8rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.25),
    0 25px 50px rgba(0,0,0,0.35);
}

/* Fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(10px))) {
  .glass-card {
    background: rgba(255,255,255,0.18);
  }
}

/* Text clarity improvement */
.glass-card h1,
.glass-card h2,
.glass-card p,
.glass-card span {
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}


/* SECTIONS */
.section {
  padding:4rem 2rem;
}
.section-title {
  text-align:center;
  margin-bottom:2.5rem;
}

/* PRICING */
.pricing-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap:2rem;
}
.pricing-card {
  background:var(--card);
  padding:2rem;
  border-radius:1rem;
  border-top:6px solid var(--accent);
}
.speed {
  font-size:1.5rem;
  font-weight:bold;
}
.divider {
  border-top:1px dashed var(--border);
  margin:1rem 0;
}
.pricing-card ul {
  list-style:none;
}
.pricing-card li {
  margin:0.6rem 0;
}
.pricing-card button {
  margin-top:1rem;
  width:100%;
  background:var(--accent);
  color:#fff;
  border:none;
  padding:0.7rem;
}

/* PLAN DETAILS */
/* ================= PLANS ================= */

.plans-section {
  background: linear-gradient(180deg, #5a0f0a, #7a1410);
  padding: 5rem 1rem;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Grid */
.plans-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Card */
.plan-card {
  position: relative;
  background: #8b1611;
  border-radius: 1rem;
  padding: 2rem 1.8rem;
  color: #fff;
  overflow: hidden;
  transition: transform 0.5s ease;
}

/* Moving glow layer */
.plan-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
}

/* Hover animation */
.plan-card:hover {
  transform: translateY(-12px) scale(1.02);
  border: 1px solid rgb(223, 223, 223);
}

.plan-card:hover::before {
  transform: translateX(100%);
}

/* Header */
.plan-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.plan-header h3 {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.speed {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* List */
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  font-size: 1rem;
}

/* Button */
.plan-btn {
  margin-top: 1.8rem;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  background: #fff;
  color: #7a1410;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.plan-btn:hover {
  background: #ffd6d6;
}

/* Accent glow per plan */
.rocket { box-shadow: 0 0 0 rgba(255,80,80,0); }
.rocket:hover { box-shadow: 0 0 35px rgba(255,80,80,0.6); }

.agni:hover { box-shadow: 0 0 35px rgba(255,120,40,0.6); }
.agni-plus:hover { box-shadow: 0 0 35px rgba(255,180,40,0.6); }
.jet:hover { box-shadow: 0 0 35px rgba(120,180,255,0.6); }
.jet-plus:hover { box-shadow: 0 0 40px rgba(200,120,255,0.7); }

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .plans-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
  
}


/* FEATURES */
/* ================= FEATURES ================= */

#features {
  background: linear-gradient(180deg, #6b120e, #5a0f0a);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

#features .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 3.5rem;
  letter-spacing: 1px;
}

/* Grid */
.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.2rem;
}

/* Card */
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2.4rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Glow sweep animation layer */
.feature-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* Subtle border highlight */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

/* Hover effects */
.feature-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

.feature-card:hover::before {
  transform: translateX(120%);
}

/* Text */
.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Accent color glow on hover */
.feature-card:nth-child(1):hover {
  box-shadow: 0 0 35px rgba(255, 90, 90, 0.6);
}

.feature-card:nth-child(2):hover {
  box-shadow: 0 0 35px rgba(255, 150, 90, 0.6);
}

.feature-card:nth-child(3):hover {
  box-shadow: 0 0 35px rgba(90, 170, 255, 0.6);
}

.feature-card:nth-child(4):hover {
  box-shadow: 0 0 35px rgba(200, 120, 255, 0.6);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  #features {
    padding: 4rem 1rem;
  }

  #features .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 2rem 1.6rem;
  }
}

/* OTT */ 
/* ================= OTT SECTION ================= */

.ott-section {
  background: linear-gradient(180deg, #5a0f0a, #6b120e);
  padding: 5rem 1rem;
  overflow: hidden;
}

.ott-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 3rem;
}

/* Strip container */
.ott-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.ott-track {
  display: flex;
  width: max-content;
  animation: ott-scroll 25s linear infinite;
  gap: 3rem;
}

/* Pause on hover */
.ott-strip:hover .ott-track {
  animation-play-state: paused;
}

/* Group */
.ott-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0; 
}

/* Logo */
.ott-group img {
  height: 100px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.08);
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: transform 0.4s ease;
}

.ott-group img:hover {
  transform: scale(0.9);
}

/* Perfect infinite loop */
@keyframes ott-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .ott-track {
    animation-duration: 22s;
  }

  .ott-group {
    gap: 2rem;
  }

  .ott-group img {
    height: 100px;
    padding: 0.6rem 1rem;
  }
}

/* ================= ABOUT ================= */

.about-section {
  background: linear-gradient(180deg, #6b120e, #5a0f0a);
  padding: 5.5rem 1rem;
  color: #fff;
}

.about-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

/* Layout */
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255,120,120,0.5);
}

.stat .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.stat h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.stat p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Content */
.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.about-content strong {
  color: #ffd1d1;
}

.proprietor {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,0.3);
  font-size: 1rem;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-section .section-title {
    font-size: 2.1rem;
  }
}
/* ================= FOOTER ================= */

.footer {
  background: linear-gradient(180deg, #5a0f0a, #3f0a07);
  color: #fff;
  padding-top: 4.5rem;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left */
.footer-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.footer-address p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Contacts */
.footer-contacts {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contacts a {
  color: #ffd2d2;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.footer-contacts a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

/* Map */
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 1.2rem 1rem;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-links a {
  color: #ffd2d2;
  text-decoration: none;
  margin-left: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-map iframe {
    min-height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}
 
/* HERO SAFETY: show immediately */
.ms-hero .animate {
  opacity: 1;
  transform: none;
}

/* ================= PEERING PARTNERS ================= */

.peering-section {
  background: linear-gradient(180deg, #5a0f0a, #6b120e);
  padding: 5rem 0;
  overflow: hidden;
}

.peering-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

/* Carousel */
.peering-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.peering-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  animation: peering-slide 22s linear infinite;
}

/* Pause on hover */
.peering-carousel:hover .peering-track {
  animation-play-state: paused;
}

/* Item */
.peering-item {
  flex: 0 0 calc(33.333% - 1.5rem);
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.peering-item:hover {
  transform: scale(0.9);
}

/* Image */
.peering-item img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  border-radius: 0.8rem; 
}

/* Animation */
@keyframes peering-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .peering-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .peering-track {
    animation-duration: 16s;
  }

  .peering-item {
    flex: 0 0 80%;
    
  }
}

/* ================= FAQ ================= */

.faq-section {
  background: #640101;
  padding: 70px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f0f7f4;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 18px;
  color: #475569;
  line-height: 1.6;
}

/* open state */

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 8px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* mobile */

@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
    padding: 16px;
  }
}


/* ===== Scroll Progress ===== */

.scroll-progress {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: white;
  transition: width 0.15s linear;
}
