@import url('reset.css');
@import url('variables.css');
@import url('typography.css');
@import url('utilities.css');

/* ============ BODY SCROLL LOCK ============ */

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-slow);
  border: 1px solid transparent;
  font-family: var(--font-primary);
}

/* Primary Button */
.btn-primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-primary.gradient {
  background: var(--gradient-btn);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Secondary Button */
.btn-secondary {
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-100);
  color: var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-primar);
  color: var(--color-white);
}

/* Stroked Button */
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-gray-100);
  color: var(--color-gray-100);
}

.btn-outline:hover {
  background: var(--color-gray-100);
  color: var(--color-black);
}

/* Small Button */
.btn-sm {
  padding: 8px 16px;
}

/* Rounded button */

.btn-rounded {
  border-radius: var(--radius-full);
}

.btn-block {
  width: 100%;
}

.contact-actions {
  display: flex;
  gap: 24px;
}

.btn-contact {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  line-height: 1.5;
  padding: 13px 16px;
  border-radius: 6px;
  background-color: var(--color-primary-700);
  color: var(--color-white);
  transition: var(--transition-medium);
}

.btn-contact:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(123, 44, 191, 0.20);
}

.btn-contact img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-contact::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url("../images/arrow-upright-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 18px;
  right: 16px;
  transition: var(--transition-medium);
}

.btn-contact:hover::after {
  transform: translate(4px, -4px);
}


/* Header */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid rgb(168, 85, 247, 0.6);
}

.site-header.header-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header.header-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
}

