* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin-top: 120px;
}

section,
.service-card,
.choose-card,
.stats-card,
.portfolio-card,
.process-card,
.testimonial-card,
.team-card,
.contact-form-wrapper,
.btn,
.nav-link {
  transition: all 0.3s ease;
}

.section-glow-left,
.section-glow-right {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.section-glow-left {
  background: rgba(37, 99, 235, 0.12);
  top: -120px;
  left: -120px;
}

.section-glow-right {
  background: rgba(37, 99, 235, 0.12);
  bottom: -120px;
  right: -120px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #081120;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

section {
  padding: 100px 0;
}

img {
  width: 100%;
  display: block;
}

.section-heading {
  margin-bottom: 70px;
}

.hero-description,
.section-description {
  max-width: 600px;
}

.contact-section .section-description {
  max-width: 100%;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background-color: #081120;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #60a5fa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 9999;

  background: transparent;
  padding: 0;
}

.navbar .container {
  position: relative;

  background: rgba(8, 17, 32, 0.85);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 999px;

  padding: 12px 28px;

  box-shadow:
    0 0 25px rgba(37, 99, 235, 0.15),
    inset 0 0 15px rgba(96, 165, 250, 0.05);
}

.navbar .container::before {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  background: rgba(37, 99, 235, 0.22);

  filter: blur(90px);

  top: -80px;
  left: -100px;

  z-index: -1;
}

.navbar-scrolled .container {
  background: rgba(8, 17, 32, 0.95);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(37, 99, 235, 0.12);
}

.navbar-brand {
  width: 160px;

  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;

  color: white !important;
}

.navbar-nav {
  margin: 0 auto;
  gap: 12px;
}

.nav-link {
  position: relative;

  color: #cbd5e1 !important;

  font-size: 15px;
  padding: 8px 12px !important;

  margin-left: 0;
  transition: 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 0;

  width: 0%;
  height: 2px;

  background: white;

  transition: 0.3s ease;
}

.nav-link:hover {
  color: #60a5fa !important;
}

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

.nav-link.active {
  color: white !important;
}

.nav-link.active::after {
  width: 100%;
  background: #2563eb;
}

.nav-contact-btn {
  width: 160px;
  height: 44px;

  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2563eb;
  color: white;

  text-decoration: none;
  font-weight: 600;

  border-radius: 999px;

  transition: 0.3s ease;
}

.nav-contact-btn:hover {
  background: #3b82f6;
  color: white;

  transform: translateY(-2px);

  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.25);
  filter: blur(120px);
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;

  margin-bottom: 20px;
  font-size: 14px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-description {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary-custom {
  background-color: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background-color: #3b82f6;
}

.btn-outline-custom {
  border: 1px solid #334155;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background-color: #1e293b;
}

.hero-image-wrapper {
  padding-left: 40px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;

  background: #111827;

  padding: 20px;
  border-radius: 30px;

  border: 1px solid rgba(96, 165, 250, 0.15);
}

.hero-image-card::before {
  content: "";
  position: absolute;

  inset: -1px;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.6),
    rgba(96, 165, 250, 0),
    rgba(96, 165, 250, 0)
  );

  opacity: 0.7;
  z-index: 0;
}

.hero-image-card img {
  position: relative;
  z-index: 2;
}

.hero-image-card::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  top: -40px;
  left: -40px;

  background: rgba(59, 130, 246, 0.35);

  border-radius: 50%;
  filter: blur(75px);

  z-index: 1;
}

/* About */
.about-section {
  background-color: #0f172a;
}

