/* NAVBAR */

.custom-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Scroll effect */

.custom-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* LOGO */

.logo-img {
  width: 150px;
  height: auto;
}

/* NAV LINKS */

.nav-modern {
  font-weight: 500;
  color: #333;
  margin: 0 16px;
  position: relative;
  transition: 0.3s;
}

.nav-modern:hover {
  color: #5b6cff;
}

/* Underline animation */

.nav-modern::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: 0.3s;
}

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

/* DROPDOWN */

.modern-dropdown {
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.modern-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  transition: 0.2s;
}

.modern-dropdown .dropdown-item:hover {
  background: #f5f7ff;
  color: #5b6cff;
}

/* =========================
MEGA MENU
========================= */

.mega-dropdown .mega-menu{
    width:520px;
    padding:22px 26px;
    border-radius:18px;
    border:1px solid rgba(15,23,42,0.06);
    box-shadow:0 18px 45px rgba(15,23,42,0.08);
}

.mega-title{
    font-size:13px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.5px;
    color:#64748b;
    margin-bottom:10px;
}

.mega-menu .dropdown-item{
    padding:10px 0;
    font-size:15px;
    color:#0f172a;
    font-weight:500;
}

.mega-menu .dropdown-item:hover{
    color:#4f46e5;
    background:none;
}

@media (max-width: 991px){

    .mega-dropdown .mega-menu{
        width:100%;
    }

}

/* CTA BUTTON */

.modern-btn {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.modern-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  color: white;
}

/* MOBILE */

.navbar-toggler i {
  font-size: 22px;
}

@media (max-width: 991px) {
  .navbar-nav {
    margin-top: 20px;
  }

  .nav-modern {
    margin: 10px 0;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 100px;
  padding-top: 100px;
  overflow: hidden;
}

.footer-top-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.14),
      transparent 28%
    );
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 10px 0 34px;
}

.footer-brand-box {
  padding-right: 20px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: translateY(-2px);
  color: #fff;
}

.footer-links-box h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  flex-shrink: 0;
}

.footer-contact-item small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-bottom-right a:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-cta {
    margin-top: -40px;
    padding: 28px;
  }

  .footer-cta-content h2 {
    font-size: 1.7rem;
  }

  .footer-logo-img {
    height: 38px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    margin-top: 80px;
  }

  .footer-cta {
    margin-top: -30px;
    border-radius: 22px;
    padding: 24px;
  }

  .footer-cta-content h2 {
    font-size: 1.45rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right {
    gap: 14px;
  }
}
/* =========================
   HOME PAGE
========================= */

.hero-section {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #475569;
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn-primary {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

.hero-btn-secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: #f8fafc;
  color: #0f172a;
}

.hero-mini-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

.hero-mini-points i {
  color: #8b5cf6;
  margin-right: 6px;
}

.hero-visual {
  position: relative;
  padding: 20px;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  padding: 18px;
}

.hero-card-main img {
  border-radius: 24px;
  display: block;
  width: 100%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  min-width: 240px;
}

.floating-card i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 18px;
}

.floating-card strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.floating-card span {
  display: block;
  color: #64748b;
  font-size: 13px;
}

.floating-card-one {
  top: 10%;
  left: -8%;
}

.floating-card-two {
  bottom: 8%;
  right: -6%;
}

.stats-section {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.stat-card h3 {
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.home-section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: #4f46e5;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.02rem;
  margin: 0;
}

.services-preview-section {
  background: #fff;
}

.service-preview-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(139, 92, 246, 0.12)
  );
  color: #4f46e5;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-preview-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-preview-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-preview-card a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}

.service-preview-card a i {
  margin-left: 6px;
  transition: 0.2s ease;
}

.service-preview-card a:hover i {
  transform: translateX(3px);
}

.section-btn {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 600;
}

.section-btn:hover {
  color: #fff;
}

.why-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.why-image-card {
  background: #fff;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-item i {
  font-size: 20px;
  color: #8b5cf6;
  margin-top: 4px;
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.why-item p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.process-section {
  background: #fff;
}

.process-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  height: 100%;
}

.process-card span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.portfolio-preview-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portfolio-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
}

.portfolio-image {
  padding: 18px 18px 0;
}

.portfolio-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.08);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.portfolio-content p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.home-final-cta {
  padding: 20px 0 40px;
}

