/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #8B4789;
  --dark-purple: #5d2f5b;
  --light-purple: #b87eb6;
  --accent-gold: #d4af37;
  --cream: #faf8f5;
  --charcoal: #1a1a1a;
  --soft-white: #ffffff;
}

body, html {
  font-family: "Roboto", sans-serif;
  background-color: var(--soft-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* GLOBAL ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(56, 2, 53, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

/* ================= CANVAS ================= */
#gridCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #380235;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0 60px;
  margin-top: 0px;
  color: white;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.highlight {
  background: linear-gradient(135deg, var(--accent-gold), var(--light-purple));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite;
}

.hero p {
  margin: 20px 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-radius: 4px;
}

.btn-primary {
  background: var(--accent-gold);
  color: black;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transition: left 0.4s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #e5c158;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: black;
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-secondary:hover::before {
  left: 0;
}

/* ================= ABOUT ================= */
.about-section {
  padding: 50px 60px;
  background: linear-gradient(135deg, #faf8f5, #f1ebe5);
  position: relative;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.text {
  width: 50%;
  animation: slideInLeft 0.8s ease-out;
}

.text__short {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text__title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #3b0439;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  line-height: 1.3;
}

.text__description {
  line-height: 1.8;
  font-size: 17px;
  color: #444;
  border-left: 4px solid var(--primary-purple);
  padding-left: 20px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  transition: all 0.3s ease;
}

.text__description:hover {
  transform: translateX(10px);
  border-left-color: var(--accent-gold);
}

/* GRID */
.grid__container {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 90px);
  gap: 10px;
  animation: slideInRight 0.8s ease-out;
}

.grid__item {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid__item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

/* GRID ITEMS */
.one { grid-column:1/2; grid-row:2/3; background:url(images/400x400.webp); }
.two { grid-column:2/5; grid-row:1/4; background:url(images/900x900.webp); }
.three { grid-column:5/6; grid-row:1/2; background:url(images/500x400.webp); }
.four { grid-column:6/7; grid-row:1/2; background:#FDF5DD; border-radius:0 0 80px 0; }
.five { grid-column:5/7; grid-row:2/4; background:url(images/400x500.webp); }
.six { grid-column:7/8; grid-row:2/3; background:#D3F0EE; border-radius:0 80px 0 0; }
.seven { grid-column:7/8; grid-row:3/4; background:url(images/500x500.webp); }
.eight { grid-column:8/9; grid-row:3/4; border-radius:50%; background:#CED7ED; }
.nine { grid-column:1/2; grid-row:4/5; background:#FADEE0; border-radius:80px 0 0 0; }
.ten { grid-column:2/3; grid-row:4/5; background:url(images/300x300.webp); }
.eleven { grid-column:3/5; grid-row:4/6; background:url(images/700x700.webp); }
.twelve { grid-column:5/6; grid-row:4/5; background:url(images/300x500.webp); }

/* ================= SERVICES / OFFER SECTION ================= */

.offer-section {
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #5d2f5b, #1a1a1a);
  color: var(--soft-white);
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  animation: floatingEffect 6s ease-in-out infinite;
}

@keyframes floatingEffect {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.offer-section .subtitle {
  color: var(--light-purple);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 600;
}

.offer-section .title {
  font-size: 42px;
  max-width: 800px;
  margin: 0 auto 60px;
  font-weight: 900;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 1;
}

/* GRID */
.grid-offer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .grid-offer {
    grid-template-columns: 1fr;
  }
}

/* CARD - OFFER SECTION */
.offer-section .card {
  position: relative;
  background: #111827;
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  cursor: pointer;
}

.offer-section .card:nth-child(1) { animation-delay: 0.2s; }
.offer-section .card:nth-child(2) { animation-delay: 0.3s; }
.offer-section .card:nth-child(3) { animation-delay: 0.4s; }
.offer-section .card:nth-child(4) { animation-delay: 0.5s; }

.offer-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.offer-section .card h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: left;
  margin-left: 75px;
  transition: all 0.3s ease;
}

.offer-section .card:hover h2 {
  color: var(--accent-gold);
}

.offer-section .card p {
  color: rgba(255,255,255,0.7);
  transition: all 0.5s;
  text-align: left;
  margin-left: 75px;
  margin-right: 50px;
}

/* PURPLE OVERLAY EFFECT */
.offer-section .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-purple);
  z-index: 0;
  transition: 0.6s;
}

/* POSITION VARIANTS */
.grid-offer .card:nth-child(1)::before {
  bottom: 0;
  right: 0;
  clip-path: circle(120px at 100% 100%);
}

.grid-offer .card:nth-child(2)::before {
  bottom: 0;
  left: 0;
  clip-path: circle(120px at 0% 100%);
}

.grid-offer .card:nth-child(3)::before {
  top: 0;
  right: 0;
  clip-path: circle(120px at 100% 0%);
}

.grid-offer .card:nth-child(4)::before {
  top: 0;
  left: 0;
  clip-path: circle(120px at 0% 0%);
}

/* HOVER EFFECT */
.offer-section .card:hover::before {
  clip-path: circle(1200px at 100% 100%);
}

.offer-section .card:hover p {
  color: #fff;
}

/* IMAGE CIRCLE */
.offer-section .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
}

/* IMAGES */
.grid-offer .card:nth-child(1) .circle {
  background: url("") center/cover;
  clip-path: circle(120px at 100% 100%);
}

.grid-offer .card:nth-child(2) .circle {
  background: url("") center/cover;
  clip-path: circle(120px at 0% 100%);
}

.grid-offer .card:nth-child(3) .circle {
  background: url("") center/cover;
  clip-path: circle(120px at 100% 0%);
}

.grid-offer .card:nth-child(4) .circle {
  background: url("") center/cover;
  clip-path: circle(120px at 0% 0%);
}

/* CONTENT ABOVE BACKGROUND */
.offer-section .card .content {
  position: relative;
  z-index: 2;
}

/* ================= HOW WE WORK ================= */

.how-we-work-area {
  padding: 50px 60px;
  background: linear-gradient(135deg, #faf8f5, #f1ebe5);
  overflow: hidden;
  position: relative;
}

.how-we-work-area::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 71, 137, 0.1), transparent);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: floatingEffect 8s ease-in-out infinite;
}

/* SECTION TITLE */
.how-we-work-area .section-title {
  max-width: 600px;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  z-index: 1;
  animation: slideInLeft 0.8s ease-out;
}

.how-we-work-area .sub-title {
  color: var(--primary-purple);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.how-we-work-area .section-title h2 {
  font-size: 40px;
  font-weight: 900;
  color: #3b0439;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.how-we-work-area .section-title h2 span {
  color: var(--accent-gold);
}

.how-we-work-area p {
  color: #555;
  line-height: 1.7;
  font-size: 15.5px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* PROCESS GRID */
.process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* CARD */
.single-process {
  flex: 0 0 23%;
  max-width: 23%;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.single-process:nth-child(1) { margin-top: 150px; animation-delay: 0.2s; }
.single-process:nth-child(2) { margin-top: 100px; animation-delay: 0.3s; }
.single-process:nth-child(3) { margin-top: 50px; animation-delay: 0.4s; }
.single-process:nth-child(4) { margin-top: 0; animation-delay: 0.5s; }

/* CARD CONTENT */
.single-process .content {
  position: relative;
  padding: 50px 25px 25px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.single-process .content:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* LIGHT OVERLAY */
.single-process .content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  transition: 0.4s;
  z-index: 0;
}

/* HOVER OVERLAY */
.single-process .content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-purple);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

/* NUMBER */
.single-process .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: #5d2f5b;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  z-index: 2;
}

/* TEXT */
.single-process h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 40px;
  transition: 0.4s;
}

.single-process p {
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

/* HOVER EFFECT */
.single-process .content:hover::before {
  opacity: 0;
}

.single-process .content:hover::after {
  opacity: 0.85;
}

.single-process .content:hover h3,
.single-process .content:hover p {
  color: #fff;
}

/* BACKGROUND IMAGES */
.bg-1 {
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.9), rgba(93, 47, 91, 0.9));
}
.bg-2 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(180, 126, 182, 0.9));
}
.bg-3 {
  background: linear-gradient(135deg, rgba(93, 47, 91, 0.9), rgba(139, 71, 137, 0.9));
}
.bg-4 {
  background: linear-gradient(135deg, rgba(180, 126, 182, 0.9), rgba(93, 47, 91, 0.9));
}

/* PROCESS ICONS */
.process-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 15px;
  animation: floatingEffect 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/*Industries WE Servce*/
.industry-section {
  position: relative;
  background: linear-gradient(135deg, #5d2f5b, #0d0d1a);
  padding: 50px 50px;
  overflow: hidden;
}

/* Animated background */
.industry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(255,45,120,0.15), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0,212,255,0.12), transparent 60%);
  animation: bgMove 8s ease-in-out infinite alternate;
}

/* Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.top-ribbon {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff2d78, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title span {
  background: linear-gradient(90deg,#5d2f5b,#8B4789);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-line {
  width: 90px;
  height: 4px;
  margin: 15px auto;
  background: linear-gradient(90deg,#ff2d78,#00d4ff);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}

@media(max-width:900px){
  .grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:500px){
  .grid { grid-template-columns: 1fr; }
}

/* CARD - INDUSTRY SECTION */
.industry-section .card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  cursor: pointer;
}

.industry-section .card:nth-child(1) { animation-delay: 0.2s; }
.industry-section .card:nth-child(2) { animation-delay: 0.3s; }
.industry-section .card:nth-child(3) { animation-delay: 0.4s; }
.industry-section .card:nth-child(4) { animation-delay: 0.5s; }
@media(max-width:1200px) {
  .industry-section .card:nth-child(3) { animation-delay: 0.2s; }
  .industry-section .card:nth-child(4) { animation-delay: 0.3s; }
}

.industry-section .card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255,45,120,0.3);
  border-color: rgba(255,45,120,0.5);
}

/* Shine effect */
.industry-section .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.industry-section .card:hover::before {
  transform: translateX(200%);
}

/* Glow border */
.industry-section .card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(90deg,#ff2d78,#00d4ff,#ff2d78);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.industry-section .card:hover::after {
  opacity: 1;
}

