@import url('https://fonts.googleapis.com/css2?family=Hubot+Sans:ital,wght@0,200..900;1,200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --font-primary: "Hubot Sans", sans-serif;

  --color-white: #ffffff;
  --color-text-light: rgba(255, 255, 255, 0.82);
  --color-border: rgba(255, 255, 255, 0.14);

  /* --color-primary: #7c3aed; */
  --color-primary: #0e1b29;
  --color-primary-hover: #6d28d9;
  /* --color-secondary: #06b6d4; */
  --color-secondary: #40ba87;
   
  --header-bg: rgba(255, 255, 255, 0.08);
  --header-border: rgba(255, 255, 255, 0.12);
  --overlay-dark: rgba(4, 6, 15, 0.58);
  --overlay-gradient: linear-gradient(
    90deg,
    rgba(3, 7, 18, 0.82) 0%,
    rgba(7, 10, 24, 0.66) 35%,
    rgba(8, 10, 20, 0.35) 65%,
    rgba(8, 10, 20, 0.18) 100%
  );

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: #000;
  color: var(--color-white);
}

/* Utility Classes */
.cursor-pointer {
  cursor: pointer;
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.site-header .navbar {
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  width: 12rem;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 10px;
}

.custom-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.menu-toggle {
  color: var(--color-white);
  z-index: 1001;
  transition: var(--transition);
  line-height: 1;
}

.menu-toggle:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

/* =========================
   Hero Section
========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* Makes image cover full area nicely */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-gradient), var(--overlay-dark);
  z-index: 1;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 700px;
  padding-top: 90px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -1.4px;
}

.hero-text p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-outline-custom {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* =========================
   Sidebar Overlay
========================= */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 1098;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   Sidebar Menu
========================= */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90%);
  height: 100vh;
  background: rgba(10, 12, 24, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  z-index: 1099;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 30px;
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.sidebar-logo {
  width: 9rem;
  display: inline-block;
}

.sidebar-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.sidebar-nav li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.45s ease;
}

