/* General Styles */
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format ("truetype");
  font-weight: normal;
  font-style: normal;
}
.slick-slider {
  overflow: hidden ;
}
 :root {
            --bg: #F5FBFF;
            --gold: #F1BB55;
            --gold-dk: #c9961e;
            --gold-lt: #fef7e7;
            --ink: #0f1923;
            --ink-2: #3a4553;
            --ink-3: #7a8795;
            --white: #ffffff;
            --radius: 20px;
            --radius-sm: 12px;
            --font-h: 'Playfair Display', Georgia, serif;
            --font-b: 'Plus Jakarta Sans', sans-serif;
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
        }
body {
  
  margin: 0;
  padding: 0;
  background-color: #f5fbff;
  /* font-family: "Poppins", sans-serif; */
}

.root {
  color: #2d4bba;
}

@media (max-width: 991px) {
  #main-header {
    backdrop-filter: none !important;
  }
}
header {
  background: #2d4bba;
  /* background:#GA4Ca3; */
  padding: 10px 0;
  position: relative;
  z-index: 1000;
  font-family: poppins;
  /* overflow-y: hidden; */
  transition: background 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  z-index: 1001;
  /* cnage this to top of other content */
}
header.sticky .btn1 {
  background-color: #f1bb55;
  color: #ffffff !important;
  border: 1px solid #f1bb55;
}

header.sticky .btn1:hover {
  background-color: #2d4bba;
  border-color: #2d4bba;
  color: #fff !important;
}
/* cnage this to top of other content */

header.sticky a {
  color: #2c3e50 !important;
}

.logo img {
  height: 62px;
  width: 80px;
  :hover {
    color: #eb325b;
  }
}

.container-header {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;

  /* justify-content: space-around; 14 */
  align-items: center;
  flex-wrap: wrap;
}

