/* ================= GLOBAL DESIGN SYSTEM ================= */
:root {
  --section-padding: 60px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;

  --primary: #f90;
  --secondary: #4f1952;
  --white: #ffffff;
  --dark: #1a1a1a;

  --font-heading: 'Jost', sans-serif;
  --font-body: 'Alegreya Sans', sans-serif;
}


/* ================= GLOBAL FONT SYSTEM ================= */

html,
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);

}

/* ================= GLOBAL RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* All headings auto JOST */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.6px;
}

p,
li,
small,
label,
input,
textarea,
select,
a,
.section-tag {
  font-family: var(--font-body);
  letter-spacing: 0.6px;
}

/* ================= GLOBAL FONT SYSTEM ================= */
.toplogo {
  width: 100%;
  max-width: 290px;
  min-width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toplogo img {
  width: 100%;

}


button {
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.6px;
}

.bg_sc {
  background: linear-gradient(180deg, rgba(79, 25, 82, 0.06) 0%, rgba(79, 25, 82, 0.12) 50%, rgba(79, 25, 82, 0.06) 100%);
}

/* Optional: branding elements */
.logo {
  text-decoration: none;
  font-weight: 700 !important;
}

.logo img {
  height: 63px;
}

.btn {
  font-family: 'Jost', sans-serif;

}

.mb0 {
  margin-bottom: 0px !important;
}



/* GLOBAL SECTION & CONTAINER */
section {
  padding: var(--section-padding) 0;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}

/* ================= GLOBAL BUTTON SYSTEM ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* ---------- RIPPLE EFFECT ---------- */
.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 320px;
  height: 320px;
}

/* ---------- ICON ANIMATION ---------- */
.btn i,
.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover i,
.btn:hover svg {
  transform: translateX(6px);
}

/* ---------- COMMON HOVER ---------- */
.btn:hover {
  transform: translateY(-3px);
}

/* ================= PRIMARY (ORANGE) ================= */

.btn.primary {
  background: linear-gradient(135deg, var(--primary), #ffb84d);
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.35);
  background-size: 200% auto;
}

.btn.primary:hover {
  background-position: right center;
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.45);
}

/* ================= WHITE BUTTON ================= */

.btn.white {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.45);
  background-size: 200% auto;
}

.btn.white:hover {
  background-position: right center;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.7);
}

/* ================= PURPLE BUTTON ================= */

.btn.purple {
  background: linear-gradient(135deg, var(--secondary), #6b2a6f);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(79, 25, 82, 0.45);
  background-size: 200% auto;
}

.btn.purple:hover {
  background-position: right center;
  box-shadow: 0 15px 40px rgba(79, 25, 82, 0.7);
}

/* OUTLINE BUTTON – */
.btn-outline {
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
/* Hover */
.btn-outline:hover {
  background: linear-gradient(135deg, #4f1952, #6b2a70);
  color: #fff;
  border-color: var(--secondary);
  /* PURPLE BORDER */
  box-shadow: 0 15px 35px rgba(79, 25, 82, .35);
  transform: translateY(-2px);
}


/* Optional focus */
.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.35);
}



/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  max-width: 1300px;
}

.logo {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
}

/* .logo img {
  height: 63px;
} */
.secondaryclour {
  color: var(--secondary) !important;
}

.logo span {
  color: var(--primary);
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.contctbtn-r {
  /* display: flex;
  justify-content: end;
  align-items: center; */
}

.contctbtn-r .contact-buttons {
  margin-top: 0px !important;
  display: inline-flex;
}

.contctbtn-r .contact-buttons2 {
  display: none !important;
}

.contact-buttons a::after {
  display: none !important;
}



/* ================= HERO ================= */

.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}


.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), #ffb84d);
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.btn.white {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

.btn.purple {
  background: linear-gradient(135deg, var(--secondary), #6b2a6f);
  color: #fff;
  box-shadow: 0 10px 30px rgba(79, 25, 82, 0.6);
}

.hero-slider {
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(79, 25, 82, 0.85), rgba(79, 25, 82, 0.85)),
    url("images/hero-bg.jpg") center/cover no-repeat;
}

.slider-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: scrollHero 18s linear infinite;
}

.hero-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 600px;
  color: #fff;
}