.header-logo img {
  max-height: 54px;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-menu>li>a {
  font-size: 18px;
  color: var(--color-foreground);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

/* CTA */
.header-cta {
  display: flex;
  gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* =========================
   DROPDOWN MENU (GLASS)
========================= */

.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.has-dropdown::after {
  content: "";
  width: 10px;
  height: 8px;
  background-image: url("../images/angle-bottom-light.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-medium);
}

.has-dropdown:hover::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  padding: 16px;
  border-radius: 16px;
  background: rgb(47 0 84 / 88%);
  backdrop-filter: blur(150px);
  -webkit-backdrop-filter: blur(150px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 40px;
}

.dropdown a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  border-radius: 6px;
  transition: 0.2s ease;
}

.dropdown a:hover {
  background: var(--gradient-btn);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* =========================
   MOBILE DRAWER
========================= */

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 30, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: rgb(11 11 30 / 70%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 90px 24px 24px;
  transform: translateX(100%);
  transition: var(--transition-slow);
  overflow: auto;
}

.mobile-drawer.active .drawer-inner {
  transform: translateX(0);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.drawer-item:not(:last-child) {
  border-bottom: 1px solid white;
  padding-bottom: 14px;
}

.drawer-item span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.drawer-sub a {
  display: block;
  padding: 6px 0;
  color: #cfcfe8;
}

.drawer-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   TOGGLE ANIMATION
========================= */

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: sticky;
  top: 0;
  padding-block: 168px 100px;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 12px 41.3px 0px rgba(142, 30, 154, 0.24);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(11.38deg, #000000 10.66%, rgba(0, 0, 0, 0.24) 89.24%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1032px;
  padding: 0 16px;
  color: var(--color-foreground);
}

.hero-content .hero-title {
  color: var(--color-foreground);
  margin-bottom: 24px;
}

.hero-content .hero-subtitle {
  color: var(--color-foreground);
  margin-bottom: 0;
  margin-top: 80px;
  font-weight: 400;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-cta .btn {
  min-width: 220px;
}

.after-parallax {
  background-color: var(--color-gray-100);
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Brands Listing */

.bg-dots-downwards {
  background-image: url("../images/dots-downwards.svg");
  background-position: top;
  background-repeat: repeat-x;
}

.brands-listing {
  padding-inline: 24px;
}

.brands-listing ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   FEATURED SECTION
========================= */

.featured-wrapper {
  width: 100%;
  padding: 20px 0;
  background-color: var(--color-white);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Each slide */

.featured-section .featured-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-swiper .swiper-wrapper {
  display: flex;
}

.featured-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.featured-section .featured-card img {
  transition: var(--transition-medium);
}

.featured-section .featured-card:hover img {
  transform: scale(1.10);
}

/* =========================
   PARTNERSHIP SECTION
========================= */

/* Glass Card */
/* .partnership-card {
  width: 100%;
  padding: 40px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
} 
.partnership-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #9D4EDD, #F72585, #3A0CA3);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
} 
 .partnership-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(123,44,191,0.35);
} */


.partnership-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.7);
}

.partnership-section .section-inner {
  position: relative;
  padding: 85px 32px;
  background: url("../images/marubeni-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.partnership-section .partnership-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.partnership-section .partnership-content img {
  max-height: 36px;
}

.partnership-section h2 {
  font-size: var(--h4-size);
  line-height: 1.35;
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
}

.partnership-section a {
  color: #E60012;
}

.partnership-section .partnership-card {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  max-width: 760px;
  margin: 0 auto;
}

.partnership-section .partnership-card p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0;
}

/* =========================
   FEATURE / BENEFITS SECTION
========================= */

.feature-section {}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.feature-card {
  background: linear-gradient(240.36deg, #FFFFFF 46.87%, #DABBF5 226.92%);
  border-radius: var(--radius-lg);
  padding: 20px 24px 44px;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.05); */
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient border */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(69.14deg, #FFFFFF -7.01%, #A855F7 136.61%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-slow);
}


.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 36px rgba(123, 44, 191, 0.20);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon */
.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.feature-card .feature-card-title {
  margin-bottom: 24px;
  color: var(--color-text-primary);
  min-height: 58px;
}

.feature-card ul {
  margin-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-card ul li {
  font-size: 18px;
}

.feature-card ul li::marker {
  font-size: 16px;
}

/* =========================
   COMPONENTS & SYSTEMS SECTION (BASE + ANIMATIONS)
========================= */

.components-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.component-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(240.36deg, #FFFFFF 46.87%, #DABBF5 226.92%);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.component-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(69.14deg, #FFFFFF -7.01%, #A855F7 136.61%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: var(--transition-slow);
}

/* Glow overlay */
.component-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(157, 78, 221, 0.25), transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

.component-card:hover::before {
  opacity: 0.9;
}

.component-card:hover::after {
  opacity: 0.7;
}

.component-card:hover {
  transform: translateY(-10px) scale(1.010);
  box-shadow: 0 20px 36px rgba(123, 44, 191, 0.20);
}

.component-icon {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.component-card:hover .component-icon {
  transform: scale(1.1) rotate(-4deg);
}

.component-icon:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  right: 50%;
  position: absolute;
  z-index: -1;
  border-radius: 100px;
  background: transparent;
  backdrop-filter: blur(100px);
  box-shadow: 0px 0px 44px 32px rgb(142 30 154);
}

.component-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.component-content h4 {
  transition: var(--transition-slow);
}

.component-arrow {
  font-size: 20px;
  color: #9D4EDD;
  transition: var(--transition-slow);
  opacity: 0.7;
}

/* Arrow Animation */
.component-card:hover .component-arrow {
  transform: translateX(10px) scale(1.1);
  opacity: 1;
}

/* =========================
   VENDOR ECOSYSTEM SECTION
========================= */

/* .vendor-section {
  overflow: hidden;
} */

/* Vendor item */
.vendor-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.vendor-item img {
  max-width: 100%;
}

.vendor-center {
  width: 200px;
  height: 234px;
  box-shadow: 0px 0px 144px 57px #D8B4FE;
  background: rgb(216 180 254 / 68%);
  border-radius: 999px;
  padding: 28px;
  border: 2px solid #c9c9c9;
  text-align: center;
}

.see-all-link {
  position: absolute;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.see-all-link a {
  color: #1E40AF;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 6px;
}

.see-all-link a:hover {
  text-decoration: none;
}

.vendor-orbit-v0 {
  position: relative;
  width: 390px;
  height: 390px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #c9c9c9;
}

.vendor-orbit {
  width: 894px;
  margin: 0 auto;
}

.vendor-orbit-v1 {
  position: relative;
  width: 630px;
  height: 630px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #c9c9c9;
}

.vendor-orbit-v2 {
  position: relative;
  width: 894px;
  height: 894px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #c9c9c9;
  margin-bottom: -447px;
}

.vendor-orbit-v2-inner {
  position: absolute;
  inset: 0;
  animation: orbitClock 10s ease-in-out infinite;
}


.vendor-orbit-v1-inner {
  position: absolute;
  inset: 0;
  animation: orbitAntiClock 10s ease-in-out infinite;
}

.vendor-orbit-v0-inner {
  position: absolute;
  inset: 0;
  animation: orbitClock 10s ease-in-out infinite;
}

@keyframes orbitClock {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }
}

@keyframes orbitClock {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }
}

@keyframes orbitAntiClock {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-20deg);
  }
}

@keyframes orbitClock360 {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }
}

@keyframes orbitAntiClock360 {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-360deg);
  }
}

/* Positions */
.vendor-item.v1 {
  top: calc(50% - 120px);
  left: -36px;
}

.vendor-item.v2 {
  top: calc(50% - 120px);
  right: -26px;
}

.vendor-item.v3 {
  top: calc(50% - 90px);
  left: -10px;
  transform: translateX(-50%);
}

.vendor-item.v4 {
  top: calc(50% - 200px);
  left: -16px;
}

.vendor-item.v5 {
  top: -18px;
  left: 180px;
}

.vendor-item.v6 {
  top: -10px;
  right: 180px;
}

.vendor-item.v7 {
  top: 80px;
  right: 28px;
}

.vendor-item.v8 {
  top: calc(50% - 54px);
  right: -44px;
}

.vendor-item.v9 {
  top: calc(50% - 174px);
  left: 8px;
  transform: translateX(-50%);
}

.vendor-item.v10 {
  top: 154px;
  left: 0px;
}

.vendor-item.v11 {
  top: 90px;
  left: 100px;
}

.vendor-item.v12 {
  top: 14px;
  left: 230px;
}

.vendor-item.v13 {
  top: -10px;
  right: calc(50% - 128px);
}

.vendor-item.v14 {
  top: 55px;
  right: 154px;
}

.vendor-item.v15 {
  top: 134px;
  right: 58px;
}

.vendor-item.v16 {
  top: calc(50% - 115px);
  right: -94px;
  transform: translateX(-50%);
}

/* =========================
   INFO CARDS (WHO WE ARE) – FIGMA MATCHED
========================= */

.info-cards-section {
  position: relative;
}

.info-cards-dots {
  width: 100%;
  height: 178px;
  position: absolute;
  bottom: 74px;
  left: 0;
  right: 0;
  background-image: url("../images/dots-upwards.svg");
  background-repeat: repeat-x;
  background-position: bottom;
}

.transparent-overlay {
  opacity: 0.85;
  background: var(--gradient-primary);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.info-cards-section .section-inner {
  position: relative;
  z-index: 1;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


#applyPopup form .quote-form .form-group {
    margin-bottom: 14px;
}
#applyPopup form .quote-form .form-action {
    display: inline-block;
}
#applyPopup form .quote-form input {
    border: solid 1px #ddd;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    border: none;
    background: #8e1e9a;
    cursor: pointer !important;
    border-radius: 100px;
    padding: 0 10px;
    color: #fff;
    line-height: 10px;
    width: 40px;
    height: 40px;
}
 
/* =========================
   CARD BASE
========================= */

.info-card {
  background: #F3F4F6;
  border-radius: var(--radius-lg);
  padding: 14px 14px 32px;
  box-shadow: 0 12px 30px rgba(123, 44, 191, 0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-slow);
}

/* Gradient border */
.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #F3E8FF 19.79%, #9333EA 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.45;
  transition: var(--transition-slow);
}