/* Toggle Button (Hamburger) */
.toggle-btn {
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  flex-direction: row;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

/* .nav-menu ul li 14 {
  position: relative;
  margin: 0 10px;
} */
.nav-menu ul li a {
  display: inline-block;
  transition: 0.3s;
}
.logo img:hover {
  opacity: 0.8;
}
/* 14 */
.nav-menu ul li a {
  color: #ffff;
  text-decoration: none;
  padding: 10px 10px;
  display: block;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: 0.5px;
  /* transform: scale(1.05); */
}

.nav-menu ul li a:hover {
  color: #f1bb55;
  /* transform: scale(1.05); 14*/
}

/* Dropdown Menu */
.nav-menu ul li .dropdown-menu {
  display: none;
  position: absolute;
     top: 80%;
    left: 482px;
  padding: 8px 16px;
  list-style: none;
  background-color: #fff;
  color: #444;
  min-width: 215px;
  line-height: 1;
  z-index: 999;
  font-weight: 520;
}

.nav-menu ul li:hover .dropdown-menu {
  display: block;
}

.nav-menu ul li .dropdown-menu li a {
  padding: 9px 2px;
  color: #181a54;
  font-size: 14px;
  display: block;
  margin: 9px 14px;
}

.nav-menu ul li .dropdown-menu li a:hover {
  color: #f1bb55;
}

/* Button Style */
.btn1 {
  color: white;
  font-weight: 500;
  border: 1px solid white;
  padding: 5px 18px 5px 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn1:hover {
  background-color: #f1bb55;
  /* border: #181A54 solid 2px; */
  color: #fff;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 786px) {
  .toggle-btn {
    display: block;
    color: #f1bb55;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #2c3e50;
    margin-top: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-menu ul li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu ul li a {
    padding: 15px;
    font-size: 16px;
  }
  .nav-menu ul li a {
    color: #ffff !important;
  }
  .nav-menu ul li .dropdown-menu {
    position: static;
    background: #444;
  }

  .btn1 {
    margin-top: 10px;
    display: inline-block;
    font-size: 13px;
    padding: 6px 9px;
  }
}
/* footer */
/* footer page code start */

/* Footer Base */
.footer {
  background: #2d4bba;
  color: #fff;
  padding: 70px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer Boxes */
.footer-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #f1bb55;
}

.footer-box img {
  width: 100px;
  height: 100px;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  /* position: relative; */
}

/* Underline effect */
.footer-box h3::after {
  content: "";
  /* width: 40px; 17 f */
  height: 3px;
  background: #f1bb55;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer-box p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
  color: #fff;
  font-weight: 500;
}

/* Contact section fix */
.footer-box p a span i {
  padding: 0 5px;
  font-size: 15px;
}

/* Last Section Contact */
.last-sec a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #ddd;
}

.last-sec a span {
  font-size: 17px;
}

.last-sec a:hover {
  color: #f1bb55;
}

/* Links */
.footer-box ul {
  list-style: none;
  margin-top: 30px;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  font-size: 17px;
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-box ul li a span img {
  margin: 0 10px;
  width: 15px;
  height: 15px;
}

.footer-box ul li a:hover {
  color: #f1bb55;
  padding-left: 5px;
}

/* Newsletter */
.newsletter form {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.newsletter button {
  background: #00eaff;
  border: none;
  padding: 9px 15px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  font-weight: 600;
  transition: 0.3s ease;
}

.newsletter button:hover {
  background: #f1bb55;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
}

.social-icons a:hover {
  color: #f1bb55;
  transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom p {
  color: #fff;
}

.footer-bottom span {
  color: #f1bb55;
}

.footer-bottom a {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 35px;
  border-radius: 30px;
  border: 2px dotted #ffffff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  background: #f1bb55;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 5px;
    margin-bottom: 10px;
  }
}

/* footer page code end */

/* -------------index  page start----------------------------------------- */
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  /* background-position: center center center; */
}
/* infuencer-sec
.influencer-card .img-box {
    overflow: hidden;
    border-radius: 12px;
}

.influencer-card img {
    width: 100%;

    transition: transform 0.4s ease;
}

.influencer-card:hover img {
    transform: scale(1.12);
}
 */
.influencer-card .img-box {
  overflow: hidden;
  border-radius: 12px;
}
.Influencer-img img {
  width: 570px;
  object-fit: cover;
  margin-top: 20%;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.influencer-card:hover img {
  transform: scale(1.08);
}
.Influencer-text {
  p {
    text-align: justify;
    letter-spacing: 0.5;
    line-height: 1.3;
  }
  h1,
  h2 {
    span {
      color: #f1bb55;
    }
  }
}
.btn-sec {
}
.Influencer-img2 {
  img {
    width: 520px;
    /* border-radius: 50px; */
  }
}
.whatsapp {
  position: fixed;
  bottom: 51px;
  right: 37px;
  a {
    img {
      width: 100px;
      height: 100px;
    }
  }
}



/* -------------index  page end----------------------------------------- */
.clients-section {
  padding: 60px 50px;
  background: #f5fbff;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2d4bba;
}

.clients-title span {
  color: #f1bb55;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  margin-bottom: 30px;
}

.logo-track {
  display: flex;
  width: max-content;
}

/* Logo Card */
.logo1 {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.logo1 img {
  max-width: 130px;
  height: auto;
}

/* Animations */
.left .logo-track {
  animation: scroll-left 25s linear infinite;
}

.right .logo-track {
  animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =====================
   RESPONSIVE CSS
===================== */

/* Tablet */
@media (max-width: 992px) {
  .clients-title {
    font-size: 32px;
  }
  .logo1 {
    min-width: 150px;
    padding: 15px 20px;
  }
  .logo1 img {
    max-width: 110px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .clients-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .logo {
    min-width: 130px;
    margin: 0 10px;
  }
  .logo img {
    max-width: 90px;
  }
}
/* Influencer Marketing */
/* ===== SECTION ===== */
.influencer-section {
  padding: 70px 40px;
  margin-bottom: 1%;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 55px;
  color: #2d4bba;
}

.section-title span {
  color: #f1bb55;
}

/* ===== GRID ===== */
.cards-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  grid-template-columns: 25% 25% 25% 25%;
  gap: 5px;
  padding: 30px 0;
  justify-content: space-evenly;
  margin: auto;
}

/* ===== CARD ===== */
.card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 22px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 46px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.count {
  font-size: 14px;
  font-weight: 600;
  color: #2d4bba;
  margin-bottom: 18px;
}

/* ===== BUTTON ===== */
.card-btn {
  position: relative;
  display: inline-block;
  padding: 11px 26px;
  border-radius: 30px;
  background: #f1bb55;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
}

/* RIGHT SIDE COLOR SLIDE */
.card-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f1bb55;
  transition: all 0.4s ease;
  z-index: -1;
}

/* HOVER EFFECT */
.card-btn:hover::after {
  background-color: #2d4bba;
  color: #fff;
  /* border: 1px solid black; */
  left: 0;
}

/* TEXT SAFE */
.card-btn:hover {
  color: #fff;
  /* background-color: #fff; */
}

/* Let’s make it happen */
#grid-img {
  position: relative;
  background-color: #f1bb55;
}
.lets-make-text {
  position: absolute;
  top: 27%;
  left: -14%;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  width: 100%;
}

#grid-img img {
  width: 100%;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .section-title {
    font-size: 32px;
  }
}
/* frequntly  question */
.faq {
  max-width: 1140px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2d4bba;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  .question p {
    color: black;
    font-size: 20px;
    font-weight: 500;
  }
  .answer span {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
}

.question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
}

.question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 25px;
  transition: transform 0.3s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answer {
  display: none;
  padding-top: 10px;
  color: #555;
}

/* service page start code */
.service img {
  width: 100%;
  /* height: 700px; */
  background-image: url("../img/service.webp");
  background-size: contain; /* cover ❌*/
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

.premium-services {
  padding: 100px 0;
  /* background: linear-gradient(180deg, #fffaf0, #ffffff); */
  font-family: "Segoe UI", sans-serif;
}

.ps-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.ps-heading {
  text-align: center;
  margin-bottom: 70px;
}

.ps-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d4bba;
}

.ps-heading p {
  color: #f1bb55;
  font-size: 16px;
}

/* GRID */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.ps-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  padding-bottom: 26px;
}
.ps-icon img {
  width: 300px;
  height: 201px;
  object-fit: cover;
}
.ps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #f1bb55;
  border-radius: 20px 20px 0 0;
}

.ps-card:hover {
  transform: translateY(-12px);
}

.ps-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.ps-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  padding: 0px 28px;
}

.ps-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 22px;
  padding: 15px 28px;
}

.ps-card a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  padding: 20px 25px;
}

.ps-card a:hover {
  color: #f1bb55;
}

/* CTA */
.ps-cta {
  margin-top: 90px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);

  padding: 60px 25px;
  border-radius: 25px;
  text-align: center;
}

.ps-cta h3 {
  font-size: 32px;
  margin-bottom: 25px;
}

.ps-cta a {
  background: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 576px) {
}