.hero-content span {
  color: var(--primary);
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

@keyframes scrollHero {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media(max-width:992px) {

  .toplogo {
    max-width: 230px;
    min-width: 230px;
  }

  .logo img {
    height: 43px;
  }
}

@media(max-width:768px) {
  .hero-content {
    text-align: center;
    padding: 0px 10px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media(max-width:480px) {
  .toplogo {
    max-width: 180px;
    min-width: 180px;
  }

}

/* ================= HERO SLIDER ================= */

.slider-section {
  width: 100%;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 70vh;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: 'Jost', sans-serif;
}

/* Background images */
/* .slide-1 {
  background: url("images/hero-1.jpg") center/cover no-repeat;
}

.slide-2 {
  background: url("images/hero-2.jpg") center/cover no-repeat;
}

.slide-3 {
  background: url("images/hero-3.jpg") center/cover no-repeat;
} */

/* Text style */
.swiper-slide h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.swiper-slide p {
  font-size: 18px;
  font-family: var(--font-body) !important;
}

.hero-content p,
.hero-content .tagline {
  font-family: var(--font-body) !important;
}

/* HERO PAGINATION – BAR STYLE (Activecraft) */
.swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* normal bar */
.swiper-pagination-bullet {
  width: 40px !important;
  height: 3px !important;
  background: #b0aeab !important;
  border-radius: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

/* active bar */
.swiper-pagination-bullet-active {
  background: #f90 !important;
  width: 55px;
}


/* .hero-banner {
  position: relative;
  min-height: 100vh;

  background:
    linear-gradient(rgba(79, 25, 82, 0.80),
      rgba(79, 25, 82, 0.80)),
    url("../images/hero-bg.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
} */

/* Slide 1 */
/* .slide-1 .hero-banner{
  background:
    linear-gradient(rgba(79, 25, 82, 0.80),
      rgba(79, 25, 82, 0.80)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
} */
.slide-1 .hero-banner {
  background: url(../home_images/hero-bg.jpg) center / cover no-repeat;
}

/* Slide 2 */
.slide-2 .hero-banner {
  background:
    url("../home_images/hero-bg2.jpg") center/cover no-repeat;
}

/* Slide 3 */
.slide-3 .hero-banner {
  background: url("../home_images/hero-bg3.jpg") center/cover no-repeat;
}

/* Slide 4 */
.slide-4 .hero-banner {
  background: url("../home_images/slider44.jpg") center/cover no-repeat;
}

/* Slide 5 */
.slide-5 .hero-banner {
  background: url("../home_images/hero-bg5.jpg") center/cover no-repeat;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.15); */
  /* backdrop-filter: blur(4px); */
  /* -webkit-backdrop-filter: blur(4px); */
  z-index: 1;
}

/* .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 58px;
  padding-right: 20px;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
} */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
}

.hero-content {
  flex: 1.2;
}

.hero-content .tagline {
  letter-spacing: 3px;
  font-size: 14px;
  display: flex;
  justify-content: start;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0;
  text-align: left;
  color: #fff;
}

.hero-content p {
  max-width: 520px;
  line-height: 1.5;
  text-align: left;
}

/* Buttons */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: var(--primary);
  color: var(--secondary);
}

.btn.primary:hover {
  background: #ffb84d;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: var(--secondary);
}



@media(max-width:768px) {

  .slide-4 .hero-banner {
    background: none;
  }

  .slide-4.slidem_mb_version .hero-banner {
    background: url("../home_images/slider4_mb_version.jpg") center/cover no-repeat;
  }

  /* Slide 5 */
  .slide-5 .hero-banner {
    background: none;
  }

  .slide-5 .hero-banner {
    background: url("../home_images/slider5_mb_version.jpg") center/cover no-repeat;
  }
}

@media(max-width:480px) {
  .slide-4.slidem_mb_version .hero-banner {
    background: url("../home_images/slider4_mb_version.jpg") center/contain no-repeat;
  }

  .slide-5 .hero-banner {
    background: url("../home_images/slider5_mb_version.jpg") center/contain no-repeat;
  }

  .slider-section .hero-banner {
    min-height: 70vh !important;
  }

  /* .slider-section .swiper {
    height: 70vh;
  }

  .slide_heading2 {
    font-size: 22px !important;
  } */
}

/* ================= FORM ================= */

/* ================= HERO BANNER ================= */
.mySwiper-homebanner .swiper-slide {
  /* align-items: stretch; */
}

.mySwiper-homebanner .hero-banner {
  width: 100%;
}


.hero-banner {
  position: relative;
  min-height: 70vh;

  /* Background Image */
  /* background:
    linear-gradient(
      rgba(79,25,82,0.50),
      rgba(79,25,82,0.50)
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat; */

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Soft blur effect */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); */
}


/* LEFT CONTENT */
.hero-content {
  flex: 1.2;
}

.hero-content .tagline {
  letter-spacing: 3px !important;
  font-size: 14px;
  color: #ff9900;
  text-align: left;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0;
}

.hero-content p {
  max-width: 520px;
  line-height: 1.5;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* RIGHT FORM */
.hero-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #f90;
  margin-bottom: 8px;
  display: block;
}

.hero-form h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 25px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.hero-form textarea {
  height: 90px;
  resize: none;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

/* .checkboxinput {

  max-width: 15px !important;
  height: 15px !important;
} */
/* NDA text */
.nda-text {
  font-size: 13px;
  opacity: 0.9;
  margin: 10px 0 15px;
}

/* CAPTCHA */
.captcha-box {
  background: #fff;
  color: #333;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Submit Button */
.hero-form .btn.primary {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: #f90;
  color: #4f1952;
  border-radius: 50px;
}


/* ================= SERVICES ================= */

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0;
}

.service-box {
  flex: 1 1 250px;
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
}





.services-section {
  padding: 80px 0px;
  background: #fff;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

/* .section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
} */

.services-header h2 {
  font-size: 42px;
  margin: 15px 0 20px;
  line-height: 1.2;
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid #eaeaea;
  border-radius: 15px;
  padding: 35px 30px;
  transition: .4s;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(79, 25, 82, .12);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  background: #fff4e5;
  color: #f90;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  color: #555;
}



/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(79, 25, 82, 0.06) 0%, rgba(79, 25, 82, 0.12) 50%, rgba(79, 25, 82, 0.06) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */

.section-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

.about-left h2 {
  font-size: 42px;
  margin: 15px 0 30px;
  line-height: 1.2;
  color: var(--dark);
}

.about-left p {
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #555;
  margin-bottom: 0px;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card h4 {
  margin-bottom: 10px;
}

/* .service-card p{
  font-size:14px;
  line-height:1.7;
  margin: 0px;
} */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff4e5, #ffe0b2);
  transition: .4s ease;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  stroke: #f90;
  fill: none;
  stroke-width: 1.8;
  transition: .4s ease;
}

/* Hover effect */
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #4f1952, #6b2a70);
}

.service-card:hover .service-icon svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* Card polish */

.service-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 400;
  text-decoration: none;
  margin-top: 20px;
}

.read-more.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  /* border-radius:30px; */
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(135deg, #4f1952, #6b2a70);
  text-decoration: none;
  transition: .3s;
}

.read-more.pill span {
  transition: .3s;
}

.read-more.pill:hover {
  background: linear-gradient(135deg, #f90, #ffb84d);
}

.read-more.pill:hover span {
  transform: translateX(4px);
}

/* RIGHT SIDE */

.about-right {
  background: var(--secondary);
  color: #fff;
  padding: 45px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.about-right h3 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #fff;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.experience-box {
  background: var(--primary);
  color: var(--secondary);
  padding: 22px;
  text-align: center;
  border-radius: 12px;
  margin-top: 35px;
}

.experience-box span {
  font-size: 56px;
  font-weight: 800;
  display: block;
}

.about-right p {
  font-weight: 500;
  font-size: 18px;
}

.icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/*----------------------testimonial-section------------------------*/

.testimonial-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg,
      rgba(79, 25, 82, 0.06) 0%,
      rgba(79, 25, 82, 0.12) 50%,
      rgba(79, 25, 82, 0.06) 100%);
}


.testimonial-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.testimonial-slider {
  position: relative;
  height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: all .6s ease;
  background: rgba(255, 255, 255, .08);
  padding: 50px 50px 45px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(79, 25, 82, .18);
  backdrop-filter: blur(10px);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* QUOTES COMMON */
.quote {
  position: absolute;
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  /* #f90 */
  opacity: .35;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

/* LEFT TOP QUOTE */
.quote-left {
  top: 24px;
  left: 30px;
}

/* RIGHT BOTTOM QUOTE */
.quote-right {
  bottom: 24px;
  right: 30px;
}

/* CARD (ensure relative) */
.testimonial-card {
  position: relative;
  padding: 50px 70px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.5;
  color: #555;
  /* site text color */
  margin-bottom: 24px;
}

/* Text */
.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 60px 60px 50px 120px;
  background: #fff;
  text-align: left;
}

.testimonial-card h4 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}


.testimonial-card .role {
  font-size: 14px;
  color: #666;
}

/* Arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  /* border-radius:50%; */
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4f1952, #6b2a70);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(79, 25, 82, .45);
  transition: .3s ease;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 25, 82, .3);
}

.ts-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.ts-arrow.left {
  left: -70px;
}