/* Glow overlay */
.info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(157, 78, 221, 0.25), transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

.info-card:hover::before {
  opacity: 0.9;
}

.info-card:hover::after {
  opacity: 1;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(123, 44, 191, 0.20);
}

.info-card-media {
  border-radius: 14px;
  overflow: hidden;
  height: 178px;
  margin-bottom: 24px;
}

.info-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.info-card:hover .info-card-media img {
  transform: scale(1.08);
}

/* =========================
   BODY
========================= */

.info-card-body .info-card-title {
  margin-bottom: 12px;
  transition: var(--transition-medium);
}

.info-card-body p {
  font-size: 16px;
  transition: var(--transition-medium);
  margin-bottom: 0;
}

/* =========================
   MICRO INTERACTIONS
========================= */

.info-card-body {
  transition: var(--transition-slow);
}

.info-card:hover .info-card-body {
  transform: translateY(-4px);
}

/* =========================
   NEWS & UPDATES SECTION
========================= */

.news-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  position: relative;
}

.news-link {
  padding: 14px 14px 20px;
  display: block;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(123, 44, 191, 0.10);
  transition: var(--transition-slow);
  position: relative;
}

/* Gradient border */
.news-link::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #F3E8FF 19.79%, #9333EA 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: var(--transition-slow);
}