.final-cta-card {
  text-align: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(139, 92, 246, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #f8fbff, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 60px 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.final-cta-card h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.final-cta-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #64748b;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .floating-card-one {
    left: 0;
  }

  .floating-card-two {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 70px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .hero-visual {
    padding: 0;
  }

  .home-section {
    padding: 80px 0;
  }

  .section-heading h2,
  .final-cta-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 70px 0;
  }

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

  .section-heading h2,
  .final-cta-card h2 {
    font-size: 1.7rem;
  }

  .final-cta-card {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .hero-mini-points {
    gap: 12px;
    flex-direction: column;
  }
}
.hero-section {
  position: relative;
  padding: 140px 0 90px;
  min-height: 760px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-three-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-content,
.hero-visual {
  position: relative;
  z-index: 3;
}

/* ABOUT */

.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-icon {
  font-size: 28px;
  color: #6366f1;
  margin-bottom: 15px;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.about-list i {
  color: #6366f1;
  margin-right: 8px;
}

.about-cta {
  background: #f8fafc;
  padding: 60px;
  border-radius: 16px;
}
.process-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 22px;
}
/* =========================
   SERVICE PAGE - WEB DEVLOPMENT
========================= */

.service-hero-section {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.service-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.service-hero-content h1 span {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #475569;
  max-width: 620px;
  margin-bottom: 30px;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.service-mini-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

.service-mini-points i {
  color: #8b5cf6;
  margin-right: 6px;
}

.service-hero-image-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  padding: 18px;
}

.service-hero-image-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.service-section {
  padding: 100px 0;
}

.service-soft-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.service-feature-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
}

.service-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-feature-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.service-image-block {
  background: #fff;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-list-item i {
  font-size: 20px;
  color: #8b5cf6;
  margin-top: 4px;
}

.service-list-item h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.service-list-item p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.service-reason-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.service-reason-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-reason-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .service-hero-section {
    padding: 120px 0 70px;
  }

  .service-hero-content h1 {
    font-size: 2.6rem;
  }

  .service-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .service-hero-content h1 {
    font-size: 2.2rem;
  }

  .service-section {
    padding: 70px 0;
  }

  .service-mini-points {
    gap: 12px;
    flex-direction: column;
  }
}
/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.portfolio-filter-btn {
  border: none;
  background: #ffffff;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  border-color: transparent;
}

.portfolio-grid-section {
  padding: 20px 0 100px;
}

.portfolio-project-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  height: 100%;
  transition: all 0.35s ease;
}

.portfolio-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.portfolio-project-image {
  padding: 20px 20px 0;
}

.portfolio-project-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  background: #f8fbff;
}

.portfolio-project-content {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.08);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.portfolio-project-content h3 {
  font-size: 1.24rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.portfolio-project-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 18px;
}

.portfolio-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-meta-list li {
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-meta-list li i {
  color: #8b5cf6;
  font-size: 14px;
}

.portfolio-link {
  text-decoration: none;
  font-weight: 600;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.portfolio-link:hover {
  color: #4338ca;
}

.portfolio-link:hover i {
  transform: translateX(3px);
}

.portfolio-item {
  transition: all 0.35s ease;
}
@media (max-width: 991px) {
  .portfolio-grid-section {
    padding: 10px 0 80px;
  }
}

@media (max-width: 767px) {
  .portfolio-project-card {
    border-radius: 22px;
  }

  .portfolio-project-image {
    padding: 16px 16px 0;
  }

  .portfolio-project-content {
    padding: 20px;
  }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-info-section{
    padding: 30px 0 40px;
}

.contact-info-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:24px;
    padding:28px 24px;
    height:100%;
    box-shadow:0 14px 35px rgba(15,23,42,0.05);
    transition:all .3s ease;
}

.contact-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(15,23,42,0.08);
}

.contact-info-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.12));
    color:#4f46e5;
    font-size:22px;
    margin-bottom:18px;
}

.contact-info-card h3{
    font-size:1.2rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.contact-info-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:14px;
}

.contact-info-card a,
.contact-info-card span{
    color:#4f46e5;
    text-decoration:none;
    font-weight:600;
}

.contact-form-section{
    padding: 40px 0 100px;
}

.contact-form-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:30px;
    padding:34px;
    box-shadow:0 18px 45px rgba(15,23,42,0.06);
    height:100%;
}

.contact-form-header{
    margin-bottom:28px;
}

.contact-form-header h2{
    font-size:2rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
}

.contact-form-header p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.modern-contact-form .form-label{
    font-weight:600;
    color:#0f172a;
    margin-bottom:10px;
}