.ts-arrow.right {
  right: -70px;
}

/* Mobile */
@media(max-width:768px) {
  .quote {
    font-size: 52px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .ts-arrow {
    display: none;
  }


}


.achievements-section {
  padding: 80px 0;
  /* background:
    linear-gradient(135deg, rgba(79, 25, 82, .05), rgba(255, 153, 0, .06));
} */
}

.achievements-header {
  text-align: center;
  margin-bottom: 40px;
}

/* .section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
} */

.achievements-header h2 {
  font-size: 42px;
  margin: 15px 0 20px;
  line-height: 1.2;
  color: var(--dark);
}

/* .achievements-header h2 span {
  color: var(--secondary);
} */

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.achievement-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 25, 82, .08), rgba(255, 153, 0, .08));
  opacity: 0;
  transition: .35s ease;
}

.achievement-card:hover::after {
  opacity: 1;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(79, 25, 82, .2);
}

.achievement-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 8px;
}

.achievement-card p {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* Highlight center card */
.achievement-card.highlight {
  background: linear-gradient(135deg, var(--secondary), #6b2a70);
}

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

.achievement-card.highlight .achievement-icon {
  filter: brightness(1.2);
}


.contact-section {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(79, 25, 82, .85), rgba(79, 25, 82, .85)),
    url('../img/contact-bg.jpg') center/cover no-repeat;
}

.contact-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 30px 60px rgba(79, 25, 82, .25);
}

/* Heading */
.section-tag {
  display: block;
  text-align: left;
  color: #ff9800;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-tagcon {
  display: block;
  text-align: center;
  color: #ff9800;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-title-con {
  font-size: 42px;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin: 0px 0px 40px 0px;
}

/* .section-title-con span{
  color:#4f1952;
} */

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 140px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e6d9ea;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f1952;
  box-shadow: 0 0 0 3px rgba(79, 25, 82, .15);
}

/* Trust line */
.form-trust {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

/* reCAPTCHA placeholder */
.recaptcha-box {
  grid-column: span 2;
  background: #f5f5f5;
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
}

/* Button */
.contactbtn {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.projects-section {
  padding: 80px 20px;
  background: #faf8fb;
}

.projects-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* SLIDER */
.project-slide .project-content {
  padding: 30px;
}

.projects-slider {
  position: relative;
  /* overflow: hidden; */
}

.project-slide {
  display: none;
  animation: fadeSlide .5s ease;
}

.project-slide.active {
  display: block;
}



/* IMAGES */
.project-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-img {
  width: 100%;
  border-radius: 12px;
  max-width: 300px;
}

.mobile-img {
  width: 140px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

/* CONTENT */
.project-content h3 {
  font-size: 26px;
}

.project-content p {
  line-height: 1.5;
  color: #555;
}

/* TAGS */
.project-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: #f1e7f5;
  color: #5a1d66;
  border-radius: 20px;
  font-size: 13px;
  margin: 10px 8px 20px 0;
}

.projects-slider .project-slide .project-tags {
  margin-top: 20px;
}

/* BUTTON */
.project-btn {
  display: inline-flex;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}


/* ARROWS */
.project-arrow {
  position: absolute;
  top: 59%;
  transform: translateY(-62%);
  width: 44px;
  height: 44px;
  /* border-radius:50%; */
  background: linear-gradient(135deg, #4f1952, #6b2a70);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(79, 25, 82, .45);
  transition: .3s ease;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 25, 82, .3);
}

.project-prev {
  left: -22px;
}

.project-next {
  right: -22px;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* MOBILE */
@media(max-width:768px) {
  .project-slide .project-content {
    padding: 0px 0px 20px 0px;

  }

  .portfolio-grid {
    gap: 15px;
  }

  .project-card {
    grid-template-columns: 1fr;
    /* padding: 30px; */
  }

  .project-arrow {
    top: auto;
    bottom: -35px;
  }

  .project-prev {
    left: 45%;
  }

  .project-next {
    right: 45%;
  }
}

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


.footer-modern {
  background: linear-gradient(135deg, #2b1638, #121c2d);
  color: #cfcfd4;
  font-size: 15px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Logo */
.footer-logo {
  max-width: 170px;
  margin-bottom: 20px;
  font-size: 40px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

/* Text */
.footer-text {
  line-height: 1.5;
}

.footer-link {
  color: var(--primary);
  font-weight: 600;
}

/* Headings */
.footer-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

/* Links */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfd4;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* Contact */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-contact .icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}



/* Social */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}


/* Bottom bar */
.footer-modern {
  background: linear-gradient(135deg, #261235, #0e1a2b);
}


.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col .footer-social a:hover {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding-bottom: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}



/*------------------portfolio css-------------------*/

.portfolio-hero {
  background: linear-gradient(135deg, #4f1952, #0f1029);
  padding: 60px 0px;
  text-align: center;
  color: #fff;
}

.portfolio-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #fff;
}

.portfolio-hero p {
  max-width: 620px;
  margin: auto;
  opacity: 0.85;
  text-align: center;
}

.portfolio-bg {
  background: linear-gradient(180deg, rgba(79, 25, 82, 0.06) 0%, rgba(79, 25, 82, 0.12) 50%, rgba(79, 25, 82, 0.06) 100%);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 60px 0 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.portfolio-filters button {
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: #ff8a00;
  color: #4f1952;
  border-color: #ff8a00;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding-top: 0px;
}

/* CARD */
.project-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.project-image {
  background: #f3f3f3;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-image img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.project-card:hover .project-image img {
  transform: scale(2.08);
}

.project-info {
  padding: 20px 0px 10px 0px;
  overflow: hidden;
}

.project-info .tag {
  display: block;
  max-width: 100%;
  font-size: 14px;
  color: #ff8a00;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.6px;
}

.project-info h3 {
  margin: 8px 0;
  font-size: 20px;
}

.project-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.6px;
}

.project-info a {
  color: #4f1952;
  font-weight: 600;
  text-decoration: none;
}

.project-info a:hover {
  color: #ff8a00;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .portfolio-hero h1 {
    font-size: 34px;
  }

  .portfolio-filters {
    margin-top: 40px;
  }
}




/* ===== CASE STUDY PAGE ===== */

.ac-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.ac-case-hero {
  background: linear-gradient(135deg, #4f1952, #0f1029);
  padding: 50px 0px;
  /* text-align: center; */
  color: #fff;
}

.ac-back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff9d00;
  font-weight: 500;
  text-decoration: none;
}

.ac-case-hero h1 {
  font-size: 44px;
  /* margin-bottom: 8px; */
  color: #fff;
}

.ac-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

.ac-hero-desc {
  max-width: 600px;
  margin-top: 16px;
  opacity: 0.85;
}

.ac-case-mockup {
  padding-top: 30px;
  padding-bottom: 50px;
}

.ac-mockup-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  height: max-content;
}

.ac-mockup-card img {
  max-width: 100%;
  border-radius: 12px;
}

.ac-case-overview {
  padding: 80px 0;
}

.ac-case-mockup.bg_sc .ac-container.ac-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 30%;
}

.ac-grid-2 h2 {
  margin-bottom: 10px;
}

.ac-meta {
  background: #fafafa;
  padding: 20px;
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
}

.ac-meta div {
  margin-bottom: 16px;
}

.ac-meta span {
  display: block;
  font-size: 13px;
  color: #777;
}

.ac-meta strong {
  font-size: 16px;
}

/* .ac-btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #ff9d00;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
} */

.ac-case-details {
  padding: 50px 0;
  background: #f9f9f9;
}

.ac-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ac-case-details h3 {
  margin-bottom: 10px;
}

.ac-next-case {
  padding: 60px 0;
  text-align: center;
}

.ac-next-link {
  font-size: 18px;
  font-weight: 600;
  color: #4f1952;
  text-align: center;
}

.ac-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ===== Project Overview: sticky heading + scroll paragraphs ===== */


.ptag p {
  margin-bottom: 20PX;
  line-height: 28px;
}

.ac-overview-scroll {
  max-height: 420px;
  /* change if you want taller */
  overflow: hidden;
}

.ac-overview-scroll h2 {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* Only the paragraphs scroll */
.ac-overview-content {
  max-height: 360px;
  /* should be less than container height */
  overflow-y: auto;
  padding-right: 12px;
}

/* scrollbar styling */
.ac-overview-content::-webkit-scrollbar {
  width: 6px;
}

.ac-overview-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Mobile: normal flow (no scroll) */
@media (max-width: 768px) {
  .ac-overview-scroll {
    max-height: unset;
  }

  .ac-overview-content {
    max-height: unset;
    overflow: visible;
    padding-right: 0;
  }
}

.case-box {
  padding: 35px;
  background: #fff;
  border-radius: 15px;
  transition: .3s ease;
}

.case-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(79, 25, 82, .15);
}

.case-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(79, 25, 82, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.case-icon i {
  font-size: 26px;
  color: #4f1952;
}

.case-box h3 {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  color: #4f1952;
  margin-bottom: 10px;
}

.case-box p {
  line-height: 1.5;
  color: #555;
}

.pontmain {
  max-width: 90% !important;
  display: flex;
  gap: 30px;
}

/* ===============================
   custom-apparel.html CASE SLIDER
================================ */
/* dots container */
.ac-sp-btn {
  display: flex;
}

.ac-sp-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.ac-sp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1c3d6;
  cursor: pointer;
  transition: .25s;
}

.ac-sp-dot.is-active {
  background: #4f1952;
}

/* MOBILE VIEW */
@media(max-width:992px) {


  /* dots show */
  .ac-sp-dots {
    display: flex;
  }

  /* arrows hide on mobile */
  .ac-sp-btn {
    display: none !important;
  }

  /* dots show on mobile */
  .ac-sp-dots {
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }
}

.ac-sp-slider {
  position: relative;
  background: #f6f2f7;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
  /* max-width:520px; */
  height: auto;
  max-height: max-content;
  width: 70%;
}

.ac-sp-track {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.ac-sp-slide {
  display: none;
}

.ac-sp-slide.is-active {
  display: block;
}

.ac-sp-slide img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* Navigation buttons */
.ac-sp-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  /* border-radius:50%; */
  border: none;
  cursor: pointer;
  background: #4f1952;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(79, 25, 82, .45);
  transition: .25s ease;
}

.ac-sp-btn:hover {
  background: #ff9f00;
}

.ac-sp-prev {
  left: -20px;
}

.ac-sp-next {
  right: -20px;
}




/*-------------------blog-------------------*/
.ac-container-bolg {
  max-width: 1300px;
  margin: auto;
}

.ac-blog-hero-v2 {
  width: 100%;
  background: linear-gradient(135deg, #4f1952, #0b1c2d);
  padding: 80px 20px 80px;
}

.ac-blog-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  color: #fff;
}

.ac-blog-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .15);
  font-size: 13px;
  margin-bottom: 20px;
}