.section-label {
  display: inline-block;
  color: #60a5fa;
  margin-bottom: 15px;
  font-weight: 500;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.section-description {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-image {
  padding-right: 30px;
}

/* Services */
.services-heading {
  margin-bottom: 60px;
}

.service-section {
  background-color: #081120;
}

.service-card {
  background-color: #111827;
  padding: 35px 30px;
  border-radius: 24px;
  height: 100%;
  border: 1px solid #1e293b;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.service-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background-color: rgba(37, 99, 235, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.service-icon i {
  font-size: 28px;
  color: #60a5fa;
}

/* Choose Section */
.choose-section {
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
}

.choose-card {
  background-color: #111827;
  border: 1px solid #1e293b;
  padding: 40px 30px;
  border-radius: 24px;
  height: 100%;
}

.choose-card h3 {
  margin-bottom: 18px;
}

.choose-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.choose-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background-color: rgba(37, 99, 235, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.choose-icon i {
  font-size: 28px;
  color: #60a5fa;
}

/* Statistics Section */
.stats-section {
  background-color: #081120;
}

.stats-card {
  background-color: #111827;
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #1e293b;
}

.stats-card h2 {
  font-size: 3rem;
  color: #60a5fa;
  margin-bottom: 10px;
}

.stats-card p {
  color: #94a3b8;
}

/* Portfolio Section */
.portfolio-section {
  background-color: #0f172a;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 24px;
  background-color: #111827;
  border: 1px solid #1e293b;
}

.portfolio-card img {
  height: 250px;
  object-fit: cover;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content span {
  color: #60a5fa;
  font-size: 14px;
}

.portfolio-content h3 {
  margin-top: 10px;
}

/* Portfolio Filter */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #111827;
  border: 1px solid #1e293b;
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #2563eb;
  border-color: #2563eb;
}

/* Process Section */
.process-section {
  background-color: #081120;
}

.process-card {
  background-color: #111827;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid #1e293b;
  height: 100%;
}

.process-card h2 {
  color: #60a5fa;
  font-size: 3rem;
  margin-bottom: 20px;
}

.process-card h3 {
  margin-bottom: 15px;
}

.process-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background-color: rgba(37, 99, 235, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

.process-icon i {
  font-size: 30px;
  color: #60a5fa;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #0f172a;
}

.testimonial-card {
  background-color: #111827;
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid #1e293b;
  height: 100%;
}

.testimonial-card p {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 25px;
}

.testimonial-card h4 {
  margin-bottom: 5px;
}

.testimonial-card span {
  color: #60a5fa;
  font-size: 14px;
}

/* Team Section */
.team-section {
  position: relative;
  background-color: #050b16;
  overflow: hidden;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

/* Founder */
.founder-wrapper {
  margin-bottom: 120px;
}

.founder-image {
  position: relative;
  padding: 14px;
  border-radius: 24px;

  background: #0b1120;

  border: 1px solid rgba(96, 165, 250, 0.12);

  overflow: hidden;
}

.founder-image img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 18px;
}

.founder-image::before {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.45) 0%,
    rgba(37, 99, 235, 0.18) 35%,
    rgba(11, 17, 32, 0) 75%
  );

  top: -40px;
  left: -40px;

  z-index: 0;
}

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(8, 17, 32, 0) 0%,
    rgba(8, 17, 32, 0.18) 100%
  );

  z-index: 1;
}

.founder-content {
  padding-right: 40px;
}

.founder-info {
  margin-top: 35px;
}

.founder-info h4 {
  margin-bottom: 8px;
}

.founder-info span {
  color: #60a5fa;
}

.about-section,
.service-section,
.choose-section,
.stats-section,
.portfolio-section,
.process-section,
.testimonial-section,
.faq-section,
.cta-section,
.contact-section,
.team-section {
  position: relative;
  overflow: hidden;
}

.about-section .container,
.service-section .container,
.choose-section .container,
.stats-section .container,
.portfolio-section .container,
.process-section .container,
.testimonial-section .container,
.faq-section .container,
.cta-section .container,
.contact-section .container,
.team-section .container {
  position: relative;
  z-index: 2;
}

/* Team Card */
.team-card-modern {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  border: 1px solid #1e293b;
  border-radius: 28px;
  padding: 35px 25px;
  height: 100%;
  transition: 0.3s ease;
}

.team-card-modern::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.18);
  border-radius: 50%;
  filter: blur(90px);

  top: -80px;
  right: -80px;

  z-index: 0;
}

.team-card-modern:hover::before {
  opacity: 1;
}

.team-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.team-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(96, 165, 250, 0.2);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-content {
  text-align: center;
}

.team-card-content,
.team-image {
  position: relative;
  z-index: 2;
}

.team-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.team-card-content p {
  color: #94a3b8;
  margin-bottom: 0;
}

.team-glow-left,
.team-glow-right {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(170px);
  z-index: 0;
}

.team-glow-left {
  background: rgba(37, 99, 235, 0.22);
  bottom: -180px;
  left: -180px;
}

.team-glow-right {
  background: rgba(59, 130, 246, 0.16);
  top: 120px;
  right: -180px;
}

/* FAQ Section */
.faq-section {
  background-color: #0f172a;
}

