/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #2563eb;
  --secondary: #0f172a;
  --accent: #38bdf8;
  --text-light: #f8fafc;
  --text-dark: #0f172a;
  --glass: rgba(255, 255, 255, 0.08);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: var(--secondary);
  color: var(--text-light);
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 3rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active {
  color: var(--accent);
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("business1.avif")
    center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6)
  );
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: var(--accent);
}

.btn.secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--text-dark);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 1.5rem 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  } 
 
} 

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 22px;
  }
}
  

/* About Hero */
.about-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.about-hero-content {
  position: relative;
  color: var(--text-light);
}

.about-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* About Content Section */
.about-content {
  display: flex;
  gap: 3rem;
  padding: 4rem 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* Stats Section */
.about-stats {
  display: flex;
  justify-content: space-around;
  padding: 3rem;
  background: rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--accent);
}

.stat-card p {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-image img {
    margin-bottom: 2rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
} 
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;       /* Stack image & text vertically */
    text-align: center;           /* Center text */
    gap: 2rem;                    /* Add spacing between image & text */
  }

  .about-image {
    order: -1;                    /* Put image on top or below text depending on preference */
    width: 100%;
    max-width: 400px;             /* Keep image from being too wide */
    margin: 0 auto;               /* Center the image */
  }

  .about-text {
    order: 0;                      /* Text comes below or above image */
    padding: 0 1rem;               /* Add horizontal padding */
  }

  .about-text h2 {
    font-size: 1.5rem;            /* Slightly smaller headings */
  }

  .about-text p {
    font-size: 0.95rem;           /* Adjust text size for mobile */
  }
}


html {
  scroll-behavior: smooth;
}

/* SERVICES SECTION */
.services-section {
  padding: 5rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* GRID */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* CARD */
.service-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2.2rem;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* ICON */
.service-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

/* TEXT */
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}


/* TESTIMONIALS */
.testimonials-section {
  padding: 5rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

/* CARD */
.testimonial-card {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  animation: fadeSlide 0.6s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--accent);
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent);
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .slider-btn {
    display: none; /* hide arrows on mobile */
  }
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* PRICING */
.pricing-section {
  padding: 5rem 3rem;
  text-align: center;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
  color: var(--text-light);
}

/* Toggle Switch */
.switch {
  position: relative;
  width: 52px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background: var(--primary);
}

.switch input:checked + .slider::before {
  transform: translateX(26px);
}

/* Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* Featured */
.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Price */
.price {
  font-size: 2.4rem;
  margin: 1.5rem 0;
  color: var(--text-light);
}

.currency {
  font-size: 1.2rem;
}

.duration {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Features */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-section {
    padding: 4rem 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}


/* CONTACT */
.contact-section {
  padding: 5rem 3rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
}

/* INFO */
.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.error {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  display: block;
}

/* SUCCESS */
.success-message {
  display: none;
  margin-top: 1.2rem;
  color: #4caf50;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 4rem 1.5rem;
  }
}


/* FOOTER */
.footer {
  background: rgba(0, 0, 0, 0.6);
  padding-top: 4rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 3rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

/* BRAND */
.footer-brand h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* TITLES */
.footer h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* LINKS */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.footer-links ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
}

/* CONTACT */
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* SOCIAL */
.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 1.5rem 2.5rem;
    text-align: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}


/* QUICK LINKS HOVER EFFECT */
.footer-links ul li a {
  position: relative;
  color: var(--text-light);
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* underline animation */
.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-links ul li a:hover::after {
  width: 100%;
} 

/* REMOVE DEFAULT LINK UNDERLINE */
.footer-links ul li a {
  text-decoration: none; /* ← THIS removes the white line */
}

