/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.site-header {
  background: #000723;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.logo span {
  color: #38bdf8;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  list-style: none; /* ✅ THIS LINE IS MISSING */
  padding-left: 0;  /* ✅ REMOVE DEFAULT UL PADDING */
}

.nav-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* CTA */
.btn-primary {
  background: #38bdf8;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0ea5e9;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ===== DESKTOP HEADER FIX ===== */

/* Logo */
.logo {
  justify-self: start;
}

/* Center menu */
.navbar {
  justify-self: end;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

/* ===== HEADER STRUCTURE ===== */
/* DEFAULT (DESKTOP) */
/* FORCE DESKTOP HEADER */
/* ===== DESKTOP GRID LAYOUT ===== */
.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-top {
  display: flex;
   justify-content: center; 
  align-items: center;
  gap: 20px;
}

.header-bottom {
  display: none;
}

@media (max-width: 768px) {

  /* Stack layout */
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Row 1 */
  .header-top {
    display: flex;
     justify-content: center; 
    align-items: center;
  }

  /* Row 2 */
  .header-bottom {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  /* Toggle */
  .menu-toggle {
    display: none;
  }

  .header-bottom .menu-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
  }

  /* NAV FIX (CRITICAL) */
  .nav-links {
    display: none;
    flex-direction: column;
    text-align: center;
    background: #0f172a;
    width: 100%;

    /* 👇 THIS FIXES OVERLAP */
    position: static;
  }

  .nav-links.active {
    display: flex;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding-top: 10px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Text */
.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text span {
  color: #38bdf8;
}

.hero-text p {
  margin: 20px 0;
  color: #cbd5f5;
  font-size: 16px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #38bdf8;
  color: #0f172a;
}

/* Image */
.hero-image img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 20px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===== WHAT WE OFFER ===== */
.what-we-offer {
  background: #020617;
  color: #fff;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-header p {
  color: #cbd5f5;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.offer-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.offer-box {
  background: #0f172a;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #1e293b;
}

.offer-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #38bdf8;
}

.offer-box p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Hover effect */
.offer-box:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-points {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* ===== SERVICES ===== */
.services {
  background: #020617;
  padding: 80px 0;
  color: #fff;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid #1e293b;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(56,189,248,0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

/* Icon */
.service-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* Title */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #38bdf8;
}

/* Text */
.service-card p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: #020617;
  padding: 80px 0;
  color: #fff;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s;
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.85);
  padding: 20px;
}

.portfolio-overlay h3 {
  color: #38bdf8;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Hover Effects */
.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 80px 0;
  color: #fff;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
  margin-bottom: 20px;
}

/* Client */
.client-info h4 {
  color: #38bdf8;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  background: #020617;
  padding: 80px 0;
  color: #fff;
}

/* Container */
.faq-container {
  max-width: 800px;
  margin: auto;
}

/* Item */
.faq-item {
  border-bottom: 1px solid #1e293b;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 18px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hover */
.faq-question:hover {
  color: #38bdf8;
}

/* Icon */
.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: #cbd5f5;
  font-size: 14px;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.cta::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #38bdf8;
  filter: blur(120px);
  top: -50px;
  left: -50px;
  opacity: 0.2;
}

/* Container */
.cta-container {
  position: relative;
  z-index: 1;
}

/* Heading */
.cta-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Text */
.cta-content p {
  color: #cbd5f5;
  margin-bottom: 25px;
  font-size: 16px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* WhatsApp Button */
/* CTA BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* COMMON BUTTON STYLE (IMPORTANT) */
.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 52px;              /* FIXED HEIGHT */
  padding: 0 24px;           /* EQUAL SIDE SPACE */
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1;            /* 🔥 IMPORTANT FIX */
}

.cta-buttons .btn-primary,
.cta-buttons .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PRIMARY BUTTON */
.cta-buttons .btn-primary {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #000;
}

/* WHATSAPP BUTTON */
.cta-buttons .btn-whatsapp {
  background: #25D366;
  color: #fff;
}

/* HOVER */
.cta-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-buttons {
  margin-top: 25px;
}

.cta-buttons a {
  min-width: 240px; /* slightly wider = more premium */
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== ABOUT BANNER ===== */
.about-banner {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 80px 0;
}

.about-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Text */
.about-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-text p {
  color: #cbd5f5;
  font-size: 16px;
  line-height: 1.6;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 12px;
  animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h1 {
    font-size: 28px;
  }
}

.breadcrumb {
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 14px;
}

/* ===== ABOUT STORY ===== */
.about-story {
  background: #020617;
  padding: 80px 0;
  color: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Content */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  color: #cbd5f5;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Right Cards */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  transition: 0.3s;
}

.about-card h3 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Hover */
.about-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 80px 0;
  color: #fff;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  text-align: center;
  transition: 0.3s;
}

/* Icon */
.why-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* Title */
.why-card h3 {
  color: #38bdf8;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Text */
.why-card p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

.why-card:hover {
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT CTA ===== */
.about-cta {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 70px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.about-cta::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: #38bdf8;
  filter: blur(100px);
  top: -50px;
  right: -50px;
  opacity: 0.2;
}

/* Content */
.about-cta-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.about-cta-content p {
  color: #cbd5f5;
  margin-bottom: 25px;
  font-size: 16px;
}

/* Buttons */
.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .about-cta-content h2 {
    font-size: 22px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-urgent {
  color: #facc15;
  margin-bottom: 10px;
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
  background: url('images/contact-banner.jpg') center/cover no-repeat;
  height: 300px;
  position: relative;
}

/* DARK OVERLAY */
.banner-overlay {
  background: rgba(2, 6, 23, 0.75);
  height: 100%;
  display: flex;
  align-items: center;
}

/* TEXT */
.contact-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-banner p {
  font-size: 18px;
  color: #cbd5f5;
}

/* ===== CONTACT SECTION ===== */
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #020617;
  padding: 80px 0;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== FORM WRAPPER ===== */
.contact-form h2 {
  margin-bottom: 25px;
}

/* FORM GRID */
.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FULL WIDTH FIELDS */
.contact-form textarea,
.contact-form select,
.contact-form button {
  grid-column: span 2;
}

/* INPUT STYLING */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

/* FIX HEIGHT CONSISTENCY */
.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* FOCUS EFFECT (PREMIUM LOOK) */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border: 1px solid #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

/* BUTTON */
.contact-form button {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* ===== RIGHT SIDE ===== */
.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form select,
  .contact-form button {
    grid-column: span 1;
  }
}

/* ===== BANNER ===== */
.services-banner {
  background: url('images/services-banner.jpg') center/cover no-repeat;
  height: 400px;
  position: relative;
}

.banner-overlay {
  background: rgba(2, 6, 23, 0.75);
  height: 100%;
  display: flex;
  align-items: center;
}

.services-banner h1 {
  font-size: 42px;
  color: #fff;
  max-width: 700px;
}

.services-banner p {
  color: #cbd5f5;
  margin-top: 10px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #020617;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

/* MAIN H1 (SEO IMPORTANT) */
.services-section h1 {
  font-size: 36px;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.3;
}

/* SEO INTRO TEXT */
.seo-intro {
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid transparent;
  position: relative;
}

/* UPDATED: H2 inside card */
.service-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #38bdf8;
  line-height: 1.4;
}

/* OPTIONAL LINK STYLE */
.service-card h2 a {
  color: #38bdf8;
  text-decoration: none;
}

.service-card h2 a:hover {
  text-decoration: underline;
}

/* TEXT */
.service-card p {
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.7;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #38bdf8;
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

---

/* ===== FAQ SECTION (PREMIUM) ===== */
.faq-section {
  background: #020617;
  padding: 90px 0;
  color: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

/* FAQ ITEM */
.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border-radius: 12px;
  border: 1px solid #1e293b;
  padding: 20px 25px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

/* QUESTION */
.faq-item h3 {
  font-size: 16px;
  color: #e2e8f0;
  margin: 0;
  padding-right: 30px;
}

/* PLUS ICON */
.faq-item::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  color: #38bdf8;
  transition: 0.3s;
}

/* ANSWER */
.faq-item p {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 10px;
  display: none;
}

/* ACTIVE STATE */
.faq-item.active p {
  display: block;
}

.faq-item.active::after {
  content: "-";
}

/* HOVER EFFECT */
.faq-item:hover {
  border-color: #38bdf8;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

/* ===== CTA SECTION (PREMIUM) ===== */
.cta-section {
  background: radial-gradient(circle at top left, #0ea5e9, #020617);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #38bdf8;
  filter: blur(120px);
  top: -100px;
  left: -100px;
  opacity: 0.2;
}

/* TEXT */
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 30px;
  position: relative;
}

/* BUTTON */
.cta-section .btn-primary {
  background: #fff;
  color: #020617;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.cta-section .btn-primary:hover {
  background: #e2e8f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section h1 {
    font-size: 26px;
  }

  .cta-section h2 {
    font-size: 24px;
  }
}

/* ===== BANNER ===== */
.portfolio-banner {
  background: url('images/portfolio-banner.jpg') center/cover no-repeat;
  height: 400px;
  position: relative;
}

.banner-overlay {
  background: rgba(2, 6, 23, 0.75);
  height: 100%;
  display: flex;
  align-items: center;
}

.portfolio-banner h1 {
  font-size: 40px;
  color: #fff;
  max-width: 800px;
}

.portfolio-banner p {
  color: #cbd5f5;
  margin-top: 10px;
}

/* ===== SECTION ===== */
.portfolio-section {
  background: #020617;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.portfolio-section h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.seo-intro {
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.portfolio-content {
  padding: 20px;
}

.portfolio-content h2 {
  color: #38bdf8;
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-content p {
  font-size: 14px;
  color: #cbd5f5;
}

/* HOVER */
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

/* CTA (reuse previous if added) */
.cta-section {
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  padding: 70px 0;
  text-align: center;
  color: #020617;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-banner h1 {
    font-size: 26px;
  }
}