.sidebar-menu.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-menu.active .sidebar-nav li:nth-child(1) {
  transition-delay: 0.08s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(2) {
  transition-delay: 0.14s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(3) {
  transition-delay: 0.2s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(4) {
  transition-delay: 0.26s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(5) {
  transition-delay: 0.32s;
}

.sidebar-menu.active .sidebar-nav li:nth-child(6) {
  transition-delay: 0.38s;
}

.sidebar-nav li + li {
  margin-top: 8px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
  background: transparent;
  text-transform: uppercase;
}

.sidebar-footer {
  padding-top: 20px;
}

body.sidebar-open {
  overflow: hidden;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {


  .brand-logo {
    width: 10rem;
  }

  .hero-text {
    padding-top: 100px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 767.98px) {

  .brand-logo {
    width: 8.8rem;
  }

  .menu-toggle {
    font-size: 1.7rem !important;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-text {
    max-width: 100%;
    padding-top: 110px;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
  }

  .hero-text p {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .btn-outline-custom {
    padding: 12px 24px;
    font-size: 0.92rem;
  }
}

@media (max-width: 576px) {

  .brand-logo {
    width: 8rem;
  }

  .sidebar-menu {
    width: 100%;
    padding: 20px 18px 24px;
  }

  .sidebar-header {
    margin-bottom: 30px;
  }

  .sidebar-nav a {
    font-size: 1rem;
    padding: 13px 14px;
  }

  .sidebar-close {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .hero-text {
    padding-top: 105px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }
}

/* =========================
   About Agency Section
========================= */
.about-agency-section {
  position: relative;
  background: #f3f3f3;
  padding: 110px 0;
  overflow: hidden;
}

.about-agency-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
  z-index: 2;
}

.about-agency-content {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  z-index: 3;
}

.about-agency-title {
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -2px;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.custom-dot {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: 12px;
  vertical-align: middle;
}
.about-dot {
  background: var(--color-primary);
}

.about-agency-text {
  font-size: 1.15rem;
  line-height: 1.95;
  font-weight: 400;
  color: #555555;
  max-width: 860px;
  margin: 0;
}

.about-agency-video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.about-bg-text {
  position: absolute;
  left: 22%;
  bottom: 20px;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 31, 31, 0.12);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1199.98px) {
  .about-agency-wrapper {
    gap: 50px;
  }

  .about-agency-content {
    flex: 0 0 56%;
    max-width: 56%;
  }

  .about-agency-image-box {
    flex: 100%;
    max-width: 100%;
  }

  .about-bg-text {
    left: 18%;
    bottom: 35px;
  }
}

@media (max-width: 991.98px) {
  .about-agency-section {
    padding: 90px 0;
  }

  .about-agency-wrapper {
    flex-direction: column;
    gap: 45px;
  }

  .about-agency-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-agency-title {
    margin-bottom: 40px;
  }

  .about-agency-text {
    max-width: 100%;
  }

  .about-agency-video {
    height: 420px;
  }

  .about-bg-text {
    left: 0;
    bottom: 10px;
    font-size: clamp(5rem, 16vw, 10rem);
    letter-spacing: -4px;
  }
}

@media (max-width: 767.98px) {
  .about-agency-section {
    padding: 70px 0;
  }

  .about-agency-title {
    font-size: 2.8rem;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
  }

  .custom-dot {
    width: 22px;
    height: 22px;
    margin-left: 8px;
  }

  .about-agency-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-agency-video {
    height: 320px;
    border-radius: 22px;
  }

  .about-bg-text {
    font-size: 4.2rem;
    bottom: 0;
    -webkit-text-stroke: 1px rgba(31, 31, 31, 0.1);
  }
}

@media (max-width: 575.98px) {
  .about-agency-section {
    padding: 60px 0;
  }

  .about-agency-title {
    font-size: 2.35rem;
    line-height: 1;
  }

  .about-agency-text {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .about-agency-video {
    height: 260px;
    border-radius: 18px;
  }

  .about-bg-text {
    font-size: 3.2rem;
    letter-spacing: -2px;
  }
}

/* =========================
   Services Section
========================= */
.services-section {
  background: #0e1b29;
  padding: 60px 0; /* reduced */
}

/* Header */
.services-header {
  max-width: 600px;
  margin-bottom: 40px; /* reduced */
}

.services-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem); /* smaller */
  font-weight: 800;
  margin-bottom: 10px;
}

.services-dot {
  background: #fff;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 FIXED */
  gap: 16px;
}

/* Card */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 14px;
  padding-top: 14px;
  border-radius: 14px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect (fixed) */
.service-card::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: radial-gradient( circle at top left, #beead88f, transparent ); 
  opacity: 0; 
  transition: 0.4s ease; 
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* Hover */
.service-card:hover {
  transform: translateY(-6px); /* smaller movement */
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon */
.service-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.service-heading {
  margin-left: 15px;
}
/* Title */
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Text */
.service-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .services-section {
    padding: 50px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonial-section {
  background: #ffffff;
  padding: 15px 0;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.testimonial-inner {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  padding: 20px 40px 20px 80px;
}

.testimonial-quote-mark {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 215px;
  line-height: 1;
  font-weight: 900;
  color: #40ba87 ;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  color: #303030;
  font-size: 40px;
  line-height: 1.1em;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 0;
}

.testimonial-accent-line {
  width: 95px;
  height: 4px;
  background: #40ba87 ;
  margin: 28px 0 28px 0;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.85rem);
  font-style: italic;
  color: #474747;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #2d2d2d;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  padding: 8px 14px;
}

.testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  opacity: 0.8;
}

.testimonial-arrow-left {
  left: 10px;
}

.testimonial-arrow-right {
  right: 10px;
}

@media (max-width: 1200px) {
  .testimonial-container {
    padding: 0 70px;
  }

  .testimonial-inner {
    padding: 20px 30px 20px 70px;
  }

  .testimonial-quote-mark {
    font-size: 170px;
    left: 10px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 80px 0 110px;
  }

  .testimonial-container {
    padding: 0 20px;
  }

  .testimonial-inner {
    padding: 10px 10px 10px 38px;
  }

  .testimonial-quote-mark {
    font-size: 100px;
    left: 0;
    top: -5px;
  }

  .testimonial-arrow {
    top: auto;
    bottom: -70px;
    transform: none;
    font-size: 34px;
  }

  .testimonial-arrow:hover {
    transform: scale(1.06);
  }

  .testimonial-arrow-left {
    left: 35%;
  }

  .testimonial-arrow-right {
    right: 35%;
  }

  .testimonial-text {
    font-size: 50px;  /* reduce size */
    line-height: 1.2;
    
    -webkit-line-clamp: 8; /* fewer lines on mobile */
    /* ADD THIS 👇 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* =========================
   Blog Section
========================= */
.blog-section {
  background: #0e1b29;
  padding: 50px 0;
  position: relative;
}

.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 18%,
    rgba(255, 255, 255, 0.02) 36%,
    rgba(255, 255, 255, 0) 54%,
    rgba(255, 255, 255, 0.02) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  opacity: 0.35;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}

.blog-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 12px;
}

.blog-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

.blog-dot {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.65);
}

.blog-header-btn {
  white-space: nowrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.blog-card {
  position: relative;
  padding: 28px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: all 0.35s ease;
  overflow: hidden;
  min-height: 100%;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  pointer-events: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.blog-card-featured {
  background:
    linear-gradient(
      180deg,
      rgba(124, 58, 237, 0.13),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(255, 255, 255, 0.05);
}

.blog-card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.28),
    transparent 68%
  );
  pointer-events: none;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
  position: relative;
  z-index: 1;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

.blog-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.blog-card-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.blog-read-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: #ffffff;
  opacity: 0.92;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* optional smooth spacing if custom-dot class not defined visually elsewhere */
.custom-dot {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .blog-section {
    padding: 90px 0;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-card-featured {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-card-text {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .blog-meta {
    gap: 12px;
    font-size: 0.82rem;
  }
}

/* =========================
   Light Contact Section
========================= */
.contact-light-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-light-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-light-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-light-wrapper {
  position: relative;
  z-index: 1;
}

.contact-light-info {
  padding: 20px 10px 20px 0;
}

.contact-light-subtitle {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7c3aed;
  text-transform: uppercase;
}

.contact-light-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 18px;
}

.contact-light-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 30px;
  max-width: 500px;
}

.contact-light-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-light-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.contact-light-detail-item h6 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.contact-light-detail-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-light-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at top left,
    var(--color-secondary),
    transparent
  );
  color: #fff;
  font-size: 1.1rem;
}

.contact-light-form-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-light-label {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

.contact-light-input {
  border-radius: 14px;
  border: 1px solid #dbe4ee;
  background: #f8fafc;
  min-height: 54px;
  padding: 14px 16px;
  font-size: 0.96rem;
  color: #0f172a;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-light-input:focus {
  border-color: var(--color-secondary);
  background: #ffffff;
}

.contact-light-input::placeholder {
  color: #94a3b8;
}

.contact-light-textarea {
  min-height: 160px;
  resize: none;
}

.contact-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: radial-gradient(
    circle at top left,
    var(--color-secondary),
    transparent
  );
  transition: all 0.3s ease;
}

.contact-light-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .contact-light-section {
    padding: 90px 0;
  }

  .contact-light-info {
    padding: 0;
  }

  .contact-light-form-card {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .contact-light-title {
    font-size: 2rem;
  }

  .contact-light-form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-light-detail-item {
    padding: 16px;
    border-radius: 16px;
  }

  .contact-light-input {
    min-height: 50px;
    padding: 12px 14px;
  }

  .contact-light-btn {
    width: 100%;
  }
}

/* =========================
   Simple Footer
========================= */
.footer-simple {
  position: relative;
  background: #0e1b29;
  color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

.img-footer {
  height: 20%;
  width: 40%;
  padding-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 280px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

/* LEFT */
.footer-left {
  max-width: 320px;
}

.footer-policy {
  display: inline-block;
  margin-top: 10px;
  color: aquamarine;
  text-decoration: none;
  font-size: 0.9rem;
}

/* RIGHT */
.footer-right {
  max-width: 400px;
}

.footer-right h6 {
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-location p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  background: #ffffff;
}
/* Responsive */
@media (max-width: 767.98px) {
   .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-left,
  .footer-right {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================
   Privacy Policy
========================= */

.privacy-section {
  padding: 80px 0;
  background: #f8fafc;
}

.privacy-wrapper {
  max-width: 850px;
  margin: auto;
}

.privacy-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: #293c56;
}

.privacy-date {
  color: #64748b;
  margin-bottom: 25px;
  color: #293c56;
}

.privacy-company {
  margin-bottom: 20px;
  color: #293c56;
}

.privacy-block {
  color: #293c56;
  margin-bottom: 30px;
}

.privacy-block h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #293c56;
  margin-bottom: 10px;
}

.privacy-block p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-block ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.privacy-block li {
  margin-bottom: 6px;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 0;
  }

  .privacy-title {
    color: #293c56;
    font-size: 1.8rem;
  }
}

/* =========================
   Clients Section
========================= */

.clients-section {
  padding: 40px 0;
  background: #ffffff;
}

/* Heading */
.clients-header h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:var(--color-primary);
  margin-bottom: 30px;
  font-weight: 800;
}

/* Logos */
.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Each logo */
.client-item {
  opacity: 1;
  transition: all 0.3s ease;
}

.client-item img {
  max-height: 40px;
  width: auto;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

/* Hover effect */
.client-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.10);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-logos {
    gap: 30px;
  }

  .client-item img {
    max-height: 32px;
  }
}