.ac-blog-hero-v2 h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.ac-blog-hero-v2 p {
  max-width: 520px;
  font-size: 18px;
  opacity: .9;
}

.ac-blog-list-v2 {
  /* margin-top: 80px;
  padding-bottom: 80px; */
}

.ac-blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .15);
  margin-bottom: 30px;
}

.ac-blog-list-v2 .ac-blog-featured:last-child {
  margin-bottom: 0;
}



.ac-blog-cat {
  color: #ff9800;
  font-weight: 600;
  font-size: 14px;
  display: block;
  text-align: left;
  color: #ff9800;
  font-weight: 600;
  letter-spacing: 3px;
  /* margin-bottom: 10px; */
  text-transform: uppercase;
  font-size: 14px;
}

.ac-blog-featured h2 {
  font-size: 34px;
  margin: 10px 0;
}

.ac-blog-featured p {
  color: #555;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.ac-blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.ac-blog-card-v2 {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
  transition: .3s ease;
}

.ac-blog-card-v2:hover {
  transform: translateY(-6px);
}

.ac-blog-card-v2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ac-blog-card-content {
  padding: 24px;
}

.ac-blog-card-content h3 {
  font-size: 20px;
  margin: 10px 0;
}

.ac-blog-card-content a {
  color: #ff9800;
  font-weight: 600;
}

.ac-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  /* margin-bottom: 60px; */
}

/* image styling */
.ac-blog-featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

/* content styling */
.ac-blog-featured-content {
  max-width: 520px;
}

/* 👉 ONLY 2nd article reverse */
.ac-blog-featured:nth-child(even) {
  direction: rtl;
}

.ac-blog-featured:nth-child(even)>* {
  direction: ltr;
}

.ac-blog-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Sidebar */
.ac-blog-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.ac-sidebar-box {
  background: #fff;
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(79, 25, 82, .12);
  margin-bottom: 30px;
}

.ac-blog-sidebar .ac-sidebar-box:last-child {
  margin-bottom: 0;
}

.ac-sidebar-box ul {
  margin-left: 20px;
}

.ac-sidebar-box h4 {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 18px;
}

.ac-sidebar-box ul li {
  margin-bottom: 12px;
}

.ac-sidebar-box ul li:last-child {
  margin-bottom: 0;
}

.ac-sidebar-box a {
  color: #555;
  transition: .3s;
}

.ac-sidebar-box a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.ac-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  /* margin-bottom: 12px; */
  font-size: 14px;
}

.ac-blog-meta-single {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 14px;
}