/* ====================================== */
.testimonials {
  /* background: linear-gradient(135deg, #f5f7fa, #c3cfe2); */
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.testimonials h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #2d4bba;
  font-weight: 600;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.testimonial-card-sec {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  max-width: 320px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.testimonial-card-sec:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.testimonial-card-sec img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ffd700; /* premium golden border */
}

.testimonial-card-sec h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #2d4bba;
}

.testimonial-card-sec .role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.testimonial-card-sec .stars {
  color: #ffd700; /* gold stars */
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-card-sec .feedback {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ==============brand page section====================== */
.influencer-banner {
  padding: 60px 5%;
  background: #f5fbff;
}

.influencer-banner__container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.influencer-banner__content {
  flex: 1;
}

.influencer-banner__title {
  font-size: 48px;
  line-height: 1.2;
  color: #2d4bba;
}

.influencer-banner__title span {
  color: #e76f51;
}

.influencer-banner__tagline {
  margin-top: 15px;
  font-weight: 600;
  color: #e76f51;
}

.influencer-banner__desc {
  margin: 15px 0 30px;
  font-size: 17px;
  color: #555;
}

/* RIGHT */
.influencer-banner__image {
  flex: 1;
  text-align: right;
}

.influencer-banner__image img {
  max-width: 100%;
  height: auto;
}

/* Influencer Marketing for All  */
.img-categories img {
  width: 100%;
  margin-bottom: 7%;
  /* object-fit: cover; */
}

.grid {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-gap: 1rem;
  /* margin: 2rem 0; */
  /* border: 1px solid #e76f51; */
  /* padding: 1.5rem; */
  border-radius: 10px;
  /* box-shadow: 0 0 10px #e76f51; */
}
.grid-sec {
  border: 1px solid #e76f51;
  padding: 0.5rem;
  border-radius: 10px;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 0 10px #e76f51;
  /* margin: 15px 0;     */
  padding-bottom: 20px;
}
.image-sec img {
  width: 270px;
  height: 260px;
  border-radius: 9px;
}
.image-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0.5rem 0; */
}
.image-contect img {
  width: 600px;
  margin: 5% 0;
}
/* contect us page */
.join-section {
  display: flex;
  padding: 70px 0%;
  justify-content: space-evenly;
  text-align: center;
  background-color: #f5fbff;
}

.type-switch {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.type-switch span {
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  background: #fff;
}

.type-switch .active {
  background-color: #f1bb55;
  color: #fff;
}

.join-form {
  max-width: 571px;
  margin: auto;
  background: #fff;
  padding: 70px;
  border-radius: 22px;
}

.join-form input,
.join-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.join-form button {
  width: 100%;
  padding: 12px;
  background-color: #f1bb55;
  color: #fff;
  border: none;
  border-radius: 12px;
}

.contact-section {
  padding: 60px 20px;
  background: #f5fbff;
  text-align: center;
  /* display: flex; */
}

.contact-section h2 {
  color: #2d4bba;
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  /* gap: 40px; */
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  width: 300px;
  padding: 30px 20px;
  margin: 15px 0px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card h3 {
  color: #444;
  margin-bottom: 10px;
}

.card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

/* infulyacer page ----------------------------------------- */
/* infulyancer data section */
#influencer-section {
  padding: 60px 15px;
  background: #f7f8fc;
}

.influencer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.influencer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.influencer-card:hover {
  transform: translateY(-8px);
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  /* height: 260px;
  object-fit: cover; */
}

.flower {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 18px;
  text-align: center;
}

.views {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

/* Base--------------------------------------------- */

.inf-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* Buttons */
.inf-btn-primary,
.inf-btn-secondary .inf-btn-primary {
  background: linear-gradient(135deg, #6a5cff, #8f7bff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* Hero */
.inf-hero {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 100px 20px;
}

.inf-hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.inf-hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.inf-hero-text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.inf-hero-media img {
  width: 100%;
  border-radius: 20px;
}

/* Intro */
.inf-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.inf-intro h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #f1bb55;
}

/* Services */
.inf-services {
  margin-top: 100px;
  text-align: center;
  h2 {
    color: #f1bb55;
  }
}

.inf-service-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

  h3 {
    font-size: 25px;
    color: #f1bb55;
    padding: 15px 0;
  }
  p {
    font-size: 20px;
  }
}

.inf-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.inf-card:hover {
  transform: translateY(-10px);
}

/* Process */
.inf-process {
  margin-top: 120px;
  text-align: center;
  h2 {
    color: #f1bb55;
  }
}

.inf-process-flow {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.inf-step-box {
  background: #f9f9ff;
  padding: 30px;
  border-radius: 16px;
  h4 {
    color: #777;
    margin: 15px 0;
  }
}

.inf-step-box span {
  font-size: 28px;
  font-weight: 700;
  padding-top: 20px;
  color: #f1bb55;
}

/* Advantages */
.inf-advantages {
  margin-top: 120px;
  text-align: center;
  h2 {
    color: #f1bb55;
  }
}

.inf-adv-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.inf-adv-item {
  /* background: linear-gradient(135deg, #6a5cff, #8f7bff); */
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);

  color: #fff;
  padding: 20px;
  border-radius: 14px;
  font-weight: 500;
}

/* CTA */
.inf-final-cta {
  margin-top: 120px;
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  /* background: #F5FBFF; */
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  line-height: 1.6;

  p,
  h2 {
    color: #f2f2ff;
    /* padding: 10px 0; */
  }
}

.inf-final-cta h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
#lastone {
  margin-top: 15px;
  width: 350px;
}

/* Responsive */
@media (max-width: 768px) {
  .inf-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inf-hero-text h1 {
    font-size: 36px;
  }
}
/* update home page css code start */
        /* ── SECTION ── */
        .ph-section {
            background: var(--bg);
            padding: 108px 0 124px;
            position: relative;
            overflow: hidden;
        }

        /* bottom-right arc */
        .ph-section::before {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            border: 90px solid rgba(241, 187, 85, 0.11);
            pointer-events: none;
            z-index: 0;
        }

        /* top-left dot grid */
        .ph-section::after {
            content: '';
            position: absolute;
            top: 60px;
            left: -10px;
            width: 220px;
            height: 220px;
            background-image: radial-gradient(circle, rgba(241, 187, 85, 0.26) 1.5px, transparent 1.5px);
            background-size: 22px 22px;
            pointer-events: none;
            z-index: 0;
        }

        .ph-section>.container {
            position: relative;
            z-index: 1;
        }

        /* ── HEADER ── */
        .ph-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

        .ph-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold-dk);
            margin-bottom: 20px;
        }

        .ph-eyebrow::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            display: inline-block;
            flex-shrink: 0;
        }

        .ph-title {
            font-family: var(--font-h);
            font-size: clamp(46px, 5.6vw, 76px);
            font-weight: 900;
            /* line-height: 0.97; */
            color: var(--ink);
        }

        .ph-title em {
            font-style: italic;
            color: var(--gold-dk);
        }

        .ph-header-right {
            max-width: 275px;
            text-align: right;
        }

        .ph-header-right p {
            font-size: 14px;
            font-weight: 400;
            /* line-height: 1.8; */
            color: var(--ink-3);
        }

        .ph-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            background: var(--white);
            border: 1.5px solid var(--gold);
            border-radius: 100px;
            padding: 8px 18px;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-2);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(241, 187, 85, 0.18);
        }

        .ph-pill strong {
            font-family: var(--font-h);
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-dk);
            /* line-height: 1; */
        }

        /* ── HERO MOSAIC ── */
        /* Unique layout: big image left + 2 stacked images right */
        .ph-mosaic {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 14px;
            height: 460px;
            margin-bottom: 52px;
        }

        .ph-mosaic-main {
            grid-row: 1 / 3;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .ph-mosaic-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            transition: transform 1s var(--ease);
        }

        .ph-mosaic-main:hover img {
            transform: scale(1.05);
        }

        /* dark gradient over main image */
        .ph-mosaic-main-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg,
                    transparent 35%,
                    rgba(15, 25, 35, 0.75) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px 36px;
        }

        .ph-mosaic-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--gold);
            color: var(--ink);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            border-radius: 100px;
            padding: 6px 15px;
            margin-bottom: 14px;
            width: fit-content;
        }

        .ph-mosaic-main-overlay h3 {
            font-family: var(--font-h);
            font-size: clamp(24px, 3vw, 38px);
            font-weight: 700;
            color: #fff;
            /* line-height: 1.1; */
            margin-bottom: 8px;
        }

        .ph-mosaic-main-overlay p {
            font-size: 13.5px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.65);
            /* line-height: 1.6; */
        }

        /* small tiles */
        .ph-mosaic-tile {
            border-radius: var(--radius-sm);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .ph-mosaic-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s var(--ease);
        }

        .ph-mosaic-tile:hover img {
            transform: scale(1.07);
        }

        .ph-mosaic-tile-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 25, 35, 0.65) 0%, transparent 55%);
            display: flex;
            align-items: flex-end;
            padding: 16px 18px;
        }

        .ph-tile-label {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.05em;
        }

        /* ── SERVICE CARDS — 4 in a row ── */
        .ph-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 7px;
        }

        .ph-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1.5px solid rgba(241, 187, 85, 0.2);
            box-shadow: 0 2px 16px rgba(15, 25, 35, 0.06);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.45s var(--ease),
                box-shadow 0.45s var(--ease),
                border-color 0.3s;
        }

        .ph-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 4px 0 0 var(--gold), 0 24px 60px rgba(15, 25, 35, 0.12);
            border-color: var(--gold);
        }

        .ph-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .ph-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s var(--ease);
        }

        .ph-card:hover .ph-card-img img {
            transform: scale(1.08);
        }

        .ph-num-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 34px;
            height: 34px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-h);
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            box-shadow: 0 3px 10px rgba(241, 187, 85, 0.45);
        }

        /* availability tag */
        .ph-avail {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(15, 25, 35, 0.72);
            backdrop-filter: blur(4px);
            border-radius: 100px;
            padding: 4px 12px;
            font-size: 10px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .ph-card-body {
            padding: 26px 24px 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .ph-icon-box {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            background: var(--gold-lt);
            border: 1.5px solid rgba(241, 187, 85, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: background 0.3s, border-color 0.3s;
        }

        .ph-card:hover .ph-icon-box {
            background: var(--gold);
            border-color: var(--gold);
        }

        .ph-icon-box svg {
            width: 18px;
            height: 18px;
            stroke: var(--gold-dk);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s;
        }

        .ph-card:hover .ph-icon-box svg {
            stroke: var(--ink);
        }

        .ph-card-title {
            font-family: var(--font-h);
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            line-height: 1.15;
        }

        .ph-card-desc {
            font-size: 13px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--ink-3);
            flex: 1;
            margin-bottom: 18px;
        }

        .ph-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 22px;
        }

        .ph-tag {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: var(--gold-dk);
            background: var(--gold-lt);
            border: 1px solid rgba(241, 187, 85, 0.4);
            border-radius: 100px;
            padding: 4px 11px;
        }

        .ph-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--ink-2);
            text-decoration: none;
            margin-top: auto;
            transition: color 0.2s, gap 0.25s var(--ease);
        }

        .ph-link svg {
            width: 13px;
            height: 13px;
            stroke: var(--gold-dk);
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.25s var(--ease);
        }

        .ph-link:hover {
            color: var(--gold-dk);
            gap: 12px;
        }

        .ph-link:hover svg {
            transform: translateX(4px);
        }

        /* ── EXPERIENCE STRIP ── */
        /* Horizontal scrolling marquee of features */
        .ph-features {
            margin-top: 46px;
            background: var(--white);
            border-radius: var(--radius);
            border: 1.5px solid rgba(241, 187, 85, 0.22);
            padding: 36px 44px;
            display: flex;
            align-items: center;
            gap: 0;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(15, 25, 35, 0.05);
        }

        .ph-feat-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold-dk);
            white-space: nowrap;
            margin-right: 40px;
            padding-right: 40px;
            border-right: 1.5px solid rgba(241, 187, 85, 0.3);
            flex-shrink: 0;
        }

        .ph-feat-list {
            display: flex;
            align-items: center;
            gap: 36px;
            flex-wrap: wrap;
        }

        .ph-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .ph-feat-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        .ph-feat-item span {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--ink-2);
        }

        /* ── CTA ── */
        .ph-cta {
            margin-top: 24px;
            background: var(--ink);
            border-radius: var(--radius);
            padding: 0;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: stretch;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(15, 25, 35, 0.18);
        }

        .ph-cta-left {
            padding: 44px 52px;
            position: relative;
            overflow: hidden;
        }

        .ph-cta-left::before {
            content: '';
            position: absolute;
            top: -90px;
            left: -90px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 50px solid rgba(241, 187, 85, 0.08);
            pointer-events: none;
        }

        .ph-cta-kicker {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .ph-cta-title {
            font-family: var(--font-h);
            font-size: clamp(20px, 2.6vw, 32px);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .ph-cta-title em {
            font-style: italic;
            color: var(--gold);
        }

        .ph-cta-sub {
            font-size: 13.5px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
            line-height: 1.6;
        }

        /* right panel — gold block */
        .ph-cta-right {
            background: var(--gold);
            padding: 44px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            min-width: 240px;
            position: relative;
            overflow: hidden;
        }

        .ph-cta-right::before {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .ph-cta-price {
            text-align: center;
        }

        .ph-cta-price span {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(15, 25, 35, 0.55);
            display: block;
            margin-bottom: 4px;
        }

        .ph-cta-price strong {
            font-family: var(--font-h);
            font-size: 38px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1;
            display: block;
        }

        .ph-cta-price em {
            font-style: normal;
            font-size: 13px;
            font-weight: 400;
            color: var(--ink-2);
        }

        .ph-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--ink);
            color: #fff;
            font-family: var(--font-b);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 15px 28px;
            border-radius: 100px;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            transition: background 0.22s, transform 0.22s;
        }

        .ph-btn:hover {
            background: #1a2d40;
            transform: translateY(-2px);
        }

        .ph-btn svg {
            width: 13px;
            height: 13px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ph-cta-note {
            font-size: 11px;
            font-weight: 400;
            color: rgba(15, 25, 35, 0.5);
            text-align: center;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .d1 {
            transition-delay: 0.08s;
        }

        .d2 {
            transition-delay: 0.16s;
        }

        .d3 {
            transition-delay: 0.24s;
        }

        .d4 {
            transition-delay: 0.32s;
        }

        /* ── 1024px ── */
        @media (max-width: 1024px) {
            .ph-section {
                padding: 80px 0 100px;
            }

            .ph-mosaic {
                height: 380px;
            }

            .ph-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .ph-cta {
                grid-template-columns: 1fr;
            }

            .ph-cta-right {
                flex-direction: row;
                min-width: auto;
                padding: 28px 40px;
                justify-content: space-between;
            }
        }

        /* ── 768px ── */
        @media (max-width: 768px) {
            .ph-section {
                padding: 64px 0 80px;
            }

            .container {
                padding: 0 20px;
            }

            .ph-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 40px;
            }

            .ph-header-right {
                text-align: left;
                max-width: 100%;
            }

            .ph-mosaic {
                grid-template-columns: 1fr;
                grid-template-rows: 280px 140px 140px;
                height: auto;
                margin-bottom: 36px;
            }

            .ph-mosaic-main {
                grid-row: 1;
            }

            .ph-cards {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .ph-card-img {
                height: 170px;
            }

            .ph-card-body {
                padding: 20px 18px 24px;
            }

            .ph-card-title {
                font-size: 17px;
            }

            .ph-features {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 28px 28px;
            }

            .ph-feat-label {
                border-right: none;
                border-bottom: 1.5px solid rgba(241, 187, 85, 0.3);
                padding: 0 0 16px;
                margin: 0;
                width: 100%;
            }

            .ph-feat-list {
                gap: 18px;
            }

            .ph-cta {
                grid-template-columns: 1fr;
            }

            .ph-cta-left {
                padding: 32px 28px;
            }

            .ph-cta-right {
                min-width: auto;
                padding: 28px 28px;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        /* ── 480px ── */
        @media (max-width: 480px) {
            .ph-section {
                padding: 48px 0 60px;
            }

            .ph-section::before {
                width: 300px;
                height: 300px;
                bottom: -110px;
                right: -110px;
                border-width: 55px;
            }

            .ph-mosaic {
                grid-template-rows: 230px 130px 130px;
            }

            .ph-mosaic-main-overlay {
                padding: 22px 22px;
            }

            .ph-mosaic-main-overlay h3 {
                font-size: 22px;
            }

            .ph-mosaic-main-overlay p {
                display: none;
            }

            .ph-cards {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .ph-card-img {
                height: 200px;
            }

            .ph-card-body {
                padding: 22px 20px 26px;
            }

            .ph-features {
                padding: 22px 20px;
            }

            .ph-feat-list {
                gap: 14px;
            }

            .ph-cta-left {
                padding: 26px 22px;
            }

            .ph-cta-right {
                flex-direction: column;
                align-items: stretch;
                padding: 22px 22px;
                gap: 14px;
            }

            .ph-cta-price strong {
                font-size: 30px;
            }
        }

        /* ── SECTION  meta add section── */
        .ma-section {
            background: var(--bg);
            padding: 108px 0 124px;
            position: relative;
            overflow: hidden;
        }

        /* top-left arc decoration (mirror of creative services) */
        .ma-section::before {
            content: '';
            position: absolute;
            top: -180px;
            left: -180px;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            border: 85px solid rgba(241, 187, 85, 0.11);
            pointer-events: none;
            z-index: 0;
        }

        /* dot grid — top right */
        .ma-section::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -10px;
            width: 220px;
            height: 220px;
            background-image: radial-gradient(circle, rgba(241, 187, 85, 0.25) 1.5px, transparent 1.5px);
            background-size: 22px 22px;
            pointer-events: none;
            z-index: 0;
        }

        .ma-section>.container {
            position: relative;
            z-index: 1;
        }

        /* ── HEADER ── */
        .ma-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

        .ma-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold-dk);
            margin-bottom: 20px;
        }

        .ma-eyebrow::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            display: inline-block;
            flex-shrink: 0;
        }

        .ma-title {
            font-family: var(--font-h);
            font-size: clamp(44px, 5.5vw, 74px);
            font-weight: 900;
            /* line-height: 0.98; */
            color: var(--ink);
        }

        .ma-title em {
            font-style: italic;
            color: var(--gold-dk);
        }

        .ma-header-right {
            max-width: 275px;
            text-align: right;
        }

        .ma-header-right p {
            font-size: 14px;
            font-weight: 400;
            /* line-height: 1.8; */
            color: var(--ink-3);
        }

        .ma-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            background: var(--white);
            border: 1.5px solid var(--gold);
            border-radius: 100px;
            padding: 8px 18px;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-2);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(241, 187, 85, 0.18);
        }

        .ma-pill strong {
            font-family: var(--font-h);
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-dk);
            /* line-height: 1; */
        }

        /* ── SPLIT HERO ── */
        /* Different layout from Creative Services — left text + right image */
        .ma-hero {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 28px;
            margin-bottom: 52px;
            align-items: stretch;
        }

        .ma-hero-left {
            background: var(--ink);
            border-radius: var(--radius);
            padding: 52px 48px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            min-height: 360px;
        }

        /* concentric ring deco inside dark card */
        .ma-hero-left::before {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            border: 48px solid rgba(241, 187, 85, 0.10);
            pointer-events: none;
        }

        .ma-hero-left::after {
            content: '';
            position: absolute;
            bottom: -130px;
            right: -130px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            border: 36px solid rgba(241, 187, 85, 0.06);
            pointer-events: none;
        }

        .ma-hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(241, 187, 85, 0.15);
            color: var(--gold);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            border-radius: 100px;
            padding: 6px 16px;
            margin-bottom: 28px;
            width: fit-content;
            border: 1px solid rgba(241, 187, 85, 0.25);
        }

        .ma-hero-left h3 {
            font-family: var(--font-h);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            color: #fff;
            line-height: 1.12;
            margin-bottom: 18px;
            flex: 1;
        }

        .ma-hero-left h3 em {
            font-style: italic;
            color: var(--gold);
        }

        .ma-hero-left p {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        /* stat row inside dark card */
        .ma-stats-row {
            display: flex;
            gap: 32px;
        }

        .ma-stat {}

        .ma-stat-num {
            font-family: var(--font-h);
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            display: block;
            margin-bottom: 4px;
        }

        .ma-stat-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .ma-hero-right {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }

        .ma-hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            transition: transform 1s var(--ease);
            min-height: 360px;
        }

        .ma-hero-right:hover img {
            transform: scale(1.04);
        }

        /* image overlay badge */
        .ma-hero-right-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(15, 25, 35, 0.78);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(241, 187, 85, 0.3);
            border-radius: 12px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ma-badge-icon {
            width: 36px;
            height: 36px;
            background: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ma-badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--ink);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ma-badge-text {}

        .ma-badge-text strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }

        .ma-badge-text span {
            font-size: 11px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ── CARDS ── */
        .ma-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .ma-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1.5px solid rgba(241, 187, 85, 0.2);
            box-shadow: 0 2px 16px rgba(15, 25, 35, 0.06);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.45s var(--ease),
                box-shadow 0.45s var(--ease),
                border-color 0.3s;
        }

        .ma-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 4px 0 0 var(--gold), 0 24px 60px rgba(15, 25, 35, 0.12);
            border-color: var(--gold);
        }

        .ma-card-img {
            width: 100%;
            height: 210px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .ma-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--ease);
            display: block;
        }

        .ma-card:hover .ma-card-img img {
            transform: scale(1.08);
        }

        .ma-num-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 36px;
            height: 36px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-h);
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            box-shadow: 0 3px 10px rgba(241, 187, 85, 0.45);
        }

        /* platform logo pill on image */
        .ma-platform-pill {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 100px;
            padding: 5px 12px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--ink-2);
            border: 1px solid rgba(241, 187, 85, 0.3);
        }

        .ma-card-body {
            padding: 30px 28px 34px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .ma-icon-box {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: var(--gold-lt);
            border: 1.5px solid rgba(241, 187, 85, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: background 0.3s, border-color 0.3s;
        }

        .ma-card:hover .ma-icon-box {
            background: var(--gold);
            border-color: var(--gold);
        }

        .ma-icon-box svg {
            width: 19px;
            height: 19px;
            stroke: var(--gold-dk);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s;
        }

        .ma-card:hover .ma-icon-box svg {
            stroke: var(--ink);
        }

        .ma-card-title {
            font-family: var(--font-h);
            font-size: 23px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 11px;
            line-height: 1.18;
        }

        .ma-card-desc {
            font-size: 13.5px;
            font-weight: 400;
            line-height: 1.72;
            color: var(--ink-3);
            flex: 1;
            margin-bottom: 20px;
        }

        .ma-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 24px;
        }

        .ma-tag {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: var(--gold-dk);
            background: var(--gold-lt);
            border: 1px solid rgba(241, 187, 85, 0.4);
            border-radius: 100px;
            padding: 4px 13px;
        }

        .ma-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--ink-2);
            text-decoration: none;
            margin-top: auto;
            transition: color 0.2s, gap 0.25s var(--ease);
        }

        .ma-link svg {
            width: 14px;
            height: 14px;
            stroke: var(--gold-dk);
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.25s var(--ease);
        }

        .ma-link:hover {
            color: var(--gold-dk);
            gap: 12px;
        }

        .ma-link:hover svg {
            transform: translateX(4px);
        }

        /* ── PROCESS STRIP ── */
        /* A unique row showing the 4-step ad process */
        .ma-process {
            margin-top: 48px;
            background: var(--white);
            border-radius: var(--radius);
            border: 1.5px solid rgba(241, 187, 85, 0.22);
            padding: 40px 48px;
            box-shadow: 0 2px 20px rgba(15, 25, 35, 0.05);
        }

        .ma-process-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            gap: 20px;
        }

        .ma-process-top h4 {
            font-family: var(--font-h);
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
        }

        .ma-process-top span {
            font-size: 12px;
            font-weight: 500;
            color: var(--ink-3);
            white-space: nowrap;
        }

        .ma-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }

        /* connecting line between steps */
        .ma-steps::before {
            content: '';
            position: absolute;
            top: 22px;
            left: calc(12.5% + 11px);
            width: calc(75% - 22px);
            height: 1.5px;
            background: repeating-linear-gradient(to right,
                    rgba(241, 187, 85, 0.5) 0px, rgba(241, 187, 85, 0.5) 6px,
                    transparent 6px, transparent 14px);
            z-index: 0;
        }

        .ma-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 8px;
            position: relative;
            z-index: 1;
        }

        .ma-step-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold-lt);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-h);
            font-size: 16px;
            font-weight: 700;
            color: var(--gold-dk);
            margin-bottom: 14px;
            transition: background 0.3s, color 0.3s;
        }

        .ma-step:hover .ma-step-num {
            background: var(--gold);
            color: var(--ink);
        }

        .ma-step-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .ma-step-sub {
            font-size: 11.5px;
            font-weight: 400;
            color: var(--ink-3);
            line-height: 1.5;
        }

        /* ── CTA STRIP ── */
        .ma-cta {
            margin-top: 28px;
            background: var(--ink);
            border-radius: var(--radius);
            padding: 44px 52px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }

        .ma-cta::before {
            content: '';
            position: absolute;
            left: -80px;
            bottom: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 52px solid rgba(241, 187, 85, 0.09);
            pointer-events: none;
        }

        .ma-cta::after {
            content: '';
            position: absolute;
            right: 200px;
            top: -90px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 36px solid rgba(241, 187, 85, 0.06);
            pointer-events: none;
        }

        .ma-cta-kicker {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .ma-cta-title {
            font-family: var(--font-h);
            font-size: clamp(20px, 2.8vw, 32px);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .ma-cta-title em {
            font-style: italic;
            color: var(--gold);
        }

        .ma-cta-actions {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }

        .ma-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--ink);
            font-family: var(--font-b);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 100px;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            transition: background 0.22s, transform 0.22s, color 0.22s;
        }

        .ma-btn:hover {
            background: var(--gold-dk);
            color: #fff;
            transform: translateY(-2px);
        }

        .ma-btn svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ma-ghost {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s;
        }

        .ma-ghost:hover {
            color: #fff;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .d1 {
            transition-delay: 0.08s;
        }

        .d2 {
            transition-delay: 0.18s;
        }

        .d3 {
            transition-delay: 0.28s;
        }

        /* ── 1024px ── */
        @media (max-width: 1024px) {
            .ma-section {
                padding: 80px 0 100px;
            }

            .ma-hero {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .ma-hero-left {
                padding: 40px 36px;
            }

            .ma-cards {
                gap: 16px;
            }

            .ma-cta {
                padding: 36px 40px;
            }

            .ma-process {
                padding: 32px 36px;
            }
        }

        /* ── 768px ── */
        @media (max-width: 768px) {
            .ma-section {
                padding: 64px 0 80px;
            }

            .container {
                padding: 0 20px;
            }

            .ma-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 40px;
            }

            .ma-header-right {
                text-align: left;
                max-width: 100%;
            }

            .ma-hero {
                grid-template-columns: 1fr;
            }

            .ma-hero-left {
                min-height: 280px;
                padding: 36px 32px;
            }

            .ma-hero-right img {
                min-height: 260px;
            }

            .ma-cards {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .ma-card-img {
                height: 165px;
            }

            .ma-card-body {
                padding: 22px 20px 26px;
            }

            .ma-card-title {
                font-size: 19px;
            }

            .ma-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .ma-steps::before {
                display: none;
            }

            .ma-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 28px;
                gap: 24px;
            }

            .ma-cta-actions {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
            }

            .ma-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ── 480px ── */
        @media (max-width: 480px) {
            .ma-section {
                padding: 48px 0 60px;
            }

            .ma-section::before {
                width: 300px;
                height: 300px;
                top: -110px;
                left: -110px;
                border-width: 55px;
            }

            .ma-hero-left {
                min-height: auto;
                padding: 28px 24px;
            }

            .ma-stats-row {
                gap: 20px;
            }

            .ma-hero-right img {
                min-height: 220px;
            }

            .ma-cards {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .ma-card-img {
                height: 210px;
            }

            .ma-card-body {
                padding: 24px 22px 28px;
            }

            .ma-steps {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }

            .ma-process {
                padding: 24px 20px;
            }

            .ma-cta {
                padding: 24px 22px;
                border-radius: 14px;
            }

            .ma-cta-title {
                font-size: 19px;
            }
        }

        /* ── PORTFOLIO GALLERY ── */
        .sa-portfolio {
            margin-bottom: 52px;
        }

        .sa-portfolio-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            gap: 20px;
        }

        .sa-portfolio-head h3 {
            font-family: var(--font-h);
            font-size: 28px;
            font-weight: 700;
            color: var(--ink);
        }

        .sa-portfolio-head a {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold-dk);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
            white-space: nowrap;
        }

        .sa-portfolio-head a svg {
            width: 13px;
            height: 13px;
            stroke: var(--gold-dk);
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s;
        }

        .sa-portfolio-head a:hover {
            gap: 10px;
        }

        .sa-portfolio-head a:hover svg {
            transform: translateX(3px);
        }

        /* masonry-style 5-item grid */
        .sa-gallery {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: 200px 200px;
            gap: 12px;
        }

        .sa-gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .sa-gallery-item:nth-child(1) {
            grid-column: span 5;
            grid-row: span 2;
        }

        .sa-gallery-item:nth-child(2) {
            grid-column: span 4;
        }

        .sa-gallery-item:nth-child(3) {
            grid-column: span 3;
        }

        .sa-gallery-item:nth-child(4) {
            grid-column: span 3;
        }

        .sa-gallery-item:nth-child(5) {
            grid-column: span 4;
        }

        .sa-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s var(--ease);
        }

        .sa-gallery-item:hover img {
            transform: scale(1.07);
        }

        .sa-gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 25, 35, 0.6) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 14px 16px;
        }

        .sa-gallery-item:hover .sa-gallery-overlay {
            opacity: 1;
        }

        .sa-gallery-overlay span {
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* ── BOOKING FORM ── */
        .sa-booking {
            background: var(--white);
            border-radius: var(--radius);
            border: 1.5px solid rgba(241, 187, 85, 0.22);
            box-shadow: 0 2px 24px rgba(15, 25, 35, 0.06);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
        }

        .sa-booking-left {
            background: var(--ink);
            padding: 52px 44px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .sa-booking-left::before {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            border: 50px solid rgba(241, 187, 85, 0.09);
            pointer-events: none;
        }

        .sa-booking-left h3 {
            font-family: var(--font-h);
            font-size: clamp(24px, 2.8vw, 34px);
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .sa-booking-left h3 em {
            font-style: italic;
            color: var(--gold);
        }

        .sa-booking-left p {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
        }

        .sa-booking-badges {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 36px;
        }

        .sa-booking-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(241, 187, 85, 0.18);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
        }

        .sa-booking-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        .sa-booking-badge span {
            font-size: 12.5px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.65);
        }

        /* form side */
        .sa-booking-right {
            padding: 48px 44px;
        }

        .sa-booking-right h4 {
            font-family: var(--font-h);
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 28px;
        }

        .sa-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .sa-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .sa-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .sa-field label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--ink-3);
        }

        .sa-field input,
        .sa-field select,
        .sa-field textarea {
            background: var(--bg);
            border: 1.5px solid rgba(241, 187, 85, 0.28);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            font-family: var(--font-b);
            font-size: 13.5px;
            font-weight: 400;
            color: var(--ink);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
            -webkit-appearance: none;
        }

        .sa-field input::placeholder,
        .sa-field textarea::placeholder {
            color: var(--ink-3);
        }

        .sa-field input:focus,
        .sa-field select:focus,
        .sa-field textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(241, 187, 85, 0.15);
        }

        .sa-field select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8795' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
        }

        .sa-field textarea {
            resize: none;
            height: 80px;
        }

        .sa-form-submit {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--ink);
            font-family: var(--font-b);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 16px 32px;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            transition: background 0.22s, transform 0.22s, color 0.22s;
            margin-top: 4px;
        }

        .sa-form-submit:hover {
            background: var(--gold-dk);
            color: #fff;
            transform: translateY(-2px);
        }

        .sa-form-submit svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