.modern-input{
    border-radius:16px;
    border:1px solid rgba(15,23,42,0.08);
    padding:15px 16px;
    min-height:56px;
    box-shadow:none !important;
    color:#0f172a;
    background:#fff;
}

.modern-input:focus{
    border-color:#8b5cf6;
    box-shadow:0 0 0 4px rgba(139,92,246,0.08) !important;
}

.modern-textarea{
    min-height:160px;
    resize:none;
}

.contact-submit-btn{
    padding-left:28px;
    padding-right:28px;
}

.contact-side-wrap{
    display:flex;
    flex-direction:column;
    gap:20px;
    height:100%;
}

.contact-side-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:28px;
    padding:28px;
    box-shadow:0 16px 40px rgba(15,23,42,0.06);
}

.contact-side-card h3{
    font-size:1.35rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.contact-side-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:18px;
}

.contact-points{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-points li{
    color:#475569;
    display:flex;
    align-items:flex-start;
    gap:10px;
    line-height:1.7;
}

.contact-points li i{
    color:#8b5cf6;
    margin-top:4px;
}

.gradient-card{
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(139,92,246,0.22), transparent 35%),
        linear-gradient(135deg, #0f172a, #1e1b4b);
    border:none;
}

.gradient-card h3,
.gradient-card p{
    color:#fff;
}

.light-badge{
    background:rgba(255,255,255,0.12);
    color:#fff;
}

.contact-whatsapp-btn{
    background:#fff;
    color:#0f172a;
    border-radius:999px;
    padding:13px 24px;
    font-weight:700;
    border:none;
}

.contact-whatsapp-btn:hover{
    background:#f8fafc;
    color:#0f172a;
}

.contact-faq-section{
    padding: 0 0 100px;
}

.contact-faq-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:24px;
    padding:26px;
    box-shadow:0 12px 30px rgba(15,23,42,0.05);
    height:100%;
}

.contact-faq-card h3{
    font-size:1.12rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
    line-height:1.5;
}

.contact-faq-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

@media (max-width: 991px){
    .contact-form-section{
        padding: 30px 0 80px;
    }

    .contact-form-card,
    .contact-side-card{
        border-radius:24px;
    }

    .contact-form-header h2{
        font-size:1.8rem;
    }
}

@media (max-width: 767px){
    .contact-info-section{
        padding: 20px 0 30px;
    }

    .contact-form-card{
        padding:24px;
    }

    .contact-side-card{
        padding:24px;
    }

    .contact-faq-section{
        padding:0 0 70px;
    }

    .contact-form-header h2{
        font-size:1.6rem;
    }
}
/* =========================
   SERVICES OVERVIEW PAGE
========================= */

.services-overview-section{
    padding: 10px 0 100px;
}

.service-overview-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:26px;
    padding:28px;
    height:100%;
    box-shadow:0 14px 35px rgba(15,23,42,0.05);
    transition:all .32s ease;
}

.service-overview-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 50px rgba(15,23,42,0.09);
}

.service-overview-card h3{
    font-size:1.22rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.service-overview-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:18px;
}

.service-overview-link{
    text-decoration:none;
    font-weight:600;
    color:#4f46e5;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:.2s ease;
}

.service-overview-link:hover{
    color:#4338ca;
}

.service-overview-link:hover i{
    transform:translateX(3px);
}

.service-category-card{
    background:#fff;
    border:1px solid rgba(15,23,42,0.06);
    border-radius:26px;
    padding:28px;
    height:100%;
    box-shadow:0 12px 30px rgba(15,23,42,0.05);
}

.service-category-card h3{
    font-size:1.2rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.service-category-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

@media (max-width: 991px){
    .services-overview-section{
        padding: 10px 0 80px;
    }
}

@media (max-width: 767px){
    .service-overview-card,
    .service-category-card{
        border-radius:22px;
    }
}
.custom-pagination .page-item {
    margin: 0 4px;
}

.custom-pagination .page-link {
    border: none;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: #f8fafc;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    font-weight: 600;
    transition: all 0.25s ease;
}

.custom-pagination .page-link:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}
.blog-detail-hero {
    padding-bottom: 30px;
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-detail-content p {
    margin-bottom: 1.2rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 1.5rem 0;
}

.blog-detail-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    color: #475569;
    margin: 1.5rem 0;
}

.blog-detail-content a {
    color: #2563eb;
    text-decoration: none;
}

.blog-detail-content a:hover {
    text-decoration: underline;
}