.ac-blog-date {
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ac-blog-date i {
  color: var(--secondary);
  /* #4f1952 */
}




/* Responsive */
@media(max-width:1199px) {
  .about-right {
    padding: 30px;
  }

  .ac-blog-layout {
    gap: 30px;
  }

  .ac-blog-single-grid {
    gap: 30px !important;
  }
}

@media(max-width:992px) {
  .ac-blog-layout {
    grid-template-columns: 1fr;
  }

  .ac-blog-sidebar {
    position: relative;
    top: auto;
  }

  .ac-sp-slider {
    width: 100%;
  }

  .ac-case-mockup.bg_sc .ac-container.ac-grid-2 {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ac-blog-featured-content h2 {
    margin-bottom: 15px !important;
  }

  .ac-blog-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ac-blog-featured:nth-child(even) {
    direction: ltr;
  }

  .ac-blog-hero-v2 h1 {
    font-size: 32px;
  }

  .ac-blog-hero-v2 {
    padding: 50px 20px 50px;
  }

  .ac-blog-featured {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* .ac-blog-list-v2 {
    margin-top: 50px;
  } */
}


























































/* Responsive */

@media (max-width: 1399px) {
  .pontmain {
    max-width: 100% !important;
    padding-left: 40px;
  }

  .ac-container-bolg {
    padding: 0px 20px;
  }
}

@media (max-width: 1299px) {
  .pontmain {
    max-width: 100% !important;
    padding-left: 20px;
  }

}

@media (max-width: 768px) {
  .ac-grid-2 {
    padding: 0px;
    gap: 20px;
  }

  .ac-meta {
    width: 100%;
    max-width: 100%;
  }

  .ac-grid-2,
  .ac-grid-3 {
    grid-template-columns: 1fr;
  }

  .ac-case-hero h1 {
    font-size: 32px;
  }

  .ac-sp-slider {
    max-width: 100%;
    padding: 18px;
  }

  .ac-sp-prev {
    left: 6px;
  }

  .ac-sp-next {
    right: 6px;
  }
}
















/* Responsive */
@media(max-width:768px) {
  .contact-card {
    padding: 40px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .form-trust,
  .recaptcha-box,
  .contact-btn {
    grid-column: span 1;
  }

  .section-title {
    font-size: 26px;
  }

  h2.section-title-con {
    margin-bottom: 30px !important;
  }
}

/* dots */
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6c6e1;
  transition: .3s;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

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

@media(max-width:992px) {
  .pontmain {
    max-width: 100% !important;
    display: flex;
    flex-wrap: wrap;
  }

  .menu {
    gap: 15px;
  }

  .ts-arrow {
    display: none;
  }

  .testimonial-dots {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 34px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    margin: 0px 15px;
  }

  .testimonial-card p {
    padding: 20px;
  }

  .testimonial-slider {
    height: 400px;
  }
}


/* @media (max-width: 992px){

  .ts-arrow{
    top:auto;
    bottom:-45px;
    transform:none;
  }

  .ts-arrow.left{
    left:50%;
    transform:translateX(-120%);
  }

  .ts-arrow.right{
    left:50%;
    right:auto;
    transform:translateX(20%);
  }
} */

@media(max-width:900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media(max-width:768px) {
  .footer-container {
    padding: 50px 20px 30px;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .projects-section {
    padding: 50px 20px;
  }

  .achievements-section {
    padding: 50px 0;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .services-section {
    padding: 50px 0px;
  }

  .about-section {
    padding: 50px 0;
  }

  .ac-case-mockup {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ac-case-details {
    padding: 50px 0;
  }

  .hero-buttons {
    justify-content: left;
  }

  /* .hero-content {
    padding: 0;
  } */

  .about-right {
    padding: 25px 20px;
  }

  .service-card {
    padding: 25px 15px;
  }

  h2 {
    font-size: 30px !important;
    text-wrap: balance;
    margin: 0px !important;
  }

  .menu.contctbtn-r {
    box-shadow: 0 14px 20px -12px rgba(79, 25, 82, 0.45);
    transition: all .3s ease;
  }

  .menu.contctbtn-r:hover {
    box-shadow: 0 20px 26px -14px rgba(79, 25, 82, 0.55);
    /* transform: translateY(-2px); */
  }

  .menu {
    position: absolute;
    top: 54px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: unset;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .menu.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .footer-container {
    flex-direction: column;
    /* text-align: center; */
  }

  .social-icons {
    justify-content: center;
  }

  .contctbtn-r .contact-buttons {
    display: none !important;
  }

  .contctbtn-r .contact-buttons2 {

    display: inline-flex;
  }
}




/* =================================================
   GLOBAL BUTTON EFFECTS – RIPPLE + ICON + GRADIENT
   ================================================= */

.paragraph-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn i,
.btn svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover i,
.btn:hover svg {
  transform: translateX(6px);
}

.btn.primary {
  background-size: 200% auto;
}

.btn.primary:hover {
  background-position: right center;
}


@media(max-width:460px) {
  .testimonial-slider {
    height: 500px;
  }

}

/* =========================
   SLIDER VISIBILITY LOGIC
========================= */

.project-slide {
  display: none;
}

.project-slide.active {
  display: block;
}

/* =========================
   DOTS
========================= */

.project-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.project-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6c6dc;
  transition: 0.3s;
}

.project-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* =========================
   MOBILE BEHAVIOUR
========================= */



@media (max-width: 768px) {
  .project-arrow {
    display: none;
  }

  .project-dots {
    display: flex;
  }


}



/* ===============================
   BLOG SINGLE PAGE
================================ */

/* Hero */
.ac-blog-single-hero {
  background: linear-gradient(120deg, #4f1952, #121a2f);
  padding: 80px 0 80px;
  color: #fff;
}

.ac-blog-single-hero .ac-blog-cat {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.ac-blog-single-hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #fff;
}

.ac-blog-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
  flex-wrap: wrap;
}

/* Layout */
.ac-blog-single {
  padding: 60px 0;
  background: #f4f2f6;
}

.ac-blog-single-grid {
  /* display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 40px; */
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Content Card */
.ac-blog-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.ac-blog-cover img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

/* Typography */
.ac-blog-content h2 {
  font-size: 26px;
  margin: 35px 0 15px;
  color: var(--dark);
}

.ac-blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.ac-blog-intro {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
}

/* List */
.ac-blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.ac-blog-content ul li {
  margin-bottom: 10px;
  color: #555;
}

/* Quote */
.ac-blog-content blockquote {
  margin: 35px 0;
  padding: 25px 30px;
  background: #f6f1f8;
  border-left: 5px solid #4f1952;
  font-style: italic;
  border-radius: 14px;
  color: #3f3f46;
}

/* Tags */
.ac-blog-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ac-blog-tags a {
  background: #f1e9f4;
  color: #4f1952;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: 0.3s;
}

.ac-blog-tags a:hover {
  background: #4f1952;
  color: #fff;
}



/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {

  .ac-blog-single-grid {
    grid-template-columns: 1fr;
  }

  .ac-blog-single-hero h1 {
    font-size: 32px;
  }

  .ac-blog-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .ac-blog-single-hero {
    padding: 50px 0 50px;
  }

  .ac-blog-single {
    padding: 50px 0;
  }

  .ac-blog-list-v2 {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .ac-sidebar-box {
    margin-bottom: 20px;
  }

  /* .ac-blog-single-hero {
    padding: 70px 0 50px;
  } */

  .ac-blog-single-hero h1 {
    font-size: 26px;
  }

  .ac-blog-content h2 {
    font-size: 22px;
  }
}

/* =========================
   ABOUT US PAGE
========================= */

.ac-about-hero {
  background: linear-gradient(120deg, #4f1952, #121a2f);
  color: #fff;
  padding: 80px 0 80px;
}

.ac-about-hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #fff;
}

.ac-about-hero p {
  max-width: 600px;
  font-size: 17px;
  opacity: 0.9;
}

.ac-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* Intro */
.ac-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ac-about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.ac-about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.ac-about-stats h3 {
  font-size: 32px;
  color: #6a1b9a;
  margin-bottom: 4px;
}

.ac-about-stats span {
  font-size: 14px;
  color: #666;
}

.ac-about-intro {
  padding: 80px 0;
}

.ac-about-purpose .ac-grid-2 {
  display: grid;
  /* grid-template-columns: 1.2fr 1fr; */
  gap: 50px;
  align-items: center;
}

.ac-about-text h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.ac-about-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.ac-value-card.ac-card p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  color: #555;
}

.ac-about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.ac-about-stats h3 {
  font-size: 50px;
  color: #4f1952;
  font-weight: 800;
}

.ac-about-stats span {
  font-size: 14px;
  color: #555;
}


/* Mission / Vision */
.ac-about-purpose {
  background: #f4f2f6;
  padding: 80px 0;
}

.ac-purpose-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.ac-purpose-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.ac-purpose-card.ac-card p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0px;
  color: #555;
}

/* ===============================
   ActiveCraft – Modern CTA
   =============================== */

.ac-cta-modern {
  background: linear-gradient(135deg, #4f1952, #121a2f);
  padding: 80px 0;
}

.ac-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ac-cta-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.ac-cta-content h2 span {
  color: #ff9f0a;
}

.ac-cta-content p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Button */
.ac-btn-cta {
  display: inline-block;
  padding: 16px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  color: #4f1952;
  background: #ffffff;
  transition: all 0.35s ease;
}

.ac-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.ac-cta-testimonial {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .ac-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ac-about-image {
    order: 1;
  }

  .ac-about-text {
    order: 2;
  }

  .ac-cta-wrap {
    flex-direction: column;
    text-align: center;
  }

  .ac-cta-content p {
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .ac-cta-content h2 {
    font-size: 32px;
  }
}

.ac-cta-modern {
  padding: 50px 0;
}

/* Values */
.ac-about-values {
  padding: 80px 0;
}

.ac-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ac-value-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ac-value-card h4 {
  margin-bottom: 10px;
  color: #4f1952;
  font-size: 20px;
  font-weight: 600;
}

.ac-about-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ac-about-icon img {
  width: 28px;
}

.ac-about-icon.mission {
  background: #fde7ef;
}

.ac-about-icon.vision {
  background: #ede9ff;
}

/* .ac-about-icon.precision {
  background: #fff3e0;
}

.ac-about-icon.transparency {
  background: #e0f2fe;
}

.ac-about-icon.flexibility {
  background: #e8f5e9;
} */
/* About Page Icons – SAME AS HOME */

.ac-about-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff4e5, #ffe0b2);
  transition: .4s ease;
}

.ac-about-icon svg {
  width: 34px;
  height: 34px;
  stroke: #f90;
  fill: none;
  stroke-width: 1.8;
  transition: .4s ease;
}

/* Hover effect – exact home page */
.ac-card:hover .ac-about-icon {
  background: #4f1952;
}

.ac-card:hover .ac-about-icon svg {
  stroke: #ffffff;
}

.ac-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.ac-purpose-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ac-purpose-card p {
  flex-grow: 1;
}

.ac-purpose-card {
  min-height: 260px;
}


/* ===============================
   ActiveCraft – Common Card Hover
   =============================== */

.ac-card {
  background: #ffffff;
  border-radius: 20px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Optional soft border glow */
.ac-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.ac-card:hover::after {
  border-color: rgba(0, 0, 0, 0.12);
}


/* Responsive */
@media (max-width: 992px) {
  .ac-grid-2 {
    grid-template-columns: 1fr;
  }

  .ac-values-grid {
    grid-template-columns: 1fr;
  }

  .ac-about-hero h1 {
    font-size: 32px;
  }

  .ac-about-intro .ac-container {
    padding: 20px;
    gap: 30px;
  }

  .ac-about-purpose .ac-grid-2 {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ac-about-intro .ac-container {
    padding: 0px;
  }

  .ac-about-values {
    padding: 50px 0;
  }

  .ac-about-purpose {
    padding: 50px 0;
  }

  .padl-r20 {
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }

  .ac-about-hero {
    padding: 50px 0 50px;
  }

  .ac-about-intro {
    padding: 50px 20px;
  }

  .ac-about-text h2 {
    font-size: 32px;
  }

  .ac-about-stats h3 {
    font-size: 30px;
  }

  .ac-purpose-card {
    padding: 25px 20px;
  }

  .ac-value-card {
    padding: 25px 20px;
  }
}

@media (max-width: 360px) {
  .ac-about-stats h3 {
    font-size: 25px;
  }
}

/* ================================
   SERVICES PAGE – ActiveCraft
================================ */

/* HERO */
.ac-services-hero {
  background: linear-gradient(120deg, #4f1952, #0c1b3a);
  color: #fff;
  padding: 90px 0;
}

.ac-services-hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.ac-services-hero h1 span {
  color: #ff9800;
}

.ac-services-hero p {
  max-width: 600px;
  margin-top: 15px;
  opacity: .9;
}

/* GRID */
.ac-services-v2 {
  padding: 80px 0;
  background: #faf9fc;
}

.ac-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.ac-service-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transition: all .35s ease;
}

.ac-service-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 152, 0, .15);
  color: #ff9800;
  font-size: 26px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ac-service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ac-service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.ac-service-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.ac-service-card ul li {
  font-size: 14px;
  color: #444;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.ac-service-card ul li::before {
  content: "•";
  color: #ff9800;
  position: absolute;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ac-services-hero h1 {
    font-size: 34px;
  }
}


/* ================================
   SERVICES PAGE – VERSION 2
================================ */

/* HERO */
.ac-services-hero-v2 {
  padding: 90px 0;
  background: linear-gradient(135deg, #4f1952, #0c1b3a);
  color: #fff;
}

.ac-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}

.ac-services-hero-v2 h1 {
  font-size: 48px;
  font-weight: 700;
}

.ac-services-hero-v2 h1 span {
  color: #ff9800;
}

.ac-services-hero-v2 p {
  max-width: 520px;
  margin-top: 15px;
  opacity: .9;
}

.ac-hero-accent {
  height: 220px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
}

/* SERVICES LIST */
.ac-services-list {
  padding: 80px 0;
  background: #faf9fc;
}

/* ================================
   SERVICE CARD – ENHANCED VERSION
================================ */

.ac-service-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 35px;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 40px 45px;
  margin-bottom: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle accent line */
.ac-service-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ff9800, #4f1952);
  opacity: .85;
}

/* BADGE */
.ac-service-badge {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 152, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-service-badge span {
  font-size: 26px;
  font-weight: 700;
  color: #ff9800;
}

/* CONTENT */
.ac-service-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.ac-service-info p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  max-width: 620px;
  margin-bottom: 18px;
}

/* TAGS */
.ac-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ac-service-tags span {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #f5f3fa;
  color: #4f1952;
  border: 1px solid rgba(79, 25, 82, .15);
}

/* CTA */
.ac-service-action {
  align-self: center;
}

/* HOVER (same rule as home cards) */
.ac-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .12);
}

.ac-service-row:last-child {
  margin-bottom: 0;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .ac-service-row {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .ac-service-action {
    margin-top: 20px;
  }

  .ac-hero-grid {
    grid-template-columns: 1fr;
  }

  .ac-service-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ac-btn-outline {
    margin-top: 15px;
    width: fit-content;
  }

  .ac-services-list .ac-service-action {
    margin-top: 0px;
  }

  .ac-service-row {
    gap: 20px !important;
  }

  .ac-services-list .ac-service-action {
    margin-top: 6px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .ac-services-list {
    padding: 50px 0;
  }

}

.ac-inner-hero {
  max-width: 1200px;
  margin: 40px auto;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(120deg, #4b145b, #0a2540);
  color: #fff;
}

.ac-inner-hero-content {
  max-width: 620px;
}

.ac-section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ff9800;
  margin-bottom: 14px;
}

.ac-inner-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ac-inner-hero p {
  font-size: 16px;
  opacity: .9;
}

.ac-contact-v2 {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(79, 25, 82, 0.06) 0%, rgba(79, 25, 82, 0.12) 50%, rgba(79, 25, 82, 0.06) 100%);
}

.ac-contact-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

/* CONTACT LEFT SECTION */
/* .ac-contact-v2-content {
  padding-right: 40px;
} */

.ac-contact-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
}

.ac-contact-title span {
  color: #ff9800;
}

.ac-contact-desc {
  font-size: 18px;
  color: #555;
  max-width: 420px;
  margin-bottom: 50px;
}

/* INFO LIST */
.ac-contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ac-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.ac-contact-info-item:last-child {
  margin-bottom: 0;
}

.ac-contact-info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ICON */
.ac-contact-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff9800, #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* TEXT */
.ac-contact-info-item .label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.ac-contact-info-item a {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.ac-contact-info-item a:hover {
  color: #ff9800;
}


/* FORM WRAPPER */
.ac-form-modern {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .12);
}

.ac-form-modern h3 {
  font-size: 36px;
  margin-bottom: 6px;
}

.ac-form-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

.ac-form-modern .btn.purple {
  margin-top: 30px;
}

/* GRID */
.ac-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}

/* FIELD */
.ac-form-field {
  position: relative;
}

.ac-form-field input,
.ac-form-field textarea {
  width: 100%;
  padding: 18px 14px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: .3s;
}

.ac-form-field textarea {
  min-height: 140px;
  resize: none;
}

/* LABEL */
.ac-form-field label {
  position: absolute;
  top: 50%;
  left: 14px;
  font-size: 13px;
  color: #999;
  background: #fff;
  padding: 0 6px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: .3s;
}

/* FLOAT EFFECT */
.ac-form-field input:focus,
.ac-form-field textarea:focus {
  border-color: #ff9800;
}

.ac-form-field input:focus+label,
.ac-form-field textarea:focus+label,
.ac-form-field input:not(:placeholder-shown)+label,
.ac-form-field textarea:not(:placeholder-shown)+label {
  top: 0px;
  font-size: 15px;
  color: #555;
}

/* BUTTON */
.ac-form-btn {
  margin-top: 20px;
  padding: 14px 34px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1299px) {
  .ac-contact-v2-grid {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .mySwiper-homebanner .hero-content {
    margin-left: 0px !important;
  }

  .ac-contact-v2-grid {
    gap: 40px;
  }

  .ac-contact-v2-grid {
    grid-template-columns: 1fr;
  }

  .ac-contact-v2-row {
    grid-template-columns: 1fr;
  }

  .ac-form-modern h3 {
    font-size: 30px;
    margin-bottom: 6px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ac-contact-title {
    margin-bottom: 20px !important;
  }

  .ac-contact-title br {
    display: none;
  }

  .ac-contact-v2-grid {
    gap: 40px;
  }

  .ac-form-grid {
    grid-template-columns: 1fr;
  }

  .ac-contact-v2 {
    padding: 50px 0;
  }

  .ac-form-modern {
    padding: 20px;
  }

  .ac-form-modern .btn.purple {
    margin-top: 20px;
  }
}





/* Privacy Content */
.ac-privacy {
  padding: 80px 0;
  background: #fff;
}

.ac-privacy-block {
  margin-bottom: 40px;
}

.ac-privacy h1 {
  font-size: 42px;
}

.ac-privacy h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.ac-privacy-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.ac-privacy-block ul {
  margin-top: 10px;
  padding-left: 18px;
}

.ac-privacy-block ul li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #555;
}

.ac-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.ac-link:hover {
  text-decoration: underline;
}

.ac-privacy-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ac-privacy h1 {
    font-size: 32px;
  }

  .ac-privacy h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .ac-privacy {
    padding: 60px 0;
  }

  .ac-privacy-block {
    margin-bottom: 30px;
  }


}

/* Terms & Conditions Content */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ac-terms {
  background: #fff;
}

.ac-terms-block {
  margin-bottom: 40px;
}

.ac-terms h1 {
  font-size: 42px;
}

.ac-terms h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.ac-terms-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.ac-terms-block ul {
  margin-top: 10px;
  padding-left: 18px;
}

.ac-terms-block ul li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #555;
}

/* Shared link style – same as Privacy */
.ac-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.ac-link:hover {
  text-decoration: underline;
}

.ac-terms-block:last-child {
  margin-bottom: 0;
}

/* Responsive – same breakpoints, same scale */
@media (max-width: 768px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ac-terms h1 {
    font-size: 32px;
  }

  .ac-terms h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .ac-terms-block {
    margin-bottom: 30px;
  }
}



/* ============ HERO SLIDER: 3 DIFFERENT ANIMATIONS ============ */

/* Base hidden (same for all) */
.mySwiper-homebanner .swiper-slide .hero-content>* {
  opacity: 0;
  /* filter: blur(7px); */
  transition:
    opacity 1.25s cubic-bezier(.22, .61, .36, 1),
    transform 1.25s cubic-bezier(.22, .61, .36, 1),
    filter 1.25s cubic-bezier(.22, .61, .36, 1);
  will-change: transform, opacity, filter;
}

/* Stagger (slow so it’s visible) */
.mySwiper-homebanner .swiper-slide .hero-content .tagline {
  transition-delay: .25s;
}

.mySwiper-homebanner .swiper-slide .hero-content h1 {
  transition-delay: .50s;
}

.mySwiper-homebanner .swiper-slide .hero-content p {
  transition-delay: .75s;
}

.mySwiper-homebanner .swiper-slide .hero-content .hero-buttons {
  transition-delay: 1.00s;
}

/* Active = visible */
.mySwiper-homebanner .swiper-slide-active .hero-content>* {
  opacity: 1;
  filter: blur(0);
}

/* ---------------- Slide 1: UP (clear vertical movement) ---------------- */
.mySwiper-homebanner .slide-1 .hero-content>* {
  transform: translateY(50px);
}

.mySwiper-homebanner .swiper-slide-active.slide-1 .hero-content>* {
  transform: translateY(0);
}

/* ---------------- Slide 2: CENTER (zoom + soft pop) ---------------- */
.mySwiper-homebanner .slide-2 .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
}

.mySwiper-homebanner .slide-2 .hero-buttons {
  display: flex;
  justify-content: start;
  gap: 15px;
}

/* Different feel: scale + slight rotate back to 0 */
.mySwiper-homebanner .slide-2 .hero-content>* {
  transform: scale(.92) translateY(18px);
}

.mySwiper-homebanner .swiper-slide-active.slide-2 .hero-content>* {
  transform: scale(1) translateY(0);
  text-align: center;
}

/* ---------------- Slide 3: DIAGONAL (right-down to center) ---------------- */
.mySwiper-homebanner .slide-3 .hero-content>* {
  transform: translate(70px, 35px);
}

.mySwiper-homebanner .swiper-slide-active.slide-3 .hero-content>* {
  transform: translate(0, 0);
}

/* Background motion: each slide different */
.mySwiper-homebanner .hero-banner {
  /* will-change: transform;
  transition: transform 7s cubic-bezier(.22, .61, .36, 1);
  transform: scale(1); */
}

.mySwiper-homebanner .swiper-slide-active.slide-1 .hero-banner {
  /* transform: scale(1.06); */
}

.mySwiper-homebanner .swiper-slide-active.slide-2 .hero-banner {
  /* transform: scale(1.05) translateY(-8px); */
}

.mySwiper-homebanner .swiper-slide-active.slide-3 .hero-banner {
  /* transform: scale(1.05) translateX(12px); */
}

/* Mobile: keep slide-2 centered */
@media (max-width: 768px) {
  .mySwiper-homebanner .slide-2 .hero-content {
    max-width: 92%;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mySwiper-homebanner .swiper-slide .hero-content>* {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .mySwiper-homebanner .hero-banner {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .mySwiper-homebanner .swiper-slide-active.slide-3 .hero-banner {
    transform: unset;
  }

  .mySwiper-homebanner .hero-banner {
    transition: unset;
  }

  .hero-container {
    padding: 0px 20px;
  }
}

@media (max-width: 600px) {

  /* .hero-container {
    padding-left: 37px;
} */
  .btn {
    padding: 9px 24px;
  }

  h2 {
    font-size: 28px !important;
  }
}


/* ===================================================
   SLIDE CONTENT DESIGN VARIATIONS (NO HTML CHANGE)
   =================================================== */

/* Common improvement */
.mySwiper-homebanner .hero-content {
  max-width: 680px;
  margin-left: 130px;
}

/* ===================================================
   SLIDE 1 — Elegant / Corporate / Clean
   =================================================== */

.mySwiper-homebanner .slide-1 .tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.mySwiper-homebanner .slide-1 .tagline::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.mySwiper-homebanner .slide-1 h1 span {
  position: relative;
}

/* .mySwiper-homebanner .slide-1 h1 span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 100px;
} */


/* ===================================================
   SLIDE 2 — Premium Center Glass Card
   =================================================== */

.mySwiper-homebanner .slide-2 .hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mySwiper-homebanner .slide-2 .hero-content .tagline {
  letter-spacing: 3px !important;
  font-size: 14px;
  color: #e9cfa8;
  text-align: left;
}

.mySwiper-homebanner .slide-2 .tagline {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(249, 153, 0, 0.20);
  font-weight: 600;
  margin-bottom: 12px;
}

.mySwiper-homebanner .slide-2 .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}


/* ===================================================
   SLIDE 3 — Bold / Dynamic CTA Focus
   =================================================== */

.mySwiper-homebanner .slide-3 .tagline {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mySwiper-homebanner .slide-3 h1 {
  line-height: 1.2;
}

.mySwiper-homebanner .slide-3 .hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mySwiper-homebanner .slide-3 .btn.primary {
  box-shadow: 0 18px 45px rgba(249, 153, 0, 0.35);
  transform: translateY(0);
  transition: 0.3s ease;
}

.mySwiper-homebanner .slide-3 .btn.primary:hover {
  transform: translateY(-4px);
}

/* .mySwiper-homebanner .slide-3 .btn.secondary{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
} */


/* ===================================================
   MOBILE TWEAKS
   =================================================== */

@media (max-width: 768px) {

  .mySwiper-homebanner .slide-2 .hero-content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .mySwiper-homebanner .slide-3 .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .mySwiper-homebanner .slide-2 .hero-buttons {
    gap: 12px;
  }

  .mySwiper-homebanner .btn {
    padding: 9px 16px;
    font-size: 14px;
  }

  .swiper-pagination {
    bottom: 22px !important;
  }

  .hero-content .tagline {
    font-size: 11px;
  }

  .mySwiper-homebanner .slide-2 .hero-content .tagline {
    font-size: 11px;
    text-align: center;
    margin-bottom: 0;
  }

  .swiper-slide p {
    font-size: 16px;
    line-height: 1.5;
  }

  .mySwiper-homebanner .slide-1 .tagline::before {
    width: 20px;
  }

}

@media (max-width: 375px) {}