/* =====================================================
   INDEX PAGE STYLING (LANDING PAGE)
   ===================================================== */

/* ---------- HERO SECTION ---------- */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #111827, #020617);
  overflow: hidden;
}

.hero-content {
  animation: fadeUp 1s ease forwards;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.hero-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-4px);
}

/* HERO IMAGE */
.hero-image {
  max-width: 90%;
  animation: heroFloat 4s ease-in-out infinite;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  background: #ffffff;
}

.service-card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 42px;
}

/* ---------- WHY US ---------- */
.why-us-section {
  background: #f8fafc;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

/* ---------- TEAM SECTION ---------- */
.team-section {
  background: #ffffff;
}

.team-card {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card img {
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ---------- PROCESS ---------- */
.process-section {
  background: #f1f5f9;
}

.process-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, #020617, #111827);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .team-card img {
    height: 240px;
  }
}

/* =====================================================
   ABOUT PAGE STYLING
   ===================================================== */

/* ---------- ABOUT HERO ---------- */
.about-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #111827);
}

.about-title {
  font-size: 3rem;
  animation: fadeUp 1s ease forwards;
}

.about-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #cbd5e1;
  animation: fadeUp 1.4s ease forwards;
}

/* ---------- ABOUT STORY ---------- */
.about-story {
  padding: 90px 0;
  background: #ffffff;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  animation: imageFloat 5s ease-in-out infinite;
}

/* ---------- MISSION & VISION ---------- */
.mission-vision {
  padding: 80px 0;
}

.mv-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ---------- TEAM SECTION ---------- */
.about-team {
  padding: 90px 0;
  background: #ffffff;
}

.about-team .team-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-team .team-card img {
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.about-team .team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ---------- CTA ---------- */
.about-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #111827);
}

/* ---------- ANIMATIONS ---------- */
@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-subtitle {
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-team .team-card img {
    height: 240px;
  }
}

/* =====================================================
   SERVICES PAGE STYLING
   ===================================================== */

/* ---------- SERVICES HERO ---------- */
.services-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #020617, #111827);
}

.services-title {
  font-size: 3rem;
  animation: fadeUp 1s ease forwards;
}

.services-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #cbd5e1;
  animation: fadeUp 1.4s ease forwards;
}

/* ---------- SERVICES DETAILS ---------- */
.services-details {
  padding: 90px 0;
  background: #ffffff;
}

.service-row {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.service-text h2 {
  font-size: 2rem;
}

.service-list {
  margin-top: 15px;
  padding-left: 18px;
}

.service-list li {
  margin-bottom: 8px;
  color: #555;
}

/* ---------- SERVICE IMAGES ---------- */
.service-image {
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
}

.service-image:hover {
  transform: scale(1.04);
}

/* ---------- WHY CHOOSE SERVICES ---------- */
.services-why {
  padding: 90px 0;
  background: #f8fafc;
}

.why-service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.why-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ---------- CTA ---------- */
.services-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #020617, #111827);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }

  .service-row {
    text-align: center;
  }

  .service-image {
    margin-top: 30px;
  }

  .service-text h2 {
    font-size: 1.6rem;
  }
}

/* =========================================
   PRICING PAGE – SIMPLE & PROFESSIONAL
   ========================================= */

/* HERO */
.pricing-hero-ai {
  padding: 90px 0;
  background: #111827;
  color: #fff;
  text-align: center;
}

.pricing-title-ai {
  font-size: 2.8rem;
  font-weight: 800;
}

.pricing-subtitle-ai {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 15px auto 0;
  opacity: 0.9;
}

/* SECTION */
.pricing-section-ai {
  padding: 90px 0;
  background: #f8fafc;
}

.section-title-ai {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* PRICING CARD */
.pricing-card-ai {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.pricing-card-ai:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

/* FEATURED PLAN */
.pricing-card-ai.featured {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

/* BADGE */
.popular-badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* PLAN TEXT */
.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-desc {
  color: #6b7280;
  margin-bottom: 15px;
}

/* PRICE */
.price-box {
  margin: 20px 0;
}

.currency {
  font-size: 1.3rem;
  color: #2563eb;
}

.amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2563eb;
}

/* FEATURES */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 8px 0;
  color: #374151;
  font-weight: 500;
}

/* BUTTON */
.pricing-card-ai .btn {
  margin-top: 20px;
  border-radius: 30px;
  padding: 12px;
}

/* CUSTOM PRICING */
.custom-pricing-ai {
  padding: 80px 0;
  background: #ffffff;
}

/* FAQ */
.pricing-faq-ai {
  padding: 90px 0;
  background: #f8fafc;
}

.faq-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h5 {
  font-weight: 700;
}

.faq-item p {
  color: #6b7280;
}

/* CTA */
.pricing-cta-ai {
  padding: 90px 0;
  background: #111827;
  color: #ffffff;
  text-align: center;
}

/* ANIMATION */
.pricing-card-ai,
.faq-item {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-title-ai {
    font-size: 2.1rem;
  }

  .pricing-card-ai.featured {
    transform: scale(1);
    margin-top: 20px;
  }

  .amount {
    font-size: 2.6rem;
  }
}

/* =========================================
   CONTACT PAGE – CLEAN & MODERN
   ========================================= */

/* HERO */
.contact-hero,
section.bg-dark.text-white.text-center {
  padding: 90px 0;
}

.contact-hero h1,
section.bg-dark h1 {
  font-size: 2.6rem;
  font-weight: 800;
}

.contact-hero p,
section.bg-dark p {
  max-width: 700px;
  margin: 15px auto 0;
  opacity: 0.9;
}

/* CONTACT SECTION */
section.py-5 {
  background: #f8fafc;
}

/* LEFT INFO */
section.py-5 h2 {
  font-size: 2rem;
}

section.py-5 ul li {
  font-size: 15px;
  color: #374151;
}

/* FORM CARD */
.card.shadow-sm {
  border-radius: 18px;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 35px;
}

/* FORM */
.form-control {
  border-radius: 12px;
  padding: 12px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: none;
}

/* BUTTON */
.btn-dark {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

/* MAP SECTION */
section.bg-light {
  background: #ffffff !important;
}

section.bg-light .card {
  border-radius: 18px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* CTA */
section.bg-dark.text-white.text-center a.btn {
  padding: 14px 36px;
  border-radius: 30px;
}

/* SMALL ANIMATION */
.card,
.col-md-5,
.col-md-7 {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  section.bg-dark h1 {
    font-size: 2rem;
  }

  .card-body {
    padding: 25px;
  }
}
