

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
   overflow-x: hidden;
}


/* 🔹 Navbar */
.navbar{position:sticky;top:0;width:100%;padding:20px 40px;display:flex;justify-content:space-between;align-items:center;z-index:10;color:#fff;background:#000}
.logo{display:flex;align-items:center;gap:10px}
.logo-img{height:50px;width:auto;object-fit:contain}
.logo-text-block{display:flex;flex-direction:column;line-height:1.1}
.logo-text{font-size:20px;font-weight:bold;text-transform:uppercase;color:#fff}
.logo-tagline{font-size:12px;font-weight:300;color:#ccc}
.logo-link{text-decoration:none;color:inherit;display:flex;align-items:center}
.nav-links ul{list-style:none;display:flex;flex-wrap:wrap;gap:20px;font-size:14px;margin:0;padding:0}
.nav-links a{color:#fff;text-decoration:none;font-weight:500;transition:color .3s}
.nav-links a:hover{color:purple}
.call a{color:#fff;font-weight:500;display:flex;align-items:center;gap:6px;font-size:14px;transition:.3s;padding:6px 10px;border-radius:6px}
.call a:hover{color:#bb86fc;transform:scale(1.08);box-shadow:0 0 8px #bb86fc88;background:rgba(255,255,255,.05)}
.hamburger{display:none}
.nav-link{color:#000;text-decoration:none;padding:10px}
.nav-link.active{color:purple;font-weight:bold;border-bottom:2px solid purple}




/* 🔹 Dropdown */
.dropdown{position:relative;}
.dropdown > a i {
  display: inline-block; /* ensure transform works properly */
  transform: translateY(1px); /* move arrow 2px down */
  font-size: 0.75rem; /* keep your original size */
}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;min-width:220px;background:#000;
  border-radius:6px;padding:8px 0;z-index:999;}
.dropdown-menu li{list-style:none;}
.dropdown-menu li a{display:none;padding:5px 12px;color:white;}
.dropdown-menu li { list-style: none; border-bottom: 1px dotted rgba(255, 255, 255, 0.5); }
.dropdown-menu li a:hover{background:#222;color:var(--accent);}
.dropdown:hover .dropdown-menu li a{display:block;}
.dropdown i{font-size:.75rem;}
@media (max-width:768px){
  .hamburger{display:block;position:absolute;right:20px;top:25px;z-index:20;}
  .nav-links{display:none;flex-direction:column;background:rgba(0,0,0,.95);
    position:absolute;top:100%;left:0;width:100%;padding:20px;}
  .nav-links ul{flex-direction:column;gap:16px;}
  .nav-links.show{display:flex;}
  .dropdown-menu{display:none;flex-direction:column;}
  .dropdown-menu.show{display:flex;}
  .dropdown.open > a i{transform:rotate(180deg);transition:.3s;}
}
@media (max-width:768px){
  .dropdown-menu{position:static!important;display:block;height:0;overflow:hidden;
    background:#111;border-radius:6px;margin:0;padding:0;transition:height .3s ease}
  .dropdown-menu li{list-style:none}
  .dropdown-menu li a{display:block;padding:10px 16px;color:#fff}
  .dropdown.open .dropdown-menu{height:auto}
}



/* Hero */
.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 0 40px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content h1 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 1;
  transition: none;
}

/* After-swap line */
#loop-line {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.static-text,
.type-loop {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: middle;
}

/* Infinite typing */
@keyframes typingLoop {
  0%   { width: 0; }
  50%  { width: 100%; }
  60%  { width: 100%; }
  100% { width: 0; }
}

.type-loop {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid white;
  width: 0;
  animation: typingLoop 5s steps(40, end) infinite;
  animation-delay: 1s;
}

/* Hide until JS triggers */
.hidden {
  display: none;
}

/* Fix button animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: black;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 20px;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 2s; /* this line should be separate */
  opacity: 0;
}
.cta-button:hover {
  background-color: #e6e6e6;
  transform: scale(1.05);
  color: purple;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .cta-button {
    padding: 10px 20px;
  }

  .nav-links ul {
    gap: 10px;
    font-size: 12px;
  }

  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Make h1 responsive */
.hero-content h1 {
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Adjust hero content */
.hero-content {
  max-width: 90%;
  padding: 20px;
}

/* Responsive button */
.cta-button {
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 20px;
  white-space: nowrap;
}

/* Responsive loop text */
#loop-line {
  flex-wrap: wrap;
  font-size: clamp(14px, 3vw, 18px);
}

.services-section {
  background-color: solid black;
}

.services-heading {
  text-align: center;
  font-size: 2.5rem;       /* Bigger text */
  font-weight: 700;        /* Bold */
  margin: 50px 0 30px;     /* Space above and below */
  color: #111827;          /* Dark shade (you can change) */
  position: relative;      /* For underline effect */
}

.services-heading::after {
  content: "";
  display: block;
  width: 80px;             /* Line width */
  height: 4px;             /* Line thickness */
  background: #4f46e5;     /* Accent color */
  margin: 10px auto 0;     /* Center underline */
  border-radius: 2px;
}


.services-container {
  margin: 0;
  padding: 0;
  width: 100vw;   /* full viewport width */
}

.service-box {
  height: 100vh;
  width: 100vw;   /* fill screen horizontally */
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}


.service-box.active {
  opacity: 0;
  transform: scale(1);
  z-index: 1;
}
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}


/* ðŸ”¹ Modern Minimal Button */
.services-button {
  position: absolute;
  bottom: 150px;
  left: 28%;
  transform: translateX(-50%);
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 50px; /* smooth pill shape */
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.services-button:hover {
  background: #4338ca; /* slightly darker shade */
  transform: translateX(-50%) translateY(-2px); /* subtle lift */
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.5);
}
.services-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.services-button:hover .arrow {
  transform: translateX(4px); /* arrow slides slightly to the right */
}

/* ðŸ”¹ Responsive Adjustments */
@media (max-width: 1024px) {
  .services-button {
    padding: 10px 24px;
    font-size: 0.95rem;
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  .services-button {
    padding: 9px 22px;
    font-size: 0.9rem;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .services-button {
    padding: 8px 20px;
    font-size: 0.85rem;
    bottom: 20px;
  }
}



/* ðŸ”¹ Responsive adjustments */
@media (max-width: 1024px) {
  .services-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 1.8rem;
  }

  .service-box {
    height: 40vh;   /* donâ€™t force 100vh on small screens */
    width: 100%;    /* prevent horizontal scrolling */
  }
}

@media (max-width: 480px) {
  .services-heading {
    font-size: 1.4rem;
  }

  .service-box {
    height: 30vh;
    padding: 10px;
  }
}



.why-choose-us {
  width: 100vw;
  background-color: #111827;
 
  padding-left: 0 !important;
  margin-left: 0 !important;


  color: white;
  text-align: center;
    
}

.why-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 60px;
  color: white;
}

.why-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.why-card {
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: scale(1.05);
}

.why-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  color: #fff;
  text-align: left;
}

.why-card:hover .why-overlay {
  transform: translateY(0);
}

.why-overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: purple;
}

.why-overlay p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design for Why Choose Us Section */

/* Medium Devices (Tablets) */




@media (max-width: 1024px) {
  .why-cards {
    gap: 25px;
  }

  .why-card {
    width: 45%;
    height: 380px;
  }

  .why-overlay h3 {
    font-size: 18px;
  }

  .why-overlay p {
    font-size: 13px;
  }
}

/* Small Devices (Mobiles) */

@media (max-width: 768px) {
  .why-choose-us {
    width: 100%;
    padding: 40px 15px;
    margin: 0;
    text-align: center;
  }
}



@media (max-width: 768px) {
  .why-title {
    font-size: clamp(22px, 6vw, 34px);
    margin-bottom: 40px;
  }

  .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .why-card {
    width: 90%;
    height: 350px;
  }

  .why-overlay {
    padding: 15px;
  }

  .why-overlay h3 {
    font-size: 17px;
  }

  .why-overlay p {
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .why-title {
    font-size: 24px;
  }

  .why-card {
    height: 320px;
  }

  .why-overlay h3 {
    font-size: 16px;
  }

  .why-overlay p {
    font-size: 12px;
  }
}






.testimonials-section {
  background-color: #000;
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.testimonial-heading {
  font-size: clamp(28px, 6vw, 48px);
  margin-bottom: 60px;
  color: white;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-card {
  background-color: #111;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 350px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease, transform 0.3s ease;
  border: 1px solid transparent;
}

/* Show on scroll */
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Hover effect === */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.4);
  border-color: #ff572255;
}


.testimonial-message {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ff5722;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.testimonial-author span {
  font-size: 13px;
  color: #aaa;
  display: block;
  margin-bottom: 4px;
}

.stars i {
  color: #ffc107;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
}

footer {
  background-color: #000;
  padding: 60px 20px 30px;
  
  
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.footer-section p {
  line-height: 1.8;
  font-size: 14px;
  color: #ccc;
}

.about-button {
  display: inline-block;
  background: #9C4DF4;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-button:hover {
  background: #7f3de1;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: white;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #9C4DF4;
}

.contact-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #ccc;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a img {
  width: 35px;
  height: 35px;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* responsiveness for footer*/

/* Tablet View */
@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
    padding: 0 20px;
  }

  .footer-section {
    flex: 1 1 45%;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .about-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    
  }

  .footer-section {
    flex: 1 1 100%;
    padding: 20px;
    background-color: #111; /* slight contrast */
    border-radius: 10px;
  }

  .footer-logo {
    display: block;
    margin: 0 auto 15px;
  }

  .footer-section h3 {
    font-size: 17px;
    color: #9C4DF4;
    border-bottom: 2px solid #9C4DF4;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
    color: #ccc;
  }

  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-section ul li a:hover {
    color: #9C4DF4;
  }

  .about-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
  }

  .contact-info p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .social-icons a {
    margin: 0 10px;
  }

  .social-icons a img {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    border-top: 1px solid #333;
    color: #888;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .footer-section {
    padding: 15px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li,
  .contact-info p {
    font-size: 13px;
  }

  .about-button {
    font-size: 13px;
    padding: 8px 15px;
  }

  .social-icons a img {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    font-size: 12px;
    
  }
}

/* book a meeting button */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1b2e;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease, opacity 1s ease;
}

#preloader.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}





/* Book a Meeting button */
.floating-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8b5cf6;
  color: white;
  display: none; /* hidden by default */
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  z-index: 9999;
  opacity: 0;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.5s ease;
}

.floating-book-btn:hover {
  background: #7c3aed;
  transform: scale(1.05);
}

.floating-book-btn.show {
  display: flex;
  opacity: 1;
}


/* Default styles already defined above for book a meeting */

@media (max-width: 749px) {
  .floating-book-btn {
    position: fixed;
    bottom: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
    border-radius: 50%;
    background-color: #5d3fd3;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .floating-book-btn svg {
    width: 22px;
    height: 22px;
  }

  .floating-book-btn::after {
    content: "Book a Meeting";
    position: absolute;
    right: 60px;
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

  .floating-book-btn:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}





/* responsivness for copyright text */
  
@media (max-width: 600px) {
  .footer-bottom {
    padding-bottom: 50px; /* Space to prevent overlap */
  }

  .floating-book-btn {
    bottom: 20px; /* Keep the button above the footer space */
  }
}
.floating-book-btn {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.floating-book-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ==========================
   Hire a Virtual Assistant
   ========================== */
.hire-va {
  padding: 100px 20px;
  background: #fff;
}

.hire-va .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hire-va .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hire-va .image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hire-va .image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hire-va .text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.hire-va .text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.hire-va .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #6c63ff, #8e44ad);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
  transition: all 0.3s ease;
}
.hire-va .btn:hover {
  background: linear-gradient(135deg, #8e44ad, #6c63ff);
  box-shadow: 0 8px 24px rgba(142, 68, 173, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .hire-va .grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hire-va .image img {
    max-width: 90%;
    margin: 0 auto;
  }
  .hire-va .text h2 {
    font-size: 2rem;
  }
  .hire-va .text p {
    font-size: 1rem;
  }
  .hire-va .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}


/* How We Work Section */
.how-we-work {
  padding: 80px 20px;
  background: #f9f9fb;
}

.how-we-work .container {
  max-width: 1200px;
  margin: auto;
}

.how-we-work .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.work-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.work-text .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.step {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #007bff;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 25px;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;
}

/* Image */
.work-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.work-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .how-we-work .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step {
    border-left: none;
    border-top: 3px solid #007bff;
    padding-left: 0;
    padding-top: 10px;
  }
}



/* === FAQs (scoped) === */
.faq-section{
  --fq-bg:#0b0b0f; --fq-card:#12121a; --fq-border:#24243a; --fq-accent:#9C4DF4;
  background: linear-gradient(180deg,#0b0b0f, #0d0d14);
  color:#fff; padding: 80px 24px;
}
.faq-wrap{ max-width: 900px; margin: 0 auto; }
.faq-head{ text-align:center; margin-bottom: 26px; }
.faq-pill{
  display:inline-block; font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  background:#171725; color:#b5b9d3; padding:8px 12px; border-radius:999px; border:1px solid #24243a;
}
.faq-head h2{ font-size: clamp(28px, 4vw, 42px); font-weight:800; margin-top:10px; }
.faq-head h2 span{ color: var(--fq-accent); }
.faq-head p{ color:#cfd2e0; margin-top:8px; }

.faq-list{ display:grid; gap:12px; margin-top: 10px; }
.faq-item{
  background: linear-gradient(180deg,#151522, #10101a);
  border:1px solid var(--fq-border); border-radius:14px; overflow:hidden;
}
.faq-q{
  width:100%; text-align:left; background:transparent; border:0; color:#fff;
  padding:18px 18px; font-size:16px; font-weight:600; display:flex; justify-content:space-between; align-items:center;
  cursor:pointer;
}
.faq-q i{ transition: transform .25s ease; }
.faq-item.open .faq-q i{ transform: rotate(180deg); }

.faq-a{
  display:grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease;
}
.faq-a > p{
  overflow:hidden; margin:0; padding:0 18px 0; color:#cfd2e0; line-height:1.65; font-size:14px;
}
.faq-item.open .faq-a{ grid-template-rows: 1fr; }
.faq-item.open .faq-a > p{ padding: 0 18px 16px; }

.faq-item:hover{ border-color:#3b2d70; box-shadow: 0 12px 30px rgba(156,77,244,.14); }


@media (max-width:768px){
  .dropdown-menu{position:static!important;display:block;height:0;overflow:hidden;
    background:#111;border-radius:6px;margin:0;padding:0;transition:height .3s ease}
  .dropdown-menu li{list-style:none}
  .dropdown-menu li a{display:block;padding:10px 16px;color:#fff}
  .dropdown.open .dropdown-menu{height:auto}
}