/* Hover */
.industry-section .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255,45,120,0.3);
}

/* ICON */
.industry-section .icon-wrap {
  font-size: 40px;
  margin-bottom: 15px;
  transition: 0.4s;
}

.industry-section .card:hover .icon-wrap {
  transform: scale(1.2) rotate(8deg);
}

/* TEXT */
.industry-section .card-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Bottom glow */
.industry-section .card-glow {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg,transparent,#ff2d78,transparent);
  opacity: 0;
  transition: 0.4s;
}

.industry-section .card:hover .card-glow {
  opacity: 1;
}

/* ================= WHY PARTNER WITH US ================= */

.why-partner-section {
  padding: 50px 60px;
  background: linear-gradient(135deg, #faf8f5, #f1ebe5);
  position: relative;
  overflow: hidden;
}

.why-partner-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 71, 137, 0.1), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: floatingEffect 8s ease-in-out infinite;
}

.why-partner-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: floatingEffect 10s ease-in-out infinite reverse;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.partner-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #3b0439;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--accent-gold), var(--light-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-description {
  font-size: 17px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.08);
  border: 1px solid rgba(139, 71, 137, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.3s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:nth-child(4) { animation-delay: 0.5s; }
.benefit-card:nth-child(5) { animation-delay: 0.6s; }
.benefit-card:nth-child(6) { animation-delay: 0.7s; }

.benefit-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-purple));
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.15);
  border-color: var(--primary-purple);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  animation: floatingEffect 4s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  animation: none;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3b0439;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--primary-purple);
}

.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .why-partner-section {
    padding: 60px 20px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}

/* ================= FOOTER ================= */

.footer-section {
  background: linear-gradient(135deg, #0d0d1a, #1a1a1a);
  color: white;
  margin-top: 0px;
  padding-top: 60px;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.1), transparent);
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: floatingEffect 6s ease-in-out infinite;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 94, 20, 0.2);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.single-cta {
  transition: all 0.3s ease;
}

.single-cta:hover {
  transform: translateX(10px);
}

.single-cta i {
  color: #ff5e14;
  font-size: 25px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.single-cta:hover i {
  transform: scale(1.2) rotate(10deg);
}

.cta-text h4 {
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.footer-content {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.footer-logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

.footer-text {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 94, 20, 0.15);
  border: 1px solid #ff5e14;
  border-radius: 50%;
  color: #ff5e14;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff5e14;
  border-radius: 50%;
  top: 0;
  left: -100%;
  transition: left 0.3s ease;
  z-index: -1;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.4);
}

.social-icons a:hover::before {
  left: 0;
}

.footer-widget h3 {
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.footer-widget ul {
  list-style: none;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.footer-widget ul li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-widget ul li a {
  color: #aaa;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-widget ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #ff5e14;
  transition: width 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
  transform: translateX(5px);
}

.footer-widget ul li a:hover::before {
  width: 100%;
}

/* SUBSCRIBE */
.subscribe-form {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 94, 20, 0.2);
  animation: fadeInUp 0.8s ease-out 0.1s both;
  transition: all 0.3s ease;
}

.subscribe-form:hover {
  box-shadow: 0 8px 30px rgba(255, 94, 20, 0.4);
}

.subscribe-form input {
  padding: 12px 18px;
  border: none;
  width: 70%;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.subscribe-form input:focus {
  background: #fff;
}

.subscribe-form input::placeholder {
  color: #aaa;
}

.subscribe-form button {
  background: #ff5e14;
  border: none;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-form button:hover {
  background: #ff7a3d;
  transform: scale(1.05);
}

/* COPYRIGHT */
.copyright-area {
  text-align: center;
  background: rgba(32, 32, 32, 0.8);
  padding: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 94, 20, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {

  /* ABOUT */
  .about-container {
    flex-direction: column-reverse;
  }

  .text, .grid__container {
    width: 100%;
  }

  .text {
    text-align: center;
  }

  .text__description {
    border-left: none;
    padding-left: 0;
  }

  /* HOW WE WORK */
  .single-process {
    flex: 0 0 48%;
    max-width: 48%;
    margin-top: 0 !important;
  }

  .process-list {
    justify-content: center;
  }
}


/* MOBILE NAV + SMALL DEVICES */
@media (max-width: 780px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    background: #0f172a;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    padding: 1rem;
  }

  /* HOW WE WORK */
  .single-process {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .how-we-work-area {
    padding: 60px 20px;
  }
}