/* Hover glow */
.news-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(157, 78, 221, 0.25), transparent 60%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}

.news-link:hover::before {
  opacity: 0.9;
}

.news-link:hover::after {
  opacity: 1;
}

.news-link:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 40px rgba(123, 44, 191, 0.20);
}

.news-media {
  position: relative;
  height: 178px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.news-link:hover .news-media img {
  transform: scale(1.1) rotate(0.5deg);
}

.news-body {
  padding: 14px 0 0;
  text-align: left;
  transition: var(--transition-slow);
}

.news-link:hover .news-body {
  transform: translateY(-4px);
}

.news-body .news-title {
  margin-bottom: 14px;
  transition: var(--transition-medium);
}

.news-body p {
  margin-bottom: 14px;
  transition: var(--transition-medium);
}

.news-link:hover .news-body h4 {
  color: #9D4EDD;
}

.news-link:hover .news-body p {
  color: #4A4A6A;
}

/* CTA */
.news-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.news-cta::after {
  content: '→';
  margin-left: 6px;
  display: inline-block;
  transition: var(--transition-medium);
}

.news-link:hover .news-cta::after {
  transform: translateX(6px);
}

/* =========================
   MICRO INTERACTIONS
========================= */

.news-card:hover .news-tag {
  background: #9D4EDD;
  color: #FFFFFF;
}

/* =========================
   REQUEST A QUOTE SECTION
========================= */

.quote-section {
  position: relative;
  padding: 84px 0 132px;
  background: url("../images/get-quote-bg.png");
  background-color: var(--color-black);
  background-position: bottom;
  background-position-y: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: floatCard 12s ease-in-out infinite;
}

/* =========================
   FORM CARD
========================= */

.quote-card {
  width: 100%;
  max-width: 664px;
  margin: 0 auto;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  padding: 32px;
}

@keyframes floatCard {

  0%,
  100% {
    background-position-y: 100px;
  }

  50% {
    background-position-y: 50px;
  }
}

.quote-title {
  text-align: center;
  margin-bottom: 28px;
  color: #3A0CA3;
}

/* =========================
   GLOBAL FORM ELEMENTS
========================= */

.form-group {
  position: relative;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 16px;
  line-height: 1.5;
  color: #1F2937;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.form-group.is-required sup {
  color: #E43434;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 17px 16px;
  border-radius: 10px;
  border: 1px solid #E3DAF5;
  background: #F9F7FF;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-primary);
  transition: var(--transition-medium);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9C89C8;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #9D4EDD;
  box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.15);
}

.form-textarea {
  resize: none;
}

.form-action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-submit {
  min-width: 229px;
  margin: 0 auto;
}