.accordion-item {
  background-color: #111827;
  border: 1px solid #1e293b;
  margin-bottom: 20px;
  border-radius: 18px !important;
  overflow: hidden;
  transition: 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.accordion-button {
  background-color: #111827;
  color: white;
  transition: 0.3s ease;
}

.accordion-button:hover {
  color: #60a5fa;
}

.accordion-button:not(.collapsed) {
  background-color: #111827;
  color: #60a5fa;
  box-shadow: inset 0 -1px 0 rgba(96, 165, 250, 0.15);
}

.accordion-body {
  color: #94a3b8;
}

/* CTA Section */
.cta-section {
  background-color: #081120;
}

.cta-wrapper {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(15, 23, 42, 1)
  );

  padding: 80px 40px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid #1e293b;
}

.cta-wrapper h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.cta-wrapper p {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background-color: #0f172a;
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 22px;
  color: #60a5fa;
  margin-top: 3px;
}

.contact-item h4 {
  margin-bottom: 10px;
}

.contact-item p {
  color: #94a3b8;
}

.contact-form-wrapper {
  background-color: #111827;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #1e293b;
}

.form-control {
  background-color: #081120;
  border: 1px solid #1e293b;
  padding: 15px 20px;
  color: white;
}

.form-control.error {
  border-color: #ef4444;
}

.form-control:focus {
  background-color: #081120;
  border-color: #2563eb;
  box-shadow: none;
  color: white;
}

.form-control::placeholder {
  color: #64748b;
}

textarea.form-control {
  resize: none;
}

.form-alert {
  display: none;
  background-color: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 25px;
}

/* Footer */
.footer-section {
  background-color: #0b1120;
  padding: 100px 0 40px;
  border-top: 1px solid #1e293b;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 20px;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-title {
  margin-bottom: 25px;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  position: relative;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 70px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #111827;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 18px;
  text-decoration: none;

  border: 1px solid #1e293b;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Global Card Glow */
.service-card,
.choose-card,
.stats-card,
.portfolio-card,
.process-card,
.testimonial-card,
.team-card-modern,
.contact-form-wrapper,
.accordion-item {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.choose-card::before,
.stats-card::before,
.portfolio-card::before,
.process-card::before,
.testimonial-card::before,
.team-card-modern::before,
.contact-form-wrapper::before,
.accordion-item::before {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(59, 130, 246, 0.16);

  border-radius: 50%;
  filter: blur(80px);

  top: -60px;
  left: -60px;

  z-index: 0;
}

.service-card > *,
.choose-card > *,
.stats-card > *,
.portfolio-card > *,
.process-card > *,
.testimonial-card > *,
.team-card-modern > *,
.contact-form-wrapper > *,
.accordion-item > * {
  position: relative;
  z-index: 2;
}

/* Card Hover Effect */
.service-card,
.choose-card,
.stats-card,
.process-card,
.testimonial-card,
.team-card,
.portfolio-card,
.contact-form-wrapper {
  transition: 0.3s ease;
}

.service-card:hover,
.choose-card:hover,
.stats-card:hover,
.process-card:hover,
.testimonial-card:hover,
.team-card:hover,
.portfolio-card:hover,
.contact-form-wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
}

/* hover image */
.portfolio-card img {
  transition: 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Button Hover Effect */
.btn-primary-custom,
.btn-outline-custom {
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-custom:hover {
  transform: translateY(-3px);
}

/* Back To Top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  font-size: 20px;
  display: none;
  z-index: 9999;
  cursor: pointer;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar {
    top: 8px;
  }

  .navbar .container {
    border-radius: 24px;
    padding: 12px 20px;
  }

  .navbar-collapse {
    margin-top: 15px;

    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);

    border: 1px solid #1e293b;
    border-radius: 20px;

    padding: 20px;
  }

  .navbar-nav {
    gap: 0;
    margin: 0;
  }

  .nav-link {
    text-align: center;
    padding: 12px 0 !important;
  }

  .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-contact-btn {
    width: 100%;
    height: 48px;

    margin-top: 15px;
    margin-left: 0;

    border-radius: 14px;
  }

  .navbar-brand {
    width: auto;
  }

  .navbar-toggler {
    border: 1px solid #1e293b;
    padding: 8px 12px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .container::before {
    display: none;
  }

  .hero-section {
    text-align: center;
    padding-top: 140px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-image {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .portfolio-filter {
    gap: 10px;
  }

  .filter-btn {
    width: 100%;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .stats-card h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
  }

  .cta-wrapper h2 {
    font-size: 2rem;
  }

  .cta-wrapper {
    padding: 60px 25px;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
  }
}