.wpcf7 form .wpcf7-response-output{
    /* position: fixed;
    top: 120px; */
    right: 0;
    background: #134286;
    border: 0;
    color: #FFF;
    padding: 10px 16px !important;
    margin: 0 !important;
    border-left: 5px solid transparent !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 999;
    font-weight: 500;
    font-size: 14px;
    max-width: 90%;
    transition: var(--transition-medium);
    margin-top: 20px !important;
}

body.header-hide .wpcf7 form .wpcf7-response-output{
    top: 24px;
}

.wpcf7 form.sent .wpcf7-response-output{
    background: #46b450;
    border-color: #00a70f !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #dc3232;
	border-color: #bb0a0a !important; 
}

.wpcf7 form.spam .wpcf7-response-output {
    background: #f56e28;
	border-color: #d14f0b !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #fdf0ce;
    border-color: #d99e03 !important;
    color: #c18d06;
}

.wpcf7 .wpcf7-not-valid-tip{
  font-size: 14px;
  margin-top: 4px;
}

.wpcf7 form .wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

/* =========================
   CUSTOM SELECT ARROW
========================= */

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background:#F9F7FF url('../images/angle-bottom-dark.svg') no-repeat center;
  background-size: 14px;
  background-position: center right 14px;
  background-repeat: no-repeat;
}
 
.form-group::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #9D4EDD, #F72585);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 2px;
  display: none;
}

.form-group:focus-within::after {
  opacity: 1;
}

.form-group p, .form-action p {
  margin-bottom: 0;
}


/* =========================
   FOOTER STYLES
========================= */

.site-footer {
  padding: 70px 0 70px;
  background: url("../images/footer-bg.png") no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.footer-col {
  transition: transform 0.4s ease;
  flex: 1;
}

@media (min-width: 1025px) {
  .footer-col:hover {
    transform: translateY(-6px);
  }
}

.footer-block {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-links-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.footer-col.footer-contact {
  width: 100%;
  max-width: 260px;
  padding-left: 50px;
  border-left: 1px solid #D8B4FE;
  flex: auto;
}

.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}


/* Animated underline */
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9D4EDD, #F72585);
  transition: width 0.4s ease;
}

.footer-col:hover .footer-title::after {
  width: 40px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--color-black);
  font-size: 15px;
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

/* Link micro animation */
.footer-links a::before {
  content: '→';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 14px;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

footer .icon-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

footer .icon-row img {
  max-height: 18px;
  margin-top: 3px;
}

.footer-contact .contact-block {
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.footer-contact strong {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-contact a {
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-contact address {
  font-style: normal;
}

.footer-brand {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand.mobile {
  display: none;
}

/* ============== Page 2 (Defence Line Card) ============== */

.line-hero {
  position: relative;
  padding: 160px 0 0;
  background: radial-gradient(circle at top center, #3A0A6A 0%, #22003E 45%, #12001F 100%);
}

.line-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(157, 78, 221, 0.35), transparent 65%);
  pointer-events: none;
}

.line-hero-wrapper {
  max-width: 1700px;
  padding-inline: 60px;
  margin: 0 auto;
}

.line-hero-visual .swiper {
  height: 580px;
}

.line-hero-visual .swiper-slide {
  display: flex;
}

.line-hero-visual .hero-card {
  display: flex;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0px 0px 32px 0px #00000040;
}

.line-hero-visual .hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CONTENT
========================= */

.line-hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 914px;
  margin: 0 auto 60px;
  text-align: center;
}

.line-hero-title {
  font-weight: 700;
}

.line-hero-subtitle {
  color: var(--color-white);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 0;
}

.line-hero-visual {
  position: relative;
  z-index: 2;
  margin-top: -250px;
  bottom: -250px;
}

.faded-dots {
  width: 100%;
  height: 178px;
  background-image: url("../images/dots-downwards.svg");
  background-position: bottom;
  background-repeat: repeat-x;
}


/* =========== ORBIT ANIMATION SYSTEM =========== */

.orbit-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orbit {
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  animation: orbitRotate linear infinite;
  opacity: 0.35;
  filter: blur(0.2px);
  border: 1px solid var(--color-white);
}

.orbit-large {
  width: 1600px;
  max-width: 95%;
  aspect-ratio: 1;
  height: auto;
  transform: translate(-50%, 0);
  animation-duration: 60s;
}

.orbit-medium {
  top: 230px;
  width: 1200px;
  max-width: 65%;
  aspect-ratio: 1;
  height: auto;
  transform: translate(-50%, 0);
  animation-duration: 40s;
}

/* Rotation */
@keyframes orbitRotate {
  from {
    transform: translate(-50%, 0) rotate(0deg);
  }

  to {
    transform: translate(-50%, 0) rotate(360deg);
  }
}


/* ======== ORBIT DOTS ======== */

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #9D4EDD;
  border-radius: 50%;
  box-shadow:
    0 0 8px rgba(157, 78, 221, 0.8),
    0 0 16px rgba(157, 78, 221, 0.5);
}

/* Position dots around the circle */
.orbit-large .orbit-dot:nth-child(1) {
  left: auto;
  right: -5px;
}

.orbit-large .orbit-dot:nth-child(2) {
  left: -5px;
}

.orbit-large .orbit-dot:nth-child(3) {
  top: -5px;
}

.orbit-medium .orbit-dot:nth-child(1) {
  left: -5px;
}

.orbit-medium .orbit-dot:nth-child(2) {
  left: auto;
  right: -5px;
}

.orbit-medium .orbit-dot:nth-child(3) {
  top: auto;
  bottom: -5px;
}

.line-card-feature {
  margin-top: 140px;
}

.section-main-content {
  max-width: 950px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-main-content.left {
  margin: 0 0 32px;
  text-align: left;
}

.section-main-content .section-title {
  margin-bottom: var(--space-lg);
}

.section-main-content.left .section-title {
  text-align: left;
}

.section-main-content p {
  margin-bottom: 0;
}

.feature-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card.small {
  padding: 20px 16px 24px;
}

.feature-card.small .feature-card-title {
  font-size: 16px;
  margin-bottom: 8px;
  min-height: 0;
}

.feature-card.small p {
  font-size: 14px;
}

.line-card-feature .feature-card p {
  margin-bottom: 0;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translate(-50%, -52%);
  }

  50% {
    transform: translate(-50%, -48%);
  }
}


/* ========== BADGE GRID ========== */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-badge {
  position: relative;
  width: 100%;
  height: 180px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.trust-badge img {
  max-height: 156px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* Animated sweep line */
.trust-badge::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -120%;
  width: 240%;
  height: 240%;
  background: linear-gradient(120deg,
      transparent 45%,
      rgba(157, 78, 221, 0.05),
      transparent 55%);
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.trust-badge:hover::after {
  top: -40%;
  left: -40%;
}

/* Subtle compression + focus */
.trust-badge:hover {
  transform: translateY(-6px) scale(0.98);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.trust-badge:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* ============= ACCESSIBILITY & MOTION ============= */

@media (prefers-reduced-motion: reduce) {

  .trust-badge,
  .trust-badge::after,
  .trust-badge img {
    transition: none;
  }
}

/* ============== Page 3 PRODUCT CATALOGUE PAGE ============== */

.catalogue-section:not(.catalogue-single) {
  padding: 124px 0 64px;
  background: #F3F4F6;
}

.catalogue-inner-wrapper {
  padding: 30px 40px 44px;
  background-color: var(--color-gray-200);
}

.catalogue-header {
  margin-bottom: 32px;
}

.catalogue-title {
  margin-bottom: 8px;
}

.catalogue-filters {
  margin-bottom: 24px;
}

.catalogue-search {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  background-image: url("../images/search.svg");
  background-position: left 10px center;
  background-repeat: no-repeat;
}

.catalogue-search:focus {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.catalogue-search::placeholder {
  color: var(--color-gray-300);
}

/* ============ catalogue GRID ============ */

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px 20px;
}

.product-card {
  background: var(--color-gray-100);
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #94A3B8;
  transition: var(--transition-medium);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.product-card .product-media {
  height: 120px;
  width: 100%;
  background: #EFEFFD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.product-card:hover .product-media img {
  filter: grayscale(0);
}

.product-card .product-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  height: 56px;
  padding: 10px;
  background: var(--color-white);
  position: relative;
  margin-top: -28px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.product-card .product-logo img {
  max-height: 36px;
}

.product-card .product-body p {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-600);
}

.product-title {
  color: var(--color-gray-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-description {
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-gray-400);
}

.arrow-link::after {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("../images/arrow-upright.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-medium);
}

.arrow-link:hover{
  color: var(--color-primary-900);
}

.arrow-link:hover::after {
  transform: translate(2px, -2px);
  background-image: url("../images/arrow-upright-primary.svg");
}


.product-card .product-description {
  margin-bottom: 20px;
}

.product-card .product-meta p {
  color: var(--color-gray-800);
  margin-bottom: 0;
}

.dash-seperator {
  display: block;
  width: 100%;
  height: 2px;
  background-image: url("../images/dashed.svg");
  background-repeat: repeat-x;
  background-position-y: center;
  margin-block: 24px;
}

/* ========== PROMO BANNER ========== */

.catalogue-banner {
  text-align: center;
  padding: 24px 16px;
  background: #1E40AF;
  margin: 60px 0;
  display: flex;
  width: 100%;
  aspect-ratio: 29 / 9;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0px 12px 41.3px 0px rgba(142, 30, 154, 0.24);
}


/* ========================= map section ========================= */

.map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 420px;
}

/* ======== DOTTED WORLD MAP ======== */

.world-map {
  position: absolute;
  inset: 0;
  background-image: url('../images/world-map.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9D4EDD;
  position: relative;
  cursor: pointer;
}

/* Radar pulse */
.pin-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(157, 78, 221, 0.5);
  animation: pulse 2.5s infinite ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.pin-label {
  background: var(--color-white);
  backdrop-filter: blur(10px);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.35s ease;
  position: absolute;
  right: 100%;
  top: 100%;
  display: flex;
  flex-direction: column;
}

.map-pin:hover .pin-label {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   PIN POSITIONS (DESKTOP)
========================= */

.pin-usa {
  top: 42.9%;
  left: 23.5%;
}

.pin-india {
  top: 53.9%;
  left: 62.8%;
}

.pin-singapore {
  top: 61.7%;
  left: 67.7%;
}

/* ========= FLOATING MAP ANIMATION ========= */

.map-container {
  animation: mapFloat 8s ease-in-out infinite;
}

@keyframes mapFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========= About Page ========= */

.about-intro {
  padding-block: 164px 64px;
  background: var(--gradient-primary);
}

.contact-intro,
.blog-intro {
  padding-top: 164px;
}

/* ================= PARTNER BANNER ================= */
.partner-banner {
  position: relative;
  padding: 40px 64px;
  background: url("../images/promo-banner.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.partner-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.partner-banner-content {
  max-width: 500px;
}

.partner-banner .promo-title {
  font-weight: 700;
}

.partner-banner .btn {
  flex-shrink: 0;
}


/* ================= Career Message ================= */

.career-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 767px;
  margin: 0 auto;
}

/* ================= CONTACT GRID SECTION ================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.secondary-offices {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.contact-card {
  background: #F1F1F6;
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  position: relative;
  background: rgba(229, 231, 235, 0.5);
  transition: var(--transition-medium);

}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(123, 44, 191, 0.20);
}

.contact-card:hover::before {
  opacity: 1;
}

.location-image {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-card .flag {
  max-height: 135px;
}

.contact-card.small {
  padding: 22px 18px;
}

.contact-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card-inner p,
.contact-card-inner address,
.contact-card-inner a {
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
}

.contact-card .location-name {
  padding: 4px 10px;
  background: var(--color-gray-100);
  margin-bottom: 12px;
}

.location-title {
  font-weight: 700;
  display: block;
}

/* ================= SUBHEADING ================= */
.subheading {
  margin: 50px 0 20px;
  text-align: center;
  color: #7B2CBF;
}

/* ================= CTA ================= */
.contact-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .secondary-offices {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .contact-cards,
  .secondary-offices {
    grid-template-columns: 1fr;
  }
}

/* ================= BLOG PAGE ================= */

.blog-intro {
  padding-block: 164px 50px;
  background: var(--gradient-primary);
}

.blog-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 64px auto 0;
}

.blog-hero-bg {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 36, 0.4);
}

.blog-hero-content {
  gap: 20px;
  width: 100%;
  max-width: 800px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  z-index: 2;
  color: #fff;
  animation: heroFadeUp 0.8s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= TAG ================= */
.blog-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 6px;
  background: #4B6BFB;
  color: var(--color-white);
  margin-bottom: 16px;
}

/* ================= META ================= */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 20px;
}

.blog-meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta .author img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ================= BLOG GRID ================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ================= BLOG CARD ================= */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(123, 44, 191, 0.20);
}

.blog-card>a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.blog-card-image {
  border-radius: 6px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 8px;
}

.blog-card .blog-tag {
  color: #4B6BFB;
  background: rgba(75, 107, 251, 0.05);
}

.blog-card .blog-meta {
  flex-wrap: wrap;
  color: #97989F;
  font-size: 16px;
  line-height: 1.5;
  gap: 8px 20px;
}

.blog-card .author {
  gap: 12px;
}

.blog-card .author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .blog-intro {
    padding-block: 90px 50px;
  }

  .blog-hero-bg {
    height: 300px;
  }

  .blog-hero {
    margin: 32px auto 0;
  }

  .blog-hero-content {
    padding: 32px 20px;
  }

  .blog-grid {
    gap: 20px;
  }
}


/* ================= BLOG DETAIL PAGE ================= */

.blog-detail {
  background: #F6F6F7;
  padding: 64px 0 100px;
}

.blog-detail-wrapper {
  width: 100%;
  max-width: 832px;
  margin: 0 auto;
  padding: 0 16px;
}

/* BLOG HEADER */
.blog-header {
  text-align: left;
}

.blog-title {
  font-weight: 700;
}

.blog-meta {
  color: #696A75;
}

/* FEATURE IMAGE */
.blog-feature-image {
  margin-top: 32px;
}

.blog-feature-image img {
  width: 100%;
  height: 462px;
  object-fit: cover;
  border-radius: 16px;
}

/* BLOG CONTENT */
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #2E2E3A;
}

.blog-content p {
  line-height: 1.7;
}

.blog-content h1, 
.blog-content h2, 
.blog-content h3, 
.blog-content h4, 
.blog-content h5, 
.blog-content h6{
  margin-bottom: 16px;
  color: #181A2A;
}

.blog-content ul {
  padding-left: 20px;
}

.blog-content ul{
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 10px;
}

/* QUOTE */
.blog-quote {
  background: #F6F6F7;
  border-left: 4px solid #E8E8EA;
  padding: 24px 28px;
  border-radius: 12px;
  font-style: italic;
  font-size: 24px;
  color: #2E2E3A;
  animation: quoteFade 0.6s ease forwards;
}

@keyframes quoteFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* INLINE IMAGE */
.blog-content figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 462px;
}

/* ADVERTISEMENT BLOCK */
.blog-ad {
  background: #E8E8EA;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #696A75;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-ad .ad-label {
  font-size: 14px;
  font-weight: 400;
}

.blog-ad strong {
  font-size: 20px;
  font-weight: 600;
}

.blog-ad .ad-size {
  font-size: 18px;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .blog-content {
    gap: 32px;
  }

  .blog-detail {
    background: #F6F6F7;
    padding: 44px 0 64px;
}

  .blog-feature-image img {
    height: auto;
  }
}