/* Major Wesbite Font Family */
/* For Paragraphs */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Saira:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  /* ========================================
       LEGACY VARIABLES (Keep for compatibility)
       ======================================== */
  --theme: #0B54FE;
  --prime-gradient: radial-gradient(circle at center, #7DF9FF, #0B54FE);
  --primary-color: #0B54FE;
  --secondary-clr: #FF1493;
  --heading-font: 'IBM Plex Sans', sans-serif;
  --paragraph-font: "Open Sans", sans-serif;
  --faq-font: 'JetBrains Mono', monospace;
  --body-bg: #ffeef4;
  --border-clr: lightgrey;
  --light-filler-clr: #fcc5f1;
  --filler-clr: #ef9651;
  --white-clr: #fff;
  --black-text-clr: #2e2e2e;
  --para-clr: #5e5e5e;
  --yellow-clr: yellow;
  --light_purple: #fbfbfb;
  --light-bg: #ffffff;


  /* ========================================
       HEADER & NAVIGATION VARIABLES
       ======================================== */
  --accent-color: #3498DB;
  --tertiary-color: #9B59B6;

  /* --- BUTTON COLORS --- */
  --btn-blue-bg: linear-gradient(135deg, #0B54FE 0%, #3B82F6 50%, #06B6D4 100%);
  --btn-blue-bg-hover: linear-gradient(135deg, #FF1493 0%, #F472B6 50%, #FB7185 100%);
  --btn-pink-bg: linear-gradient(135deg, #FF1493 0%, #F472B6 50%, #FB7185 100%);
  --btn-pink-bg-hover: linear-gradient(135deg, #0B54FE 0%, #3B82F6 50%, #06B6D4 100%);
  --btn-shadow-blue: rgba(11, 84, 254, 0.5);
  --btn-shadow-pink: rgba(255, 20, 147, 0.5);

  /* --- TEXT COLORS --- */
  --menu-text-clr: #2C3E50;
  --menu-text-hover: #FF1493;
  --dropdown-text-clr: #34495E;
  --dropdown-text-hover: #0B54FE;

  /* --- BACKGROUND COLORS --- */
  --header-bg: rgba(255, 255, 255, 0.15);
  --dropdown-bg: rgba(255, 255, 255, 0.98);
  --mobile-header-bg: rgba(255, 255, 255, 0.25);

  /* --- GLASSMORPHISM EFFECTS --- */
  --glass-bg-light: rgba(255, 255, 255, 0.3);
  --glass-bg-medium: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-backdrop: blur(12px);

  /* --- GRADIENT BACKGROUNDS --- */
  --gradient-orb-1: linear-gradient(135deg, #FF1493 0%, #0B54FE 100%);
  --gradient-orb-2: linear-gradient(135deg, #0B54FE 0%, #9B59B6 100%);
  --gradient-underline: linear-gradient(90deg, #FF1493, #0B54FE);

  /* --- SHADOW COLORS --- */
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-heavy: rgba(0, 0, 0, 0.2);
  --shadow-primary: rgba(11, 84, 254, 0.25);
  --shadow-secondary: rgba(255, 20, 147, 0.35);

  /* --- BORDER COLORS --- */
  --border-light: rgba(255, 255, 255, 0.4);
  --border-dropdown: #f0f0f0;

  /* --- ICON COLORS --- */
  --icon-green: #25D366;
  --icon-orange: #ff5722;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font) !important;
  font-weight: 700;
}

/* Body text & inline elements */
body,
p,
span,
a,
li,
ul,
ol,
input,
button,
textarea,
label,
small,
strong,
div {
  font-family: var(--paragraph-font) !important;
  font-weight: 400;
  line-height: 1.5;
}

/* Disable Image Grabbing/Selection */
img {
  user-select: none;
  pointer-events: none;
}

body {
  font-family: var(--paragraph-font);
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  background-color: var(--body-bg);
}

ul,
ol {
  list-style: none;
}

#header-fixed {
  width: 100%;
  position: fixed;
  z-index: 1000;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: var(--prime-gradient);
  /* background-color: rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid var(--filler-clr);
}

#header-fixed .head-top {
  padding: 0;
  color: var(--white-clr);
  position: relative;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.custom-wrapper {
  max-width: 1250px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.contact-info-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.head-logo {
  max-width: 225px;
  display: block;
  padding: 0 10px;
}

.head-logo .main-logo {
  width: 100%;
  display: block;
}

#header-fixed .head-top .contact-info {
  display: flex;
  align-items: center;
}

#header-fixed .head-top .contact-info .phone:hover {
  color: var(--yellow-clr);
}

.button_animation {
  background-color: #6d007d !important;
  -webkit-animation: gradient 53s linear infinite;
  animation: gradient 53s linear infinite;
  background: linear-gradient(121.19deg,
      rgba(133, 239, 49, 0) 25.73%,
      rgba(255, 255, 255, 0.3) 45.27%,
      rgba(133, 239, 49, 0) 62.27%),
    #6d007d;
  border-radius: 8px;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  /* min-width: 136px; */
  display: inline-block;
  border: 0 !important;
  margin-right: 25px;
  gap: 10px;
}

.item-center-align {
  display: flex;
  align-items: center;
}

#header-fixed .head-top .contact-info .phone {
  margin-right: 25px;
}

#header-fixed .head-top .contact-info .phone {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
}

.type--A {
  --line_color: #ffecf6;
  --back_color: #555555;
}

/* book app btn */
.app-btn {
  --h-button: 48px;
  --w-button: 102px;
  --round: 5px;
  margin-right: 25px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%),
    linear-gradient(0deg, #7a5af8, #7a5af8);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 8px 18px;
  font-family: var(--heading-font) !important;
}

.app-btn::before,
.app-btn::after {
  content: '';
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}

.app-btn::before {
  --space: 1px;
  background: linear-gradient(177.95deg,
      rgba(255, 255, 255, 0.19) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.app-btn::after {
  --space: 2px;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%),
    linear-gradient(0deg, #7a5af8, #7a5af8);
}

.app-btn:active {
  transform: scale(0.95);
}

.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(100% 75% at 55%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%);
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}

.fold::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #e8e8e8;
  pointer-events: none;
}

.app-btn:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}

@keyframes floating-points {
  0% {
    transform: translateY(0);
  }

  85% {
    opacity: 0;
  }

  100% {
    transform: translateY(-55px);
    opacity: 0;
  }
}

.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
  font-family: var(--heading-font) !important;
}

@media (max-width: 767px) {
  .inner {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
  }
}

.inner svg.icon {
  width: 18px;
  height: 18px;
  transition: fill 0.1s linear;
}

.app-btn:focus svg.icon {
  fill: white;
}

.app-btn:hover svg.icon {
  fill: transparent;
  animation:
    dasharray 1s linear forwards,
    filled 0.1s linear forwards 0.95s;
}

@keyframes dasharray {
  from {
    stroke-dasharray: 0 0 0 0;
  }

  to {
    stroke-dasharray: 68 68 0 0;
  }
}

@keyframes filled {
  to {
    fill: white;
  }
}

#header-fixed .header-bt {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 20px;
  margin-right: 25px;
  /* background: linear-gradient(145deg, rgba(20, 20, 40, 0.4), rgba(40, 20, 60, 0.3)); */
  /* border: 1px solid rgba(138, 43, 226, 0.3); */
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2); */
  font-family: var(--heading-font) !important;
}

#header-fixed .header-bt:after {
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 223, 0, 0.4),
      rgba(255, 235, 59, 0.7),
      #FFEB3B,
      #FFFF00,
      #FFFFFF,
      #FFFF00,
      #FFEB3B,
      rgba(255, 235, 59, 0.7),
      rgba(255, 223, 0, 0.4),
      transparent);
  bottom: -1px;
  left: -100px;
  animation: 3.5s ease-in-out infinite tech_slide_right;
  width: 100px;
  height: 2px;
  position: absolute;
  border-radius: 100px;
  content: "";
  box-shadow:
    0 0 25px rgba(255, 255, 0, 0.9),
    0 0 50px rgba(255, 235, 59, 0.7),
    0 0 75px rgba(255, 223, 0, 0.5);
  filter: blur(1px);
}


#header-fixed .header-bt:before {
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 223, 0, 0.4),
      rgba(255, 235, 59, 0.7),
      #FFEB3B,
      #FFFF00,
      #FFFFFF,
      #FFFF00,
      #FFEB3B,
      rgba(255, 235, 59, 0.7),
      rgba(255, 223, 0, 0.4),
      transparent);
  top: -1px;
  right: -100px;
  animation: 3.5s ease-in-out infinite tech_slide_left;
  width: 100px;
  height: 2px;
  position: absolute;
  border-radius: 100px;
  content: "";
  box-shadow:
    0 0 25px rgba(255, 255, 0, 0.9),
    0 0 50px rgba(255, 235, 59, 0.7),
    0 0 75px rgba(255, 223, 0, 0.5);
  filter: blur(1px);
}


@keyframes tech_slide_right {
  0% {
    left: -100px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}


@keyframes tech_slide_left {
  0% {
    right: -100px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    right: 100%;
    opacity: 0;
  }
}

#header-fixed .header-bt:hover {
  color: #FFFF00;
  border-color: rgba(255, 235, 59, 0.6);
  background: linear-gradient(145deg, rgba(60, 50, 20, 0.6), rgba(80, 65, 30, 0.4));
  transform: translateY(-2px);
  box-shadow:
    0 6px 25px rgba(255, 223, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


#header-fixed .header-bt:hover:before,
#header-fixed .header-bt:hover:after {
  animation-duration: 2s;
  box-shadow:
    0 0 25px rgba(255, 255, 0, 1),
    0 0 50px rgba(255, 235, 59, 0.7),
    0 0 80px rgba(255, 223, 0, 0.4);
}


#header-fixed .header-bt:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 223, 0, 0.3);
}


.login_btn {
  position: relative;
  padding: 8px 1.8em !important;
  outline: none;
  border: 1px solid var(--white-clr);
  background: transparent;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  overflow: hidden;
  transition: 0.2s;
  border-radius: 5px !important;
  cursor: pointer;
  font-weight: 600;
}

.custom_container {
  max-width: 1250px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.custom_container .display_content_testimonial {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  /* Default for mobile */
  gap: 20px;
  /* Add some spacing between grid items */
  padding: 15px;
}

.custom_container .display_content_testimonial .content__area {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: flex-start;
  margin: auto;
}

.custom_container .display_content_testimonial .image__area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.display_content_testimonial .hero_img {
  max-width: 400px;
}

.hero_img {
  width: 100%;
  object-fit: contain;
}

img,
svg {
  vertical-align: middle;
}

.fancy_text {
  background-color: var(--secondary-clr);
  color: var(--white-clr) !important;
  border-radius: 12px;
  padding: 8px;
  line-height: 35px;
  display: inline-block;
  letter-spacing: 1.53px;
  font-weight: 700;
}

.content__area h1 span,
.content__area .h1 span {
  color: var(--secondary-clr);
}

.hero__section label {
  color: #6d007d;
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin: 0 0 15px 0;
  font-weight: 600;
  letter-spacing: 1.28px;
}

.common_section {
  padding: 40px 0 30px;
  position: relative;
}

.common_section2 {
  padding: 40px 0 30px;
  position: relative;
}

.common_section h1,
.common_section .h1 {
  font-size: 40px;
  color: var(--black-text-clr);
  font-weight: 700;
  font-family: var(--paragraph-font);
  max-width: 500px;
  margin: 0;
}

.common_section p {
  font-size: 16px;
  color: var(--para-clr);
  font-family: var(--paragraph-font);
  margin: 40px 0 50px;
  max-width: 500px;
  font-weight: 500;
  line-height: 1.7;
}

.common_section2 p {
  font-size: 14px;
  color: var(--para-clr);
  font-weight: 500;
}

.hero__section.hero_image {
  max-width: 400px;
}

.display_cards_testimonial {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 50px;
  gap: 30px;
}

.manage_card .card-wrap {
  box-shadow: 0px 2px 6px #00000024;
  transition: 0.3s ease-in-out;
  border-radius: 24px;
  padding: 20px 20px 80px 20px;
  background-color: #ffffff;
  height: 100%;
  position: relative;
}

.manage_card .card-wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.manage_card .card-wrap h2,
.manage_card .card-wrap .h2 {
  color: #060640;
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0;
}

.manage_card .card-wrap p {
  color: #504e5d;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 10px;
}

.manage_card .card-wrap .common_home_btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.common_home_btn {
  background: var(--secondary-clr);
  border-radius: 15px;
  padding: 14px 20px 14px 20px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.transparent_button {
  background-color: transparent;
  padding: 14px 55px 14px 20px;
  border: 0;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  color: #000000;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.display_cards_testimonial .grid_cta .gird-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
}

.display_cards_testimonial .grid_cta h2,
.display_cards_testimonial .grid_cta .h2 {
  color: var(--para-clr);
  font-size: 20px;
  font-family: var(--paragraph-font);
  margin: 0;
  font-weight: 700;
}

.display_cards_testimonial .grid_card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.display_cards_testimonial .grid_card p {
  color: var(--para-clr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--paragraph-font);
  margin: 10px 0 20px;
}

.display_cards_testimonial .grid_border {
  position: relative;
  padding-bottom: 30px;
}

.display_cards_testimonial .grid_border::after {
  content: '';
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  border-radius: 50px;
  background-image: linear-gradient(91deg,
      var(--secondary-clr) 0%,
      var(--primary-color) 100%);
}

.testimonial_wrap {
  background-image: url(../../images/home-assets/bg-4.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 20px 0 20px;
  position: relative;
}

.gradient_section {
  padding: 180px 0 120px 0;
  background: url(../../assets/hero-images/content_bg/graphic7.png) no-repeat;
  background-size: cover;
  background-color: var(--para-clr);
}

.gradient_section .content__area .h1,
.gradient_section .content__area p,
.gradient_section .content__area .transparent_button {
  color: white;
}

.gradient_section .display_content_testimonial {
  gap: 100px;
}

.gradient_section .process_road {
  width: 100%;
  margin: 170px 0 0 0;
}

.belowtext_img {
  width: 150px;
  object-fit: contain;
  margin-top: 10px;
  display: block;
}

.process_section {
  padding: 200px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.process_section .blockLeft {
  position: relative;
}

.process_section h2 {
  font-size: 45px;
  line-height: 50px;
  color: var(--black-text-clr);
  font-weight: 700;
  font-family: var(--paragraph-font);
  max-width: 320px;
  width: 100%;
  margin: 0 0 24px 0;
  position: relative;
}

.PurpleTxt {
  color: var(--secondary-clr);
}

.process_section p {
  max-width: 450px;
  line-height: 30px;
  font-size: 16px;
}

.process_section .process_steps {
  position: relative;
  top: -200px;
}

/* For tablets and small laptops */
@media (min-width: 600px) {
  .custom_container .display_content_testimonial {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

@media screen and (max-width: 767px) {

  .display_content_testimonial h1,
  .display_content_testimonial .h1 {
    font-size: 26px;
  }

  .display_content_testimonialp p {
    margin: 20px 0;
  }
}

@media screen and (max-width: 1024px) {

  .display_content_testimonial h1,
  .display_content_testimonial .h1 {
    font-size: 30px;
  }
}

.display_cards_testimonial {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  /* Default for mobile */
  align-items: center;
  margin-top: 50px;
  gap: 30px;
  /* Spacing between grid items */
}

@media (max-width: 600px) {
  .display_cards_testimonial {
    padding: 15px;
  }
}

@media (min-width: 600px) {
  .display_cards_testimonial {
    grid-template-columns: repeat(2, 1fr);
    /* Two columns for tablets */
  }
}

@media (min-width: 1024px) {
  .display_cards_testimonial {
    grid-template-columns: repeat(3, 1fr);
    /* Three columns for laptops */
  }
}

@media screen and (max-width: 767px) {
  .display_cards_testimonial .grid_border {
    padding-bottom: 0;
  }

  .display_cards_testimonial .grid_border::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .process_section {
    padding: 100px 0 180px 0;
  }
}

@media (max-width: 991px) {
  .process_section .process_steps {
    top: 50px;
  }
}

.headText_section {
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.headText_section h2 {
  font-size: 40px;
  color: #000000;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0 0 10px 0;
}

.headText_section h2 span {
  color: var(--secondary-clr);
}

.headText_section p span {
  font-weight: 600;
}

.headText_section p {
  font-size: 18px;
  color: var(--para-clr);
  font-weight: 400;
  font-family: var(--paragraph-font);
  margin: 0 auto 20px;
  max-width: 800px;
}

.compSection_wrap {
  padding: 80px 0 30px;
  position: relative;
  overflow: visible;
}

.news_section .collage_img {
  width: 100%;
  display: block;
  margin: 30px 0;
}

.common_section h2 {
  font-size: 45px;
  line-height: 50px;
  color: var(--black-text-clr);
  font-weight: 700;
  font-family: var(--paragraph-font);
  /* max-width: 320px; */
  width: 100%;
  margin: 0 0 24px 0;
  position: relative;
}

.common_section .clr-btn {
  color: var(--secondary-clr);
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .news_section h1,
  .news_section h2 {
    font-size: 26px;
  }
}

.workflow_section {
  background-size: cover !important;
  background: url(../hero-images/content_bg/block_background.jpg) no-repeat;
  background-position: center top;
  padding: 180px 0 100px 0;
  position: relative;
  max-height: min-content;
}

.workflow_section h2 {
  text-align: center;
  margin-bottom: 100px;
}

.workflow_section h2 {
  font-size: 40px;
  color: var(--black-text-clr);
  font-weight: 700;
  margin: 0;
  line-height: normal;
}

.workflow_section h2 {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.common_section label {
  color: #6d007d;
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin: 0 0 15px 0;
  font-weight: 600;
  letter-spacing: 1.28px;
}

.socialMedia_section h2 {
  font-size: 40px;
  color: var(--secondary-clr);
  font-weight: 700;
  margin: 0;
  line-height: normal;
}

.socialMedia_section p {
  font-size: 16px;
  line-height: 170%;
  color: var(--para-clry);
  letter-spacing: 0.5px;
  margin: 25px 0 35px;
}

.approach_card {
  width: calc(25% - 20px);
  margin: 10px;
  padding: 40px 24px;
  background: #ffffff;
  box-shadow: 0px 2px 6px #00000014;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

.approach_card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
}

.approach_card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text-clr);
  max-width: 210px;
  min-height: 44px;
  margin-bottom: 14px;
}

.approach_card p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--para-clr);
}

@media (max-width: 767px) {
  .approach_card {
    width: 100%;
    z-index: 1;
  }
}

.page_banner {
  /* background-image: url(../../assets/hero-images/section_images/page_banner-bg.jpg); */
  background-color: var(--light-filler-clr);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 5% 0 5%;
  margin: 74px 0 0px;
  position: relative;
}

.page_banner2 {
  background-image: url(../../assets/hero-images/section_images/page_banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 2.5% 0 0 !important;
  margin: 74px 0 0px;
  position: relative;
}

.page_banner::before {
  content: '';
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}

.page_banner .banner_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  /* max-width: 600px; */
  margin: 0 auto;
}

.page_banner h1 {
  font-size: 30px;
  color: var(--black-text-clr);
  font-weight: 700;
  margin: 0;
}

.page_banner h1 span {
  color: var(--secondary-clr);
}

.page_banner p {
  font-family: var(--paragraph-font);
  color: var(--black-text-clr);
  font-weight: 500;
  margin: 15px 0 20px 0;
  max-width: 690px;
  font-size: 20px;
  padding-bottom: 20px;
}

.enquiry_section .enq_card {
  padding: 25px 15px 80px 15px;
  box-shadow: 0px 0 10px #e2e2e2;
  border-radius: 24px;
  position: relative;
  text-align: center;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}

.enquiry_section .enq_card .box_img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.enquiry_section .enq_card h3 {
  color: var(--black-text-clr);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--paragraph-font);
  margin: 10px 0;
}

.enquiry_section .enq_card p {
  font-family: var(--paragraph-font);
  color: var(--para-clr);
  font-weight: 500;
  margin: 0;
  font-size: 16px;
  text-align: justify;
}

.enquiry_section .enq_card .footer_box {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--secondary-clr);
  border-radius: 0 0 10px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 60px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

@media screen and (max-width: 767px) {
  .enquiry_section .col-md-4 {
    width: 100%;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 767px) {
  .page_banner h1 {
    font-size: 20px;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .page_banner .banner_content {
    text-align: left;
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .page_banner p {
    font-size: 12px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .page_banner {
    padding-top: 10%;
    background-position: top center;
    margin-bottom: 0;
    background-size: 200%;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 769px) {
  #header-fixed .header-bt {
    display: none;
  }

  .mob-hide {
    display: none;
  }

  .custom-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  #header-fixed .head-top .contact-info .phone {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    white-space: nowrap;
    font-family: var(--heading-font) !important;
  }

  #header-fixed .head-top .contact-info .phone svg {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 600px) {
  #header-fixed .head-top .contact-info .phone {
    display: none;
  }
}

.enquiry_section .enq_card .footer_box button {
  background-color: var(--secondary-clr);
  color: var(--white-clr);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: 0;
  width: 50%;
  position: relative;
  outline: 0;
  box-shadow: none;
  height: 65px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.enquiry_section .enq_card .footer_box button:first-child {
  padding-left: 70px;
  border-radius: 0 0 0 10px;
  border-right: 1px solid #fff;
  text-align: left;
}

.enquiry_section .enq_card .footer_box button:last-child {
  padding-right: 70px;
  border-radius: 0 0 10px 0;
  border-left: 1px solid #fff;
}

.enquiry_section .enq_card .footer_box button img {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  object-fit: contain;
}

.enquiry_section .enq_card .footer_box button:first-child img {
  left: -12px;
  bottom: -7px;
}

.enquiry_section .enq_card .footer_box button:last-child img {
  right: 10px;
  bottom: -7px;
}

@media screen and (max-width: 992px) {
  .enquiry_section .enq_card .footer_box button:first-child {
    text-align: center;
  }
}

#cardCarousel {
  margin: 0 auto;
}

/* kartCarousel_container */
/* Custom styles that Bootstrap doesn't cover */
.kartCarousel_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.kartCard_wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.kartCard_wrapper .kart_card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  min-width: 300px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 1024px) {
  .kartCard_wrapper .kart_card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .kartCard_wrapper .kart_card {
    flex: 0 0 calc(100% - 20px);
  }
}

/* For smaller screens */
@media (max-width: 480px) {
  .kartCard_container {
    grid-template-columns: 1fr;
    /* Single column for mobile */
  }
}

.premium-tag {
  position: absolute;
  top: 16px;
  left: -4px;
  z-index: 10;
}

.premium-tag::before {
  content: 'PREMIUM';
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  display: inline-block;
  padding-right: 24px;
}

.premium-tag::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  border-left: 4px solid #15803d;
  border-bottom: 4px solid transparent;
}

.slider-container {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-button.prev {
  left: 8px;
}

.slider-button.next {
  right: 8px;
}

.bottom-section {
  background: #f9fafb;
}

.jobDetails_section {
  padding: 100px 0;
  position: relative;
}

.jobDetails_section .Description_container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  /* Add horizontal + vertical spacing */
}

.jobDetails_section .Description_container .leftDesc {
  flex: 1 1 calc(100% - 480px);
  /* slightly reduce to leave gap room */
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.jobDetails_section .Description_container .rightDesc {
  flex: 0 0 440px;
}

.jobDetails_section .Description_container .leftDesc h2 {
  font-size: 34px;
  line-height: 52px;
  font-weight: bold;
  letter-spacing: 0px;
  color: var(--secondary-clr);
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.jobDetails_section .Description_container .leftDesc p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0px;
  color: var(--para-clr);
  margin: 0 0 30px 0;
  padding: 0;
}

.jobDetails_section .Description_container .rightDesc .sideCard {
  border-radius: 57px;
  margin: 0 0 40px 0;
}

.jobDetails_section .Description_container .rightDesc .sideCard .sideCardListing {
  padding: 30px 40px 60px 40px;
}

.jobDetails_section .Description_container .rightDesc .sideCard .sideCardListing li {
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 0;
}

.jobDetails_section .Description_container .rightDesc .sideCard .sideCardListing li .CardImg {
  width: 30px;
  height: 30px;
  margin-right: 14px;
}

.jobDetails_section .Description_container .rightDesc .sideCard .sideCardListing li .CardImg img {
  fill: var(--secondary-clr);
}

.jobDetails_section .Description_container .rightDesc .sideCard .sideCardListing li .CardDetails h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.45px;
  color: var(--secondary-clr);
  margin: 0 0 0px 0;
  padding: 0;
}

.jobDetails_section .Description_container .leftDesc .work_details {
  margin-top: 40px;
}

.jobDetails_section .Description_container .leftDesc .work_details .detail_head {
  max-height: 56px;
  margin-bottom: 16px;
}

.jobDetails_section .Description_container .leftDesc .work_details ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: medium;
  letter-spacing: 0px;
  color: #000000;
  margin: 0 0 7px 0;
  padding: 0 0 0 30px;
  position: relative;
}

.jobDetails_section .Description_container .leftDesc .work_details ul li::after {
  content: '';
  background: url(../../assets/new-icons/li-icon.png) no-repeat;
  background-size: 18px;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 5px;
}

.overview_sec {
  width: 100%;
}

.overview_sec h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.45px;
  color: var(--secondary-clr);
  margin: 0 0 0px 0;
  padding: 0;
}

.company_detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  flex-direction: column;
}

.company_detail img {
  max-width: 200px;
  display: block;
}

.company_detail .companyText {
  width: 100%;
  justify-self: flex-end;
}

.company_detail .companyText h1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.45px;
  color: var(--secondary-clr);
  padding: 10px 0;
}

.company_detail .companyText p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.45px;
  color: var(--para-clr);
}

.border_line {
  border-top: 1px solid gray;
  height: 1px;
  width: 100%;
}

.read-more-btn {
  outline: none;
  border: none;
  background-color: transparent;
  color: rgb(70, 70, 246);
  font-size: 12px;
  font-weight: 500;
}

.companyText .company-description p {
  font-weight: 600 !important;
  color: var(--back_color);
}

.jobDetails_section .Description_container .rightDesc .sideCard h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0px;
  color: var(--secondary-clr);
  margin: 0 0 0px 0;
  padding: 50px 40px 0px 40px;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing {
  padding: 0px 40px 40px 40px;
  margin: 0 -2%;
  display: flex;
  flex-wrap: wrap;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li {
  background: #ffffff;
  border: 0;
  border-radius: 29px;
  width: 46%;
  margin: 2%;
  padding: 24px 24px 70px 24px;
  position: relative;
  box-shadow: 0px 5px 10px #d4d4d4;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li h5 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #000;
  margin: 0 0 10px 0;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li .Tag {
  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.3px;
  color: var(--white-clr);
  margin-bottom: 10px;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li h6 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: var(--secondary-clr);
  margin: 0 0 0px 0;
  padding: 0 0 0px 0;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li .GrayText {
  color: var(--para-clr);
  padding-bottom: 10px;
  font-size: 14px;
}

.jobDetails_section .Description_container .rightDesc .sideCard .CardListing li .ThemeBtn {
  background-color: var(--secondary-clr);
  border-radius: 0 0 30px 30px;
  padding: 18px 0px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.applyBtn {
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  padding: 5px 15px;
  border-radius: 100px;
  background: var(--secondary-clr);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--white-clr);
  margin-left: 25px;
  white-space: nowrap;
}

.applyBtn:hover {
  background: var(--primary-color);
}

.applyBtn>svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
  fill: var(--white-clr);
}

.applyBtn:hover svg {
  transform: translateX(5px);
}

.applyBtn:active {
  transform: scale(0.95);
}

@media (max-width: 992px) {
  .jobDetails_section .Description_container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .jobDetails_section .Description_container .leftDesc {
    width: 100%;
    margin-bottom: 40px;
  }

  .jobDetails_section .Description_container .rightDesc {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .jobDetails_section .Description_container .rightDesc .sideCard .CardListing {
    margin: 0;
    padding: 0px 20px 40px 20px;
    flex-direction: column;
  }

  .jobDetails_section .Description_container .rightDesc .sideCard .CardListing li {
    width: 100%;
  }
}

/* Calender Component */
.calender_section {
  background: url(../../assets/hero-images/section_images/bg-2.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 0px;
}

.calender_section .custom-container-fluid {
  max-width: 1500px;
  margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.BannerDetails {
  max-width: 700px;
  width: 100%;
  padding: 0px 0 50px 90px;
}

.homebanner {
  width: calc(100% - 700px);
}

.homebanner img {
  width: 100%;
  max-width: 700px;
  padding-left: 100px;
}

.BannerDetails h2 {
  color: var(--black-text-clr);
  font-weight: 700;
  margin: 0 0 30px 0;
  position: relative;
  font: normal normal 700 34px / 140% Poppins;
  max-width: 530px;
  text-align: left;
}

.homebanner {
  width: calc(100% - 700px);
}

.homebanner.hidedesktop {
  display: none;
}

.calender .calenderSection {
  box-shadow: 0px 0px 18px #0000001a;
  border-radius: 20px;
  padding: 0;
  width: 600px;
  max-width: 100%;
  background-color: var(--secondary-clr);
  position: relative;
}

.calender .calenderSection .calenderInner {
  max-width: 100%;
  align-items: center;
  margin: 0 auto;
  display: flex;
}

.calender .calenderSection .calenderInner .calenderLeft {
  background: url(../../images/home-assets/bg_calenderLeft_top.svg) no-repeat center top -15px;
  background-color: #ffffff;
  border-radius: 14px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: 240px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  height: 420px;
}

.calender .calenderSection .calenderInner .CalendarWrapper {
  padding-left: 20px;
  width: calc(100% - 280px);
  position: relative;
}

.calendar {
  display: inline-grid;
  justify-content: center;
  align-items: center;
}

.calendar .month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 10px 0 0px;
}

.capsuleimg {
  width: 40px;
}

.calender .calenderSection .calenderInner .CalendarWrapper h4 {
  text-align: left;
  font: normal normal bold 16px / 28px Poppins;
  text-transform: uppercase;
  color: #6e0d88;
  padding-top: 20px;
}

.calendar .month h4 {
  font: normal normal bold 15px / 20px Poppins !important;
  color: #f8e917 !important;
  margin: 0;
  padding: 0 !important;
}

.calendar .month h5 {
  font: normal normal 500 14px / 20px Poppins !important;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* span {
  display: unset;
} */
.calendar .month .left-right-arrow {
  background-color: transparent;
  border: 0;
  margin-left: 14px;
}

.calendar .days {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(7, 1fr);
  color: #999;
  font-weight: 600;
  margin-bottom: 15px;
}

.calendar .days span {
  width: 43px;
  justify-self: center;
  align-self: center;
  text-align: center;
  font: normal normal 600 10px / 10px Poppins !important;
  color: #fff;
  text-transform: uppercase;
}

.calendar .dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar .dates button:first-child {
  grid-column: 2;
}

.calendar .dates button {
  cursor: pointer;
  outline: 0;
  border: 0;
  background-color: transparent;
  justify-self: center;
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  margin: 4px 4px;
  transition-duration: 0.2s;
  font: normal normal 600 12px / 12px Poppins;
  color: #fff;
}

.TimeZone {
  position: relative;
  margin-top: 20px;
  padding-left: 10px;
  margin-bottom: 20px;
}

.TimeZone h3 {
  font: normal normal 500 12px / 29px Poppins;
  letter-spacing: -0.17px;
  color: var(--white-clr);
  display: inline-flex;
  align-items: center;
  background-color: transparent !important;
  margin-bottom: 0 !important;
}

.TimeZone h3 img {
  margin-right: 7px;
}

.calender .calenderSection .calenderInner .CalendarWrapper h4 {
  text-align: left;
  font: normal normal bold 16px / 28px Poppins;
  text-transform: uppercase;
  color: var(--secondary-clr);
  padding-top: 20px;
}

.TimeZone h4 {
  font: normal normal 400 12px / 29px Poppins !important;
  letter-spacing: -0.17px;
  color: #fff !important;
  border-radius: 24px;
  background-color: #773490;
  padding-left: 10px !important;
  padding-right: 10px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 120px);
}

.calender .calenderSection .calenderInner .CalendarWrapper h4 span {
  color: #940b92;
}

.TimeZone h4 span {
  color: #fff !important;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
}

.animated-background {
  animation: gradientAnimation 5s linear infinite;
  background: var(--white-clr);
  background-size: 300% 300%;
  border-radius: 50px;
  width: 100%;
  min-height: 40px;
  border: 0;
  color: var(--secondary-clr);
  font: normal normal bold 14px / 24px Poppins;
  text-align: left;
  padding: 0 20px;
  position: relative;
}

.calender .calenderSection .boyimg {
  position: absolute;
  top: -16px;
  left: -100px;
}

.LeadWrap .calendar .dates button.today {
  background-color: var(--secondary-clr);
  color: var(--primary-color);
  transition: all ease-in 200ms;
  position: relative;
}

.BannerDetails img {
  max-width: 100%;
}

.calender .calenderSection .calenderInner .calenderLeft .calenderLeftTop h1 {
  text-align: center;
  font: normal normal bold 14px / 22px Poppins !important;
  color: #000;
  margin: 0;
  position: relative;
}

.homebanner {
  width: calc(100% - 700px);
}

.calender .calenderSection .calenderInner .CalendarWrapper h6 {
  text-align: left;
  font: normal normal bold 14px / 20px Poppins;
  color: var(--white-clr);
  margin: 0;
}

.calender .calenderSection .calenderInner .CalendarWrapper {
  padding-left: 20px;
  width: calc(100% - 280px);
  position: relative;
}

@media (max-width: 768px) {
  .calender .calenderSection .calenderInner .calenderLeft {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
    height: auto;
    background-position: top center;
    display: none;
  }
}

@media (max-width: 768px) {
  .calender .calenderSection .boyimg {
    display: none;
  }
}

@media (max-width: 768px) {
  .calender .calenderSection .calenderInner .CalendarWrapper {
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
    position: static;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .calender .calenderSection .calenderInner .calenderLeft {
    margin-left: 0;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .BannerDetails {
    max-width: 100%;
    width: 100%;
    padding: 0px 0 0px 0;
  }
}

@media (max-width: 768px) {
  .calendar {
    display: block;
  }
}

@media (max-width: 768px) {
  .calendar .month {
    padding: 20px 10px 20px 0px;
  }
}

@media (max-width: 767px) {
  .calendar .dates {
    padding: 0;
  }
}

@media (max-width: 980px) {
  .TimeZone {
    display: flex;
  }
}

@media (max-width: 768px) {
  .calender .calenderSection .calenderInner .CalendarWrapper {
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
    position: static;
  }
}

@media (max-width: 1199px) {
  .BannerDetails h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .BannerDetails h2 {
    text-align: center;
    margin: 50px auto;
  }
}

@media (max-width: 991px) {
  .calender .calenderSection {
    margin: 0 auto;
    display: block;
    width: auto;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
}

.calendar .dates button.today {
  background-color: #fdec07;
  color: #6b287a;
  transition: all ease-in 200ms;
  position: relative;
}

.bg_wrap {
  background-image: url(../hero-images/content_bg/block_background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 160px 0 30px;
}

.bg_wrap2 {
  background-image: url(../hero-images/content_bg/block_background.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 40px 0 30px;
}

.process_section {
  background-image: url(../hero-images/content_bg/bg-5.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 150px 0 30px;
}

/* rocket PAth */
section.content {
  height: auto;
  max-width: 100%;
  background-color: transparent;
  position: relative;
}

.rocketWrapper {
  position: relative;
  top: -650px;
  max-height: min-content;
}

.rocket_details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.rocket_details img {
  width: 80px;
}

.rocket_details h3 {
  font-size: 35px;
  font-weight: 600;
}

.rocket_details p {
  font-size: 28px;
  line-height: 1.5;
}

@media screen and (max-width: 1025px) {
  .rocket_details {
    align-items: flex-start;
  }

  .rocket_details img {
    width: 60px;
  }

  .rocket_details h3 {
    font-size: 35px;
  }

  .rocket_details p {
    font-size: 26px;
  }

  .rocketWrapper {
    position: relative;
    top: -300px;
    max-height: min-content;
  }
}

@media screen and (max-width: 769px) {
  .rocket_details {
    align-items: flex-start;
  }

  .rocket_details img {
    width: 60px;
  }

  .rocket_details h3 {
    font-size: 35px;
  }

  .rocket_details p {
    font-size: 26px;
  }

  .rocketWrapper {
    position: relative;
    top: -200px;
    max-height: min-content;
  }
}

@media screen and (max-width: 600px) {
  .rocket_details {
    align-items: flex-start;
  }

  .rocket_details img {
    width: 60px;
  }

  .rocket_details h3 {
    font-size: 50px;
  }

  .rocket_details p {
    font-size: 25px;
  }

  .rocketWrapper {
    position: relative;
    top: -100px;
    max-height: min-content;
  }
}

.marquee-box {
  position: relative;
  overflow: hidden;
  background: #f9f785;
  padding: 12px 0;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  animation: marquee 15s linear infinite;
}

.marquee-content {
  display: flex;
}

.marquee-content p {
  margin: 0;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-clr);
}

/* Keyframes for infinite scrolling */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media screen and (max-width: 768px) {
  #popupCard {
    max-height: 70%;
    margin: auto;
    overflow-y: scroll;
  }
}

@media screen and (min-width: 768px) {
  .top-header-contact {
    display: none;
  }
}

/* Smooth dropdown animation */
.smooth-dropdown {
  transition: all 0.3s ease;
}

.smooth-dropdown.collapsing {
  transition: all 0.3s ease;
}

/* Icon rotation */
.transition-icon {
  transition: transform 0.3s ease;
}

[aria-expanded='true'] .transition-icon {
  transform: rotate(180deg);
}

/* Circle icon styling */
.circle_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Dropdown items styling */
.smooth-dropdown .nav-link {
  padding: 8px 15px;
  display: flex;
  align-items: center;
}

/* Ensure proper spacing */
.smooth-dropdown {
  padding-left: 15px;
}

/* Optional: Add hover effect */
.smooth-dropdown .nav-link:hover .circle-icon {
  background-color: #555;
  /* Change hover color as needed */
}

.web-designingheadsection {
  margin-top: 20px;
}

/* Brochure page CSS with Grid */
.brochure_bg {
  background-image: url(../hero-images/content_bg/mai-banner.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 120px 40px;
  position: relative;
}

.brochure-section-content {
  display: flex;
  width: 100%;
  gap: 60px;
  background-color: transparent;
}

.brochure-section-content .block_textArea {
  width: 60%;
}

.brochure-section-content .block_textArea label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: var(--white-clr);
  padding: 8px 10px;
  border-radius: 30px;
  width: max-content;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

.brochure-section-content .block_textArea label span {
  background-color: var(--secondary-clr);
  color: var(--white-clr);
  padding: 8px 18px;
  border-radius: 25px;
}

.brochure-section-content .block_textArea .service-description {
  max-width: 100%;
  width: 100%;
  text-align: justify;
  font-size: 16px;
  color: var(--white-clr);
  margin-bottom: 10px;
}

.brochure-section-content .block_textArea p {
  max-width: 100%;
  width: 100%;
  text-align: justify;
  font-size: 16px;
  color: var(--white-clr);
}

.brochure-section-content .block_formArea {
  width: 40%;
}

.brochure-section-content .block_formArea .contact-form {
  padding: 30px;
  width: 100%;
  border: none;
  border-radius: 12px;
  background-color: var(--secondary-clr);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.brochure-section-content .block_formArea .form-group {
  margin-bottom: 20px;
}

.brochure-section-content .block_formArea .form-group input,
.brochure-section-content .block_formArea .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.brochure-section-content .block_formArea .form-group input:focus,
.brochure-section-content .block_formArea .form-group select:focus {
  outline: none;
  border-color: var(--secondary-clr);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background-color: #ffffff;
}

.brochure-section-content .block_formArea .form-group input::placeholder {
  color: #6c757d;
}

.brochure-section-content .block_formArea .form-group select {
  background-color: #f8f9fa;
  cursor: pointer;
  color: #495057;
}

.brochure-section-content .block_formArea .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--white-clr);
  color: var(--secondary-clr);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.brochure-section-content .block_formArea .submit-btn:hover {
  background-color: var(--white-clr);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.brochure-section-content .block_formArea .submit-btn:active {
  transform: translateY(0);
}

.large-custom_container {
  max-width: 1440px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.brochurePage_paragraph {
  width: 100%;
  display: grid;
  row-gap: 50px;
}

.brochurePage_paragraph .block_textArea {
  width: 50%;
  padding-right: 20px;
  height: 100%;
}

.brochurePage_paragraph .block_imageArea {
  width: 50%;
  display: flex;
  height: 100%;
}

.brochurePage_paragraph .section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.brochurePage_paragraph .block_textArea p {
  font-size: 12px;
  color: var(--para-clr);
}

.brochurePage_paragraph .block_imageArea .image_cont {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.brochurePage_paragraph .block_imageArea img {
  max-width: 50%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 450px;
  min-height: 300px;
  min-width: 300px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .brochurePage_paragraph {
    flex-direction: column;
  }

  .brochurePage_paragraph .block_textArea,
  .brochurePage_paragraph .block_imageArea {
    width: 100%;
    padding-right: 0;
  }

  .brochurePage_paragraph .block_imageArea {
    min-height: 300px;
    /* Adjust for mobile */
  }
}

.accordion-container {
  margin-top: 30px;
  width: 100%;
}

.accordion {
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  background-color: #f8f9fa;
  padding: 5px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f1f3f5;
}

.accordion-header span {
  font-weight: 600;
  color: var(--black-text-clr);
  font-size: 14px;
}

.plus-icon {
  font-size: 20px;
  color: var(--black-text-clr);
  transition: transform 0.3s ease;
}

.accordion.active .plus-icon {
  transform: rotate(45deg);
}

/* Faq Page Css */
.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  /* opacity: 0; */
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out;
}

.accordion-header.active+.accordion-collapse {
  opacity: 1;
  /* max-height will be set by JavaScript */
}

.accordion-content {
  padding: 0;
  /* max-height: 0; */
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--para-clr);
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--faq-font) !important;
}

.accordion.active .accordion-content {
  padding: 20px;
  max-height: 300px;
  /* Adjust based on your content */
}

/* Make the form responsive */
@media (max-width: 769px) {
  .brochure-section-content .block_textArea {
    width: 50%;
  }

  .brochure-section-content .block_formArea {
    width: 50%;
  }

  .brochure-section-content .block_formArea .contact-form {
    padding: 20px;
  }

  .brochure-section-content .block_textArea label {
    font-size: 14px;
  }

  .brochure-section-content .common_section label {
    color: #6d007d;
    font-size: 14px;
    font-family: var(--paragraph-font);
    margin: 0 0 15px 0;
    font-weight: 600;
    letter-spacing: 1.28px;
  }

  .brochure-section-content .block_textArea .h1 {
    font-size: 24px;
    color: var(--black-text-clr);
    font-weight: 700;
    font-family: var(--paragraph-font);
    max-width: 500px;
    margin: 0;
  }

  .brochure-section-content .block_formArea .form-group {
    margin-bottom: 15px;
  }

  .brochure-section-content .block_textArea p {
    font-size: 12px;
  }
}

/* Make the form responsive */
@media (max-width: 600px) {
  .brochure-section-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .brochure-section-content:nth-child(1) {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    gap: 20px;
  }

  .brochure-section-content .block_textArea {
    width: 100%;
  }

  .brochure-section-content .block_formArea {
    width: 100%;
  }

  .brochure-section-content .block_formArea .contact-form {
    padding: 20px;
  }

  .brochure-section-content .block_textArea label {
    font-size: 14px;
  }

  .brochure-section-content .common_section label {
    color: #6d007d;
    font-size: 14px;
    font-family: var(--paragraph-font);
    margin: 0 0 15px 0;
    font-weight: 600;
    letter-spacing: 1.28px;
  }

  .brochure-section-content .block_textArea .h1 {
    font-size: 20px;
    color: var(--black-text-clr);
    font-weight: 700;
    font-family: var(--paragraph-font);
    max-width: 500px;
    margin: 0;
  }

  .brochure-section-content .block_formArea .form-group {
    margin-bottom: 15px;
  }

  .brochure-section-content .block_textArea p {
    font-size: 12px;
  }
}

.sectionDivider {
  background-color: #000000;
  padding: 16px;
  font-size: 16px;
}

.expert_section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.expert_section .heading_kit {
  width: 100%;
  display: grid;
  place-content: center;
}

.expert_section .heading_kit h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  color: var(--white-clr);
}

.expert_section .heading_kit p {
  text-align: center;
  font-size: 14px;
  color: var(--white-clr);
  line-height: 1;
  margin: 0;
  padding: 20px 0;
  text-transform: capitalize;
  font-weight: 400;
}

.brochureSLider {
  width: 100%;
  height: 100%;
  padding: 2rem 0;
}

.header_wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .header_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.header_content {
  flex: 1;
}

.header_image {
  width: 300px;
  flex-shrink: 0;
}

.side_image {
  width: 100%;
  height: auto;
}

.section_title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
  max-width: 100% !important;
}

.section_desc {
  line-height: 1.6;
  text-align: left;
  margin: 0;
  width: 100%;
  max-width: 100% !important;
}

.features_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature_item:hover {
  transform: translateY(-5px);
}

.feature_icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.feature_content {
  flex: 1;
}

.feature_content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--black-text-clr);
}

.feature_content p {
  color: var(--para-clr);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Update responsive breakpoints */
@media (max-width: 992px) {
  .features_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features_grid {
    grid-template-columns: 1fr;
  }

  .feature_item {
    padding: 1rem;
  }

  .feature_icon {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
}

.package_header {
  text-align: center;
  margin: 50px 0;
  width: 100%;
}

.package_header h2 {
  font-size: 40px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
}

.package_header p {
  font-size: 18px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
}

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

.package_card {
  background: #f8f8f8;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.package_card:hover {
  transform: translateY(-5px);
}

.package_card .package_header {
  text-align: left;
  margin-bottom: 24px;
}

.package_card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.offer_tag {
  display: inline-block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.currency {
  font-size: 1.5rem;
}

.get_started {
  width: 100%;
  padding: 12px;
  background: var(--secondary-clr);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.get_started:hover {
  background: var(--secondary-clr);
}

.features_list {
  flex-grow: 1;
}

.feature {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.check {
  color: var(--secondary-clr);
  flex-shrink: 0;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.additional_info {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.hourly_rates {
  color: var(--secondary-clr);
  text-decoration: none;
}

.hourly_rates:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .all_packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .all_packages {
    grid-template-columns: 1fr;
  }

  .package_header h2 {
    font-size: 1.5rem;
  }

  .package_card {
    padding: 20px;
  }

  .package_card h3 {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .custom_container {
    padding: 20px 16px;
  }

  .package_card {
    padding: 16px;
  }

  .feature {
    gap: 8px;
  }
}

.section_bg {
  /* background-image: url(../hero-images/content_bg/light-bg.jpg); */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 120px 0 20px;
  position: relative;
}

.brochure_faq {
  margin-top: -40px;
}

/* Mass pr page css */
.topbanner_wrap_pageseo {
  background-color: #fff;
  background-image: url(../hero-images/content_bg/banner-bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  padding: 100px 0 50px;
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .topbanner_wrap_pageseo {
    padding: 70px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .custom_container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 1024px) {

  h1,
  .h1 {
    font-size: 35px !important;
  }
}

.btn_wrap {
  margin-top: 10px;
}

.btn_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.text_wrap p span {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  P {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 767px) {
  .news_section-left .row {
    flex-direction: column-reverse;
  }
}

.disclaimer_text {
  margin: 50px 0;
  padding: 50px 0;
  background-color: var(--white-clr);
}

.disclaimer_text P {
  font-size: 16px;
  color: #000000;
  font-weight: 300;
  font-family: var(--paragraph-font);
  margin: 0 auto;
  max-width: 1000px;
  line-height: 1.5;
}

.disclaimer_text P span {
  color: var(--secondary-clr);
  font-weight: 600;
}

.pr_service h2 {
  font-size: 45px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  max-width: 100%;
  margin: 0;
}

.pr_card {
  width: calc(33% - 20px);
  margin: 10px;
  padding: 40px 24px;
  background: #ffffff;
  box-shadow: 0px 2px 6px #00000014;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .pr_card {
    width: 100%;
    z-index: 1;
  }
}

.pr_service .team_wrap {
  position: relative;
  padding: 100px 0 50px;
  height: 700px;
}

.pr_service .team_img {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 100%;
  object-position: right;
  object-fit: contain;
}

.btm-wrapper h3 {
  /* max-width: 850px; */
  text-align: center;
  margin: 50px auto 0;
  position: relative;
}

.btm-wrapper p {
  font-size: 16px;
  color: var(--white-clr);
  font-family: var(--paragraph-font);
  max-width: 600px;
  width: 100%;
  font-weight: 500;
  line-height: 1.7;
  margin: 20px auto 10px;
}

.btm-wrapper .belowtext_img {
  justify-self: center;
  margin-bottom: 20px;
}

.common_section .big_img {
  margin: 40px 0 0;
  max-width: 400px;
}

.btm-wrapper {
  background-image: url(../hero-images/content_bg/light_purple.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 50px 0 50px;
  position: relative;
  overflow: visible;
}

.btm-wrapper h1,
.btm-wrapper .h1,
.btm-wrapper h3 {
  font-size: 40px;
  letter-spacing: 1.68px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  text-align: center;
}

@media screen and (max-width: 767px) {

  h1,
  h2 {
    font-size: 26px !important;
  }
}

.pr_service .team_wrap .belowtext_img {
  display: block;
  margin-bottom: 40px;
}

/* Digital Pr Css */
.topbanner_wrap_digitalpr {
  background-image: url(../hero-images/content_bg/digital-banner-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 50px 0 100px;
  z-index: 0;
  margin-top: 70px;
}

.topbanner_wrap_digitalpr .banner_img {
  width: 100%;
  max-width: 570px;
  object-fit: contain;
}

.topbanner_wrap_digitalpr .content_box {
  width: 560px;
  margin-left: auto;
  max-width: 100%;
}

.topbanner_wrap_digitalpr h1,
.topbanner_wrap_digitalpr .h1 {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.topbanner_wrap_digitalpr p {
  font-size: 18px;
  color: #fff;
  opacity: 0.8;
  font-family: var(--paragraph-font);
  letter-spacing: 0.5px;
  margin: 25px 0 35px;
}

.topbanner_wrap_digitalpr h1 span,
.topbanner_wrap_digitalpr .h1 span {
  color: #fdec07;
  display: inline;
}

@media screen and (max-width: 767px) {
  .topbanner_wrap_digitalpr .content_box {
    margin-top: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {

  h1,
  .h1 {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 767px) {
  .topbanner_wrap_digitalpr p {
    margin: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  .common_home_btn {
    padding: 10px 55px 10px 15px;
    font-size: 12px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 767px) {
  .topbanner_wrap_digitalpr {
    padding: 100px 0;
  }
}

.common_section h1 span,
.common_section .h1 span {
  color: var(--secondary-clr);
}

@media screen and (max-width: 767px) {
  .common_section .mob_reverse {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .common_section2 .mob_reverse {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .common_section .big_img {
    margin: 40px 0 0;
  }
}

.blocks_wrapper {
  margin-top: 50px !important;
}

.blocks_wrapper.digitalpr_blocks .box_wrap {
  padding: 20px 20px 60px 20px;
}

.blocks_wrapper .box_wrap {
  box-shadow: 0px 2px 6px #00000024;
  transition: 0.3s ease-in-out;
  border-radius: 24px;
  padding: 20px 20px 80px 20px;
  background-color: #ffffff;
  height: 100%;
  position: relative;
}

.blocks_wrapper .box_wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.blocks_wrapper.digitalpr_blocks .box_wrap h2 {
  font-size: 22px;
}

.blocks_wrapper .box_wrap h2 {
  color: #060640;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 20px 0;
  line-height: 1;
}

.blocks_wrapper.digitalpr_blocks .box_wrap p {
  margin: 0;
}

.blocks_wrapper .box_wrap p {
  color: #504e5d;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--paragraph-font);
  margin: 0 0 30px;
}

.blocks_wrapper.digitalpr_blocks .box_wrap a {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}

.blocks_wrapper.digitalpr_blocks .box_wrap a .common_home_btn {
  text-transform: uppercase;
  background-color: transparent;
  padding: 0;
  color: var(--secondary-clr);
  text-decoration: underline;
  font-weight: 500;
}

.blocks_wrapper .box_wrap .common_home_btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .blocks_wrapper.digitalpr_blocks .col-md-3 {
    padding: 15px;
  }
}

.common_section.tagetaudience_wrap .big_img {
  display: block;
  margin: 0 auto;
}

.common_section.tagetaudience_wrap .box_wrap {
  padding-bottom: 20px;
}

.common_section.tagetaudience_wrap .big_img {
  max-width: 400px;
}

.common_section.tagetaudience_wrap .box_wrap h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.common_section.tagetaudience_wrap .col-md-4 {
  padding: 15px;
}

.common_section.tagetaudience_wrap h1,
.common_section.tagetaudience_wrap .h1 {
  max-width: 450px;
}

@media screen and (max-width: 992px) {
  .blocks_wrapper .col-md-4 {
    width: 50%;
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .blocks_wrapper .col-md-4 {
    width: 100%;
  }
}

.common_section.tagetaudience_wrap .belowtext_img {
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 769px) {
  .common_section.tagetaudience_wrap .belowtext_img {
    max-width: 100px;
    margin-bottom: 20px;
  }

  .common_section.tagetaudience_wrap .big_img {
    max-width: 300px;
  }
}

.brand_wrapper {
  background-image: url(../hero-images/digital-pr/bg-abstract.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.brand_wrapper .brand_exposure_img {
  position: absolute;
  bottom: -10%;
  left: -3%;
  width: 100%;
  max-width: 270px;
  object-fit: contain;
}

.brand_wrapper .text_container {
  max-width: 650px;
  margin: 0 auto;
}

.brand_wrapper h2 {
  font-size: 40px;
  color: var(--secondary-clr);
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.brand_wrapper h2 .purple_text {
  color: var(--primary-color);
  display: inline;
}

.brand_wrapper p {
  color: var(--para-clr);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--paragraph-font);
  margin: 15px 0 0 0;
}

@media screen and (max-width: 1140px) {
  .brand_wrapper .brand_exposure_img {
    position: unset;
    display: block;
    margin: 0 auto 30px;
  }
}

.personal_wrap {
  background-image: url(../hero-images/content_bg/purple-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0;
}

.personal_wrap h1,
.personal_wrap h2 {
  font-size: 45px;
  letter-spacing: 1.68px;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.personal_wrap .btm_img_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 530px;
  margin-top: 5px;
}

.personal_wrap p {
  color: var(--white-clr);
  font-size: 16px;
  font-family: var(--paragraph-font);
  margin: 30px 0;
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
}

@media screen and (max-width: 767px) {

  .personal_wrap h1,
  .personal_wrap h2 {
    font-size: 28px !important;
  }
}

.common_section h4 {
  color: #5e5e5e;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.common_section .img_btm {
  width: 180px;
  display: block;
  margin: 0 0 30px;
}

.common_section h4 span {
  display: block;
  color: var(--secondary-clr);
}

.common_section .bigrightimg {
  width: 700px;
  max-width: 80%;
  justify-self: center;
  margin-top: 200px;
}

@media screen and (max-width: 769px) {
  .common_section .bigrightimg {
    width: 100%;
    max-width: 80%;
    justify-self: center;
    margin-top: 0;
    margin: 0 auto;
    display: block;
  }
}

a,
span {
  display: inline-block;
  text-decoration: none;
}

.btm-wrapper h1 span,
.btm-wrapper .h1 span,
.btm-wrapper h3 span {
  color: var(--secondary-clr);
}

/* Shineing Pr Page css */
.strategy_wrap {
  background-image: url(../hero-images/content_bg/block_background.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 160px 0 40px;
  position: relative;
}

.strategy_wrap:before {
  position: absolute;
  top: -100px;
  right: 0;
  left: auto;
  transform: rotate(180deg);
  background-position: -100px;
  background-size: 300px;
}

.strategy_wrap h2,
.strategy_wrap .h1 {
  font-size: 45px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.strategy_wrap h3,
.strategy_wrap .h2 {
  width: 100%;
  font-size: 45px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 5px 0 0 0;
}

.strategy_wrap h3 span,
.strategy_wrap .h2 span {
  color: var(--secondary-clr);
}

.strategy_wrap ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.strategy_wrap ul li {
  width: 49%;
  padding: 0 10px;
}

.strategy_wrap ul li .box_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 30px;
}

.strategy_wrap ul li .box_wrapper img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 15px;
}

.strategy_wrap ul li .box_wrapper .right_content h4,
.strategy_wrap ul li .box_wrapper .right_content .h3 {
  width: 100%;
  font-size: 20px;
  line-height: 1;
  color: var(--black-text-clr);
  font-weight: 600;
  font-family: var(--paragraph-font);
  margin: 0 0 8px 0;
}

.strategy_wrap ul li .box_wrapper .right_content p {
  color: var(--para-clr);
  font-size: 13px;
  line-height: 1.3;
  font-family: var(--paragraph-font);
  margin: 0;
  font-weight: 300;
}

.strategy_wrap p {
  color: var(--para-clr);
  font-size: 17px;
  font-family: var(--paragraph-font);
  margin: 25px 0;
  font-weight: 500;
  line-height: 1.7;
  max-width: 520px;
}

.strategy_wrap .big_graphicimg {
  background-image: url(../hero-images/shineing-pr/graphic4.png);
  background-repeat: no-repeat;
  background-position: 20px 100%;
  background-size: 700px;
  padding-bottom: 40px;
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .strategy_wrap .big_graphicimg {
    background-size: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .strategy_wrap .col-md-6 {
    flex: none;
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .strategy_wrap {
    padding-bottom: 240px;
  }
}

@media screen and (max-width: 767px) {
  .strategy_wrap {
    padding: 120px 0 400px;
  }
}

@media screen and (max-width: 767px) {
  .strategy_wrap.halfcricle_wrap:before {
    background-position: -50px;
    background-size: 200px;
  }
}

@media screen and (max-width: 767px) {
  .strategy_wrap .big_graphicimg {
    background-size: 450px;
    width: 100%;
    background-position: center bottom;
  }
}

.cta_wrapper {
  background-image: url(../hero-images/shineing-pr/graphic5.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-color: #6e0d88;
  background-size: contain;
  height: 300px;
  position: relative;
  margin-top: -2px;
}

.cta_wrapper .text_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.cta_wrapper h2,
.cta_wrapper .h1 {
  font-size: 40px;
  letter-spacing: -1.02px;
  color: #ffffff;
  font-weight: 600;
  font-family: var(--paragraph-font);
  margin: 0;
}

.cta_wrapper h2 span,
.cta_wrapper .h1 span {
  color: var(--secondary-clr);
}

.cta_wrapper h3,
.cta_wrapper .h2 {
  font-size: 40px;
  color: #fdec07;
  letter-spacing: -1.02px;
  font-weight: 600;
  font-family: var(--paragraph-font);
  margin: 5px 0 0 0;
}

@media screen and (max-width: 767px) {
  .cta_wrapper {
    padding: 50px 0;
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .cta_wrapper {
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {

  .h1,
  .h2 {
    font-size: 25px !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
  }
}

@media screen and (max-width: 1024px) and (max-width: 767px) {
  .cta_wrapper .text_box .common_home_btn {
    width: auto;
  }
}

@media screen and (max-width: 767px) {

  .cta_wrapper h3,
  .cta_wrapper .h2 {
    margin: 0 0 30px;
  }
}

@media screen and (max-width: 1024px) {
  .cta_wrapper .text_box .common_home_btn {
    width: 220px;
  }
}

.approach_wrap {
  margin: 70px 0;
  position: relative;
  overflow: visible;
}

.approach_wrap h2,
.approach_wrap .h1 {
  font-size: 40px;
  letter-spacing: 1.68px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.approach_wrap h2 span,
.approach_wrap .h1 span {
  color: var(--secondary-clr);
}

.approach_wrap p {
  color: #5e5e5e;
  font-size: 16px;
  font-family: var(--paragraph-font);
  margin: 20px 0 30px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 520px;
}

.approach_wrap .approach_map {
  overflow: hidden;
  width: 100%;
  margin-top: -320px;
}

.approach_wrap .approach_map .topright_icon {
  position: absolute;
  right: 5%;
  top: 0;
  width: 100px;
  object-fit: contain;
}

.approach_wrap .approach_map::after {
  content: '';
  position: absolute;
  top: -22%;
  left: -70px;
  height: 100%;
  width: 100%;
  background-image: url(../../images/pr-assets/half-circle.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 300px;
  z-index: -9;
}

@media screen and (max-width: 1100px) {
  .approach_wrap {
    height: auto;
  }
}

@media screen and (min-width: 767px) and (max-width: 1100px) {
  .approach_wrap .approach_map {
    margin-top: -180px;
  }
}

@media screen and (max-width: 767px) {
  .approach_wrap .approach_map {
    margin-top: 0;
  }
}

.common_section .blocks_wrap {
  margin-top: 50px;
}

.common_section .blocks_wrap .col-md-4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.common_section .blocks_wrap .icon_left {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
}

.common_section .blocks_wrap .text_container {
  position: relative;
}

.common_section .blocks_wrap h3,
.common_section .blocks_wrap .h2 {
  color: var(--para-clr);
  font-size: 20px;
  font-family: var(--paragraph-font);
  margin: 0;
  font-weight: 700;
}

.common_section .blocks_wrap p {
  color: var(--para-clr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--paragraph-font);
  margin: 10px 0 20px;
}

.common_section .blocks_wrap a {
  color: var(--secondary-clr);
  font-size: 16px;
  font-family: var(--paragraph-font);
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.common_section .blocks_wrap a img {
  width: 20px;
  height: 15px;
  margin-left: 5px;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}

.common_section .blocks_wrap p {
  color: var(--para-clr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--paragraph-font);
  margin: 10px 0 20px;
}

@media screen and (max-width: 767px) {
  .common_section .blocks_wrap .col-md-4 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1024px) {

  .common_section .blocks_wrap h3,
  .common_section .blocks_wrap .h2 {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  .common_section .blocks_wrap p {
    margin: 5px 0;
  }
}

@media screen and (max-width: 767px) {
  .common_section .blocks_wrap a {
    position: unset;
    font-size: 14px;
  }
}

.texture_wrap {
  background-image: url(../hero-images/content_bg/block_background.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 50px 0 50px;
  position: relative;
  overflow: visible;
}

.common_section .col-md-4 {
  padding: 15px;
}

.common_section.common_blocks .blocks_wrapper .box_wrap {
  padding-bottom: 20px;
}

.btm_wrapper h3 {
  max-width: 100%;
  text-align: center;
  margin: 50px auto 0;
  position: relative;
}

.btm_wrapper h1,
.btm_wrapper .h1,
.btm_wrapper h3 {
  font-size: 40px;
  letter-spacing: 1.68px;
  color: #2e2e2e;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
  max-width: 1200px;
}

/* Celebrity Management Css */
.topbanner_wrap_endorse {
  width: 100vw;
}

.topbanner_wrap_endorse .big_img {
  height: 550px;
  object-fit: cover;
  object-position: top;
  margin-top: 70px;
  width: 100%;
}

.text_wrapper {
  position: relative;
}

.text_wrapper.celeb_manage_top h1,
.text_wrapper.celeb_manage_top h2 {
  max-width: 680px;
}

.text_wrapper h1,
.text_wrapper h2 {
  font-size: 45px;
  color: #000;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0 auto;
  text-align: center;
}

.text_wrapper .belowtext_img {
  display: block;
  margin: 0 auto;
}

.text_wrapper h1 span,
.text_wrapper h2 span {
  color: var(--secondary-clr);
}

.text_wrapper p {
  color: #000000;
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin: 50px auto 0;
  max-width: 800px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.text_wrapper.celeb_manage_top p span {
  font-size: 25px;
  max-width: 550px;
  line-height: 1.4;
  margin: 30px auto 0;
  display: block;
}

.text_wrapper p span {
  font-weight: 700;
  display: block;
  margin-top: 20px;
}

.text_wrapper h1 .box_text,
.text_wrapper h2 .box_text {
  color: #fff;
  display: inline-block;
}

.content_wrapper.endorse_wrapper .row {
  margin-bottom: 40px;
}

.content_wrapper.endorse_wrapper.indiviualsagencies_wrapper {
  margin-top: -120px;
}

.topbanner_wrap_digitaldoc {
  background-image: url(../hero-images/celebirty/celebrity-bg-2.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 20% 0;
}

.topbanner_wrap_digitaldoc h1,
.topbanner_wrap_digitaldoc .h1 {
  font-size: 45px;
  color: #000;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.topbanner_wrap_digitaldoc h1 .box_text,
.topbanner_wrap_digitaldoc .h1 .box_text {
  color: #fff;
}

.topbanner_wrap_digitaldoc h1 span,
.topbanner_wrap_digitaldoc .h1 span {
  color: var(--secondary-clr);
  display: inline-block;
}

.content_wrapper {
  margin-top: -15%;
}

.content_wrapper p {
  color: #000000;
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin: 0 0 0 auto;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.7;
}

/* Influencer Marketing */
.GenerationWrap .SliderSection {
  padding: 200px 0 100px 0;
  background: url(../hero-images/influencer-marketing/bannerbg.png) no-repeat;
  background-size: contain;
  background-position: top left;
  position: relative;
  /* margin-top: 70px; */
}

.GenerationWrap .SliderSection h1 {
  max-width: 450px;
  font-size: 40px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 30px;
}

.GenerationWrap .PinkText {
  color: var(--secondary-clr) !important;
}

.GenerationWrap span {
  display: unset;
}

.GenerationWrap .PinkBtn {
  background: var(--secondary-clr);
  border-radius: 15px;
  padding: 16px 24px 16px 24px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  color: var(--white-clr);
  letter-spacing: 0.5px;
}

.GenerationWrap .PurpleText {
  color: var(--secondary-clr) !important;
}

.GenerationWrap .BorderLessBtn {
  background: none;
  border-radius: 15px;
  padding: 16px 24px 16px 24px;
  border: 0px solid var(--white-clr);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  color: var(--white-clr);
  letter-spacing: 0.5px;
}

.GenerationWrap .SliderSection .swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.GenerationWrap .SliderSection .swiper-slide img {
  width: 70%;
  transition: 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
  height: 350px;
  object-fit: contain;
}

.GenerationWrap img {
  max-width: 100%;
}

.GenerationWrap .SliderSection .swiper-slide-active img {
  width: 100%;
}

@media (max-width: 767px) {
  .GenerationWrap .SliderSection {
    padding: 100px 0 0px 0;
  }
}

.GenerationWrap .LeftRightBg {
  background: url(../hero-images/influencer-marketing/leftright-bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 200px 0 60px 0;
  position: relative;
}

.GenerationWrap .LeftRightBg h2 {
  margin-bottom: 0;
}

.GenerationWrap h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 60px 0;
  line-height: normal;
}

.GenerationWrap .LeftRightBg .SmallPara {
  max-width: 500px;
  margin-bottom: 0;
}

.GenerationWrap p {
  font-size: 16px;
  line-height: 170%;
  color: var(--para-clr);
  letter-spacing: 0.5px;
  margin: 25px 0 35px;
}

.GenerationWrap .PinkBox {
  background-color: var(--secondary-clr);
  color: #fff;
  border-radius: 12px;
  padding: 2px 16px;
  display: inline-block;
  letter-spacing: 1.53px;
  margin-right: 5px;
}

.GenerationWrap .PinkText {
  color: var(--secondary-clr) !important;
}

/* .GenerationWrap .LeftRightBg .PerksListSection .CustomPadd {
  padding: 40px 140px;
} */
.GenerationWrap .LeftRightBg .PerksListSection h3 {
  font-size: 34px;
  font-weight: 700;
}

.GenerationWrap .LeftRightBg .PerksListSection img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.GenerationWrap .LeftRightBg .PerksListSection .PinkBtn img {
  display: inline-block;
  width: auto;
  height: 10px;
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}

.GenerationWrap .PurpleSection {
  background-size: cover !important;
  background: url(../hero-images/influencer-marketing/purple-bg.png) no-repeat;
  padding: 0;
  position: relative;
  overflow: visible;
}

.GenerationWrap .PurpleSection .PurpleLists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  top: -70px;
}

.GenerationWrap .PurpleSection .PurpleLists>li {
  width: 30.333%;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 6px #0000000f;
  border-radius: 24px;
  padding: 24px 24px 34px 24px;
}

.GenerationWrap .PurpleSection .PurpleLists>li img {
  width: 64px;
  margin-bottom: 34px;
}

.GenerationWrap .PurpleSection .PurpleLists>li h5 {
  letter-spacing: 0px;
  color: var(--black-text-clr);
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  margin: 0 0 20px 0;
}

.GenerationWrap .PurpleSection .PurpleLists>li .BulletList li {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 14px 0;
}

.GenerationWrap .PurpleSection .PurpleLists>li .BulletList li img {
  width: 12px;
  max-width: 12px;
  min-width: 12px;
  margin-right: 10px;
  margin-bottom: 0;
}

.GenerationWrap .PurpleSection .PurpleLists>li img {
  width: 64px;
  margin-bottom: 34px;
}

.GenerationWrap .PurpleSection .PurpleLists>li .BulletList li p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--black-text-clre);
}

@media (max-width: 1023px) {
  .GenerationWrap .PurpleSection .PurpleLists>li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.GenerationWrap .ShineingMediaSection {
  background-size: cover !important;
  background: url(../hero-images/influencer-marketing/yellowbg.png) no-repeat;
  padding: 0 0 20px 0;
  position: relative;
}

.GenerationWrap .ShineingMediaSection h2 {
  margin-bottom: 0px;
  line-height: normal;
}

.GenerationWrap .ShineingMediaSection p {
  color: #3c3c3c;
  max-width: 600px;
}

.GenerationWrap .PinkBtn {
  background: var(--secondary-clr);
  border-radius: 15px;
  padding: 16px 24px 16px 24px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  color: var(--white);
  letter-spacing: 0.5px;
}

.GenerationWrap .AdvertiseSection {
  padding: 100px 0 50px 0;
  position: relative;
}

.GenerationWrap .AdvertiseSection .PosiRel {
  position: relative;
}

.GenerationWrap .PosiRel {
  position: relative;
}

.GenerationWrap .AdvertiseSection h2 {
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
}

.GenerationWrap .PinkBox {
  background-color: var(--secondary-clr);
  color: #fff;
  border-radius: 12px;
  padding: 2px 16px;
  display: inline-block;
  letter-spacing: 1.53px;
  margin-right: 5px;
}

.GenerationWrap .PinkText {
  color: var(--secondary-clr) !important;
}

.GenerationWrap .AdvertiseSection .Heading {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
  max-width: 500px;
}

.GenerationWrap .AdvertiseSection .DetailsText {
  max-width: 500px;
  margin: 0 0 30px 0;
}

.GenerationWrap .AdvertiseSection .banner {
  max-width: 500px;
  width: 100%;
}

/* Business Brands */
.business_brands.topbanner_wrap_digitaldoc {
  background-image: url(../hero-images/busniess/whoweserve-banner2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 11% 0;
  margin-top: 70px;
}

.topbanner_wrap_digitaldoc p {
  color: #000000;
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin: 20px auto 0;
  max-width: 800px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.topbanner_wrap_digitaldoc p span {
  font-size: 25px;
  font-weight: 700;
  margin-top: 20px;
  display: block;
}

.topbanner_wrap_digitaldoc .custom_container {
  text-align: center;
  align-items: center;
}

.topbanner_wrap_digitaldoc .custom_container .belowtext_img {
  justify-self: center;
}

/* Agencies Partners */
.serve_main_banner {
  background-image: url(../hero-images/agencies-partners/whoweserve-banner1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0 150px;
}

.serve_main_banner .belowtext_img {
  display: block;
  margin: 0 auto;
}

.serve_main_banner h1 {
  font-size: 35px;
  text-align: center;
  color: #fdec07;
  font-weight: 700;
  font-family: var(--paragraph-font);
  margin: 0;
}

.serve_main_banner h1 .fancy_text {
  line-height: 1;
  margin: 5px auto;
  display: block;
  color: #fff;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .serve_main_banner {
    background-image: url(../hero-images/agencies-partners/whoweserve-banner1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 100px;
  }
}

/* SideBar Css */
@media screen and (max-width: 769px) {
  #servicesDropdown {
    background-color: lightsteelblue;
  }

  .startp-nav nav.navbar-light .navbar-nav .nav-item {
    border-bottom: 1px solid #e5e5e5;
    border-radius: none;
  }

  .startp-nav nav.navbar-light .navbar-nav .nav-item a {
    color: var(--secondary-clr) !important;
  }

  #servicesDropdown {
    background-color: var(--light_purple) !important;
  }

  .startp-nav nav.navbar-light .navbar-nav .nav-item.dropdown-item a {
    color: var(--black-text-clr) !important;
    font-weight: 400;
    font-size: 14px;
    background-color: var(--light_purple) !important;
  }

  .sidebar_logo {
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 15px;
  }

  .sidebar_logo img {
    width: 70%;
    height: 100%;
    object-fit: cover;
  }
}

.celeb-section .custom_container {
  padding: 20px 0;
}

.topbanner_wrap_digitaldoc.indiviualsagencies_wrap {
  background-image: url(../hero-images/content_bg/whoweserve-banner4.png);
  padding: 20% 0;
}

.topbanner_wrap_digitaldoc.org_exe_banner {
  background-image: url(../hero-images/content_bg/whoweserve-banner5.png);
  padding: 25% 0 0;
}

/* School Management Page Css */
.news_icon_section .news_icons {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.news_icon_section .news_icons .news_heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.news_icon_section .news_icons .news_heading h1 {
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.news_icon_section .news_icons .news-icon-container {
  width: 100%;
  margin: 20px 0;
}

.news_icon_section .news_icons .news-icon-container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  width: 100%;
}

.news_icon_section .news_icons .news-icon-container ul li img {
  width: 80%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 30px 0 30px 0;
}

/* Infinite image carousel */
.solution_slider .carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: 10px;
  position: relative;
  left: 0;
}

.carousel img {
  height: 300px;
  object-fit: cover;
}

.img1,
.img3,
.img5 {
  width: 700px;
}

.img2,
.img4 {
  width: 193px;
}

.school_management_features .heading1 {
  font-size: 20px;
  color: var(--secondary-clr);
  font-weight: 400;
}

.school_management_features .heading2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.school_management_features div h3 {
  font-size: 18px;
}

.school_management_features div p {
  margin: 0;
  padding-top: 10px;
}

.login_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}

.login_list li {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.login_list li::before {
  content: '\f2bd';
  /* Font Awesome user circle icon unicode */
  font-family: 'Font Awesome 5 Free';
  margin-right: 8px;
  /* Creates gap between icon and text */
  font-weight: 900;
  /* For solid style */
}

/* Main page Csss */
#home-section-one {
  /* background-image: url(../hero-images/content_bg/mai-banner.png); */
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 50px 0 100px;
  z-index: 0;
  /* margin-top: 70px; */
}

#home-section-two {
  background-image: url(../hero-images/content_bg/brochure-banner.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 60px 0 100px;
  z-index: 0;
  margin-top: 70px;
}

.switching-tabs .nav-pills {
  display: flex;
  margin-top: 30px;
}

.switching-tabs .nav-link {
  background-color: #fff !important;
  color: #000 !important;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 30px !important;
  padding: 15px 15px !important;
  font-size: 18px;
  border: 2px solid var(--black-text-clr);
  font-weight: 500;
}

.switching-tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--secondary-clr) !important;
  color: var(--white-clr) !important;
}

.switch .img-fluid {
  border-radius: 15px;
  max-height: 320px;
}

@media screen and (max-width: 768px) {
  .switch .img-fluid {
    border-radius: 15px;
    max-height: 320px;
    margin-top: 20px;
  }
}

/* From Uiverse.io by Creatlydev */
.common-btn {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--secondary-clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.common-btn:hover {
  background-color: #000;
}

.common-btn:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.common-btn:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.common-btn:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.brand-images-container img {
  width: 100% !important;
  max-width: 90px;
}

/* For small screens: 3 images per row, 2 rows total */
@media (max-width: 767px) {
  .brand-images-container div {
    max-width: 33.33% !important;
    display: block !important;
  }

  .brand-images-container img {
    width: 100% !important;
    /* 3 images per row */
    display: block !important;
    margin-bottom: 1rem !important;
  }
}

/* For medium and large screens: 6 images per row */
@media (min-width: 768px) {
  .brand-images-container img {
    width: 100% !important;
    /* 6 images per row */
    display: block !important;
    margin-bottom: 1rem !important;
  }
}

.common-bg-content {
  padding: 80px 0 50px;
  position: relative;
  background-color: var(--body-bg);
}

.common-bg-content .display_cards_testimonial {
  margin-top: 0;
}

.card-data-num {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.percentage {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  color: var(--filler-clr);
  margin-bottom: 5px;
}

.label {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--black-text-clr);
}

.icon-container {
  background-color: #f8f8f8;
  border-radius: 8px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.money-bag-icon {
  fill: var(--filler-clr);
  width: 40px;
  height: 40px;
}

.tab-content {
  margin-top: 20px;
}

.tab-content p {
  margin: 0;
}

/* Footre Banner Form Css */
/* Scoped CSS that only applies to elements with the footer-banner-form class or its children */
.footer-banner-form {
  background-color: #000;
  color: #fff;
  font-family: var(--paragraph-font);
  padding: 60px 0;
}

.footer-banner-form .custom_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-banner-form label {
  color: #e67e22;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.footer-banner-form h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--white-clr);
}

.footer-banner-form .check-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-banner-form .check-icon {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 24px;
}

.footer-banner-form .divider {
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

.footer-banner-form .contact-email {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-banner-form .email-icon {
  margin-right: 15px;
}

.footer-banner-form .email-text {
  color: #e67e22;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  margin: 0;
}

.footer-banner-form .email-address {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: var(--white-clr);
}

.footer-banner-form .form-control {
  background-color: #fff;
  border: none;
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.footer-banner-form textarea.form-control {
  min-height: 120px;
}

.footer-banner-form .btn-consultation {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-banner-form .btn-consultation:hover {
  background-color: #e67e22;
  border-color: #e67e22;
}

@media (max-width: 991px) {
  .footer-banner-form h2 {
    font-size: 2rem;
  }

  .footer-banner-form .col-md-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-banner-form {
    padding: 40px 0;
  }

  .footer-banner-form h2 {
    font-size: 1.8rem;
  }
}

.form-wrapper p {
  color: var(--white-clr);
}

/* Blog Section CSS */
.articles-section .article-card {
  background-color: var(--white-clr);
}

.articles-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articles-section .header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.articles-section .header-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.articles-section .section-subtitle {
  color: #f7841f;
  font-weight: 500;
  margin-bottom: 10px;
}

.articles-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  margin: 0;
}

.articles-section .section-description {
  color: #555;
  text-align: left;
  margin: 0;
}

.articles-section .carousel-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.articles-section .carousel-btn {
  background: #ffffff;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.articles-section .carousel-btn:hover {
  background: #f7841f;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.articles-section .carousel-btn i {
  font-size: 16px;
}

.articles-section .articles-carousel-container {
  position: relative;
  overflow: hidden;
}

.articles-section .carousel-wrapper {
  overflow: hidden;
}

.articles-section .carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.articles-section .article-col {
  flex: 0 0 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.articles-section .article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.articles-section .article-card:hover {
  transform: translateY(-5px);
}

.articles-section .article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.articles-section .article-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.articles-section .article-date {
  display: flex;
  align-items: center;
  color: #777;
  margin-bottom: 10px;
  font-size: 14px;
}

.articles-section .article-date i {
  color: #f7841f;
  margin-right: 8px;
}

.articles-section .article-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.articles-section .article-description {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.articles-section .article-card-footer {
  margin-top: auto;
}

.articles-section .image-container {
  position: relative;
}

.articles-section .badge {
  position: absolute;
  color: #fff;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: capitalize;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Light transparent border */
  background-color: rgba(0,
      0,
      0,
      0.3);
  /* Optional: semi-transparent background */
}

.articles-section .badge-technology {
  top: 10px;
  right: 10px;
}

.articles-section .badge-marketing {
  top: 10px;
  right: 10px;
}

.articles-section .badge-design {
  top: 10px;
  right: 10px;
}

.articles-section .badge-business {
  top: 10px;
  right: 10px;
}

.articles-section .badge-lifestyle {
  top: 10px;
  right: 10px;
}

.articles-section .badge-general-technology {
  top: 40px;
  /* Stacked below blog_category */
  right: 10px;
}

.articles-section .badge-general-marketing {
  top: 40px;
  right: 10px;
}

.articles-section .badge-general-design {
  top: 40px;
  right: 10px;
}

.articles-section .badge-general-business {
  top: 40px;
  right: 10px;
}

.articles-section .badge-general-lifestyle {
  top: 40px;
  right: 10px;
}

/* Prevent badge overflow */
.articles-section .badge {
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.articles-section .read-more {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary-clr);
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  width: max-content;
}

.articles-section .read-more:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.articles-section .read-more i {
  margin-left: 8px;
}

@media (max-width: 991px) {
  .articles-section .article-col {
    flex: 0 0 50%;
  }

  .articles-section .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .articles-section .carousel-buttons {
    margin-top: 20px;
  }

  .articles-section .badge {
    font-size: 11px;
    padding: 4px 8px;
    max-width: 80px;
  }

  .articles-section .badge-general-technology,
  .articles-section .badge-general-marketing,
  .articles-section .badge-general-design,
  .articles-section .badge-general-business,
  .articles-section .badge-general-lifestyle {
    top: 35px;
    /* Adjust for smaller screens */
  }
}

@media (max-width: 767px) {
  .articles-section .article-col {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .articles-section .section-title {
    font-size: 2rem;
  }

  .articles-section .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .articles-section .carousel-btn i {
    font-size: 14px;
  }

  .articles-section .badge {
    font-size: 10px;
    padding: 3px 6px;
    max-width: 70px;
  }

  .articles-section .badge-general-technology,
  .articles-section .badge-general-marketing,
  .articles-section .badge-general-design,
  .articles-section .badge-general-business,
  .articles-section .badge-general-lifestyle {
    top: 30px;
    /* Further adjust for mobile */
  }
}

.section-bg-white {
  background-color: var(--light_purple) !important;
}

/* Faq section */
.fres-faq-section {
  --fres-primary: #4361ee;
  --fres-primary-light: #eef2ff;
  --fres-text-dark: #111827;
  --fres-text-medium: #4b5563;
  --fres-text-light: #6b7280;
  --fres-border: #e5e7eb;
  --fres-background: #ffffff;
  padding: 80px 24px;
  background-color: #f9fafb;
}

.fres-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.fres-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.fres-faq-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--fres-text-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

.fres-faq-subtitle {
  font-size: 18px;
  color: var(--fres-text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.fres-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fres-faq-item {
  background-color: var(--fres-background);
  border-radius: 12px;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--fres-border);
  overflow: hidden;
  position: relative;
}

.fres-faq-item:hover {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.fres-faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.fres-faq-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--fres-primary);
  min-width: 32px;
}

.fres-faq-question h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--fres-text-dark);
  flex: 1;
}

.fres-faq-arrow {
  color: var(--fres-text-light);
  transition: transform 0.3s ease;
}

.fres-faq-question.active .fres-faq-arrow {
  transform: rotate(180deg);
  color: var(--fres-primary);
}

.fres-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px 0 72px;
}

.fres-faq-question.active+.fres-faq-answer {
  max-height: 300px;
  padding: 0 24px 24px 72px;
}

.fres-faq-answer p {
  margin: 0;
  color: var(--fres-text-medium);
  line-height: 1.6;
  font-size: 15px;
}

.fres-faq-footer {
  text-align: center;
  margin-top: 48px;
  color: var(--fres-text-medium);
  font-size: 16px;
}

.fres-faq-contact-link {
  color: var(--fres-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.fres-faq-contact-link:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--fres-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.fres-faq-contact-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 768px) {
  .fres-faq-grid {
    grid-template-columns: 1fr;
  }

  .fres-faq-title {
    font-size: 30px;
  }

  .fres-faq-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fres-faq-question {
    padding: 20px;
  }

  .fres-faq-question h3 {
    font-size: 16px;
  }

  .fres-faq-answer {
    padding: 0 20px 0 68px;
  }

  .fres-faq-question.active+.fres-faq-answer {
    padding: 0 20px 20px 68px;
  }
}

/* Custom CSS for the web development services section */
.dev-services-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.dev-services-subtitle {
  color: #f97316;
  /* Updated to a vibrant orange */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dev-services-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-top: 12px;
  color: #1f2937;
}

.dev-service-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dev-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.dev-service-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #f97316, #fb923c);
  margin-bottom: 16px;
  border-radius: 2px;
}

.dev-service-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.dev-service-description {
  margin-bottom: 20px;
  color: #4b5563;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 72px;
}

.dev-service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.dev-service-features li {
  margin-bottom: 8px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #374151;
  transition: background 0.2s ease;
}

.dev-service-features li:hover {
  background: #fef3c7;
}

.dev-service-features li i {
  margin-right: 10px;
  color: #f97316;
}

.dev-service-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.dev-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #1f2937;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dev-service-link:hover {
  background: #f97316;
  border-color: #f97316;
  color: #ffffff;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .dev-services-title {
    font-size: 2.25rem;
  }

  .dev-service-card {
    padding: 20px;
  }

  .dev-service-heading {
    font-size: 1.5rem;
  }
}

/* Why Choose Us */
.ds-advantages-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
}

.ds-advantages-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.ds-advantages-subheading {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 50px;
}

.ds-advantages-card {
  background-color: #222;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.ds-advantages-card:hover {
  transform: translateY(-5px);
}

.ds-advantages-icon {
  color: var(--filler-clr);
  font-size: 24px;
  margin-bottom: 15px;
  background: rgba(255, 138, 0, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ds-advantages-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.ds-advantages-card-text {
  font-size: 0.95rem;
  color: #ccc;
}

.ds-advantages-card-text p {
  font-size: 0.95rem;
  color: #ccc;
}

.ds-advantages-orange-text {
  color: var(--filler-clr);
}

.ds-icon-competitive {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-icon-quality {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M2.866 14.85c-.078.444.36.791.746.593l4.39-2.256 4.389 2.256c.386.198.824-.149.746-.592l-.83-4.73 3.522-3.356c.33-.314.16-.888-.282-.95l-4.898-.696L8.465.792a.513.513 0 0 0-.927 0L5.354 5.12l-4.898.696c-.441.062-.612.636-.283.95l3.523 3.356-.83 4.73zm4.905-2.767-3.686 1.894.694-3.957a.565.565 0 0 0-.163-.505L1.71 6.745l4.052-.576a.525.525 0 0 0 .393-.288L8 2.223l1.847 3.658a.525.525 0 0 0 .393.288l4.052.575-2.906 2.77a.565.565 0 0 0-.163.506l.694 3.957-3.686-1.894a.503.503 0 0 0-.461 0z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-icon-expertise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath fill-rule='evenodd' d='M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-icon-security {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-icon-delivery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v1h8a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.ds-icon-flexible {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8a00' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .ds-advantages-heading {
    font-size: 2rem;
  }

  .ds-advantages-card {
    margin-bottom: 20px;
  }
}

/* Unique styling for the Agile Process component */
.adp-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.adp-orange-text {
  color: var(--filler-clr);
  text-align: center;
  font-weight: 500;
}

.adp-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.adp-description {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.adp-tabs-container {
  margin-top: 30px;
}

.adp-tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  overflow-x: auto;
}

.adp-tab-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  white-space: nowrap;
}

.adp-tab-button {
  display: block;
  width: 100%;
  padding: 15px 10px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  outline: none;
}

.adp-tab-button.active {
  border-bottom-color: var(--filler-clr);
  color: var(--filler-clr);
}

.adp-tab-button:hover:not(.active) {
  border-bottom-color: #ffcb8c;
}

.adp-tab-content {
  display: none;
  padding: 20px 0;
}

.adp-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.adp-process-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--filler-clr);
  margin-bottom: 20px;
}

.adp-process-description {
  margin-bottom: 30px;
  line-height: 1.6;
}

.adp-process-items {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.adp-process-item-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.adp-process-item-text {
  color: #555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .adp-main-heading {
    font-size: 2rem;
  }

  .adp-tab-item {
    width: 200px;
  }

  .adp-tab-button {
    padding: 10px 5px;
    font-size: 0.9rem;
  }

  .adp-process-title {
    font-size: 1.5rem;
  }
}

/* NEw Blog Details Page Css */
.rd-card {
  position: relative;
  font-size: 14px;
  z-index: 1;
}

.rd-story-list li {
  color: #222;
  line-height: 1.6;
  font-size: 15px;
}

/* Form section background */
.rd-form-card {
  background: var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rd-input {
  border-radius: 6px;
  border: 1px solid var(--border-clr);
  background-color: var(--light_purple);
  font-size: 14px;
  color: var(--black-text-clr);
}

.rd-input::placeholder {
  color: var(--para-clr);
}

.rd-input:focus {
  border-color: var(--secondary-clr);
  box-shadow: 0 0 0 2px var(--light-filler-clr);
}

.rd-submit-btn {
  background-color: var(--filler-clr) !important;
  color: var(--black-text-clr);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

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

@media (max-width: 1024px) {
  .jobDetails_section .Description_container {
    flex-direction: column;
  }

  .jobDetails_section .Description_container .leftDesc,
  .jobDetails_section .Description_container .rightDesc {
    width: 100%;
    flex: 1 1 100%;
  }

  .jobDetails_section .Description_container .leftDesc {
    padding-right: 0;
  }
}

.crm-header-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}

.intro-paragraph p {
  font-family: var(--paragraph-font);
  color: var(--para-clr);
  margin-bottom: 16px;
  line-height: 1.7;
}

.toc-box {
  border: 1px solid var(--border-clr);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 32px;
  background-color: var(--light_purple);
}

.toc-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-text-clr);
  margin-bottom: 12px;
}

.toc-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.toc-box ul li {
  margin-bottom: 8px;
}

.toc-box ul li a {
  color: var(--primary-color);
  text-decoration: none;
}

.toc-box ul li a:hover {
  text-decoration: underline;
}

.crm-section h2 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.crm-section p {
  color: var(--para-clr);
  font-family: var(--paragraph-font);
  margin-bottom: 16px;
  line-height: 1.7;
}

.side-tags a {
  font-size: 14px;
  font-weight: 500;
  color: var(--para-clr);
  border-color: var(--para-clr);
}

.overlay-banner {
  position: relative;
  padding: 100px 0 150px;
  text-align: center;
}

.contact-overlay {
  position: relative;
  margin-top: -100px;
  /* pull up the form to overlay */
  z-index: 10;
}

.contactEst_sec {
  margin-bottom: 120px;
  background-color: var(--white-clr);
}

.corner-shape {
  width: 48px;
  height: 48px;
  border-top-left-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-light-orange {
  background-color: #fff4e5;
}

.bg-light-green {
  background-color: #e9fdf2;
}

.bg-light-yellow {
  background-color: #fcfde5;
}

.bg-light-blue {
  background-color: #eaf6ff;
}

.bg-light-purple {
  background-color: #f3ebfc;
}

.bg-light-pink {
  background-color: #fdeeee;
}

.corner-orange {
  background-color: #f7941d;
}

.corner-green {
  background-color: #00c58e;
}

.corner-yellow {
  background-color: #ffe600;
}

.corner-blue {
  background-color: #4bb2ff;
}

.corner-purple {
  background-color: #c794f7;
}

.corner-pink {
  background-color: #ff9aa2;
}

@media (max-width: 576px) {
  .cost-card {
    text-align: center;
    padding: 1.5rem !important;
  }

  .corner-shape {
    width: 36px;
    height: 36px;
  }
}

/* About Section */
.prime-about {
  padding: 50px 0 60px;
  background-color: var(--body-bg);
}

.ss-img-overlay {
  bottom: -30px;
  left: 60%;
  transform: translateX(-50%);
  max-width: 90%;
}

.thin-para {
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--para-clr);
  font-family: var(--paragraph-font);
}

.ss-image-stack .ss-img-main {
  width: 70%;
}

.ss-image-stack .ss-img-overlay img {
  width: 100%;
}

.ss-client-box:hover {
  background-color: var(--light_purple);
}

.ss-subtitle {
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

.ss-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-clr);
  border-radius: 50%;
}

.ss-client-box {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ss-btn {
  padding: 6px 14px;
  font-size: 0.85rem;
  background-color: var(--primary-color);
  color: var(--white-clr);
  border: none;
}

.ss-btn:hover {
  background-color: var(--secondary-clr);
  color: var(--white-clr);
}

/* Feature icon beside text */
.icon-style i {
  color: var(--primary-color);
}

/* Right box for "Trusted By" */
.ss-box {
  background-color: var(--white-clr);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-top: 3px solid var(--primary-color);
}

/* Icon circle for "Trusted By" section */
.icon-bg-dark {
  background-color: var(--primary-color);
  padding: 0.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-bg-dark i {
  color: var(--white-clr);
}

/* Section subtitle above heading */
.about-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.enquiry_section .enq_card .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  /* Size of the circular background */
  height: 60px;
  border-radius: 50%;
  /* Circular shape */
  margin: 0 auto 15px;
  /* Center horizontally and add bottom spacing */
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

.enquiry_section .enq_card .box_img {
  font-size: 24px;
  /* Adjusts icon size to fit within 40x40px area */
  line-height: 1;
  /* Ensures proper vertical alignment */
  display: flex;
  /* Ensures icon is centered within wrapper */
  justify-content: center;
  align-items: center;
  width: 40px;
  /* Matches your requirement */
  height: 40px;
}

@media (max-width: 576px) {
  .enquiry_section .enq_card .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .enquiry_section .enq_card .box_img {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }
}

.tab-container {
  max-width: 800px;
  margin: 0 auto;
}

/* About Page Section Css */
.ind-sec {
  background: var(--body-bg);
  font-family: var(--paragraph-font);
}

.ind-img {
  /* background-color: var(--light-filler-clr); */
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.team-pic {
  width: 100%;
  height: 100%;
  max-height: 700px;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.ind-card {
  background: var(--white-clr);
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(218, 12, 129, 0.15);
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: 1px solid var(--border-clr);
}

.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(148, 11, 146, 0.2);
}

.ind-icon {
  font-size: 20px;
  background: var(--prime-gradient);
  color: var(--white-clr);
  padding: 8px 14px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

.ind-icon .ib {
  font-size: 20px;
}

.ind-title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ind-text {
  font-size: 14px;
  color: var(--para-clr);
  line-height: 1.6;
}

/* Work Approach */
.wrk-sec {
  background-color: var(--white-clr);
}

.sec-title {
  color: var(--primary-color);
  font-weight: 700;
}

.sec-desc {
  max-width: 850px;
  margin: 0 auto;
  color: var(--para-clr);
}

.wrk-card {
  background-color: var(--light_purple);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wrk-card:hover {
  box-shadow: 0 0 20px rgba(218, 12, 129, 0.15);
  transform: translateY(-5px);
}

.icon-box {
  background-color: var(--light-filler-clr);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.wrk-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black-text-clr);
  margin-bottom: 10px;
}

.wrk-text {
  font-size: 0.95rem;
  color: var(--para-clr);
  line-height: 1.6;
}

/* Our Philosophy */
.philo-sec {
  background: var(--light_purple);
}

.philo-heading {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.2rem;
}

.philo-box {
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.philo-sub {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.philo-para {
  color: var(--para-clr);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.philo-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

/* Know about us */
.about-sec {
  background: var(--light_purple);
}

.about-wrapper {
  /* max-width: 900px; */
  margin: 0 auto;
}

.about-heading {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-intro {
  font-family: var(--paragraph-font);
  color: var(--black-text-clr);
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.about-para {
  font-family: var(--paragraph-font);
  color: var(--para-clr);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.cursor-pointer {
  cursor: pointer;
}

/* About neww css */
/* ========================================
   Premium Interactive About Section
======================================== */
.ss-about-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffeef4 0%, #ffffff 50%, #ffeef4 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.ss-section-header {
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.ss-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.25);
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.ss-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black-text-clr);
  margin-bottom: 20px;
}

.ss-gradient-text {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-lead-text {
  font-size: 1.125rem;
  color: var(--para-clr);
  font-weight: 400;
  line-height: 1.7;
}

/* Image Showcase */
.ss-image-showcase {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.ss-main-image-wrapper {
  position: relative;
  width: 85%;
  z-index: 3;
}

.ss-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(148, 11, 146, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ss-image-frame:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 100px rgba(148, 11, 146, 0.3);
}

.ss-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ss-image-frame:hover img {
  transform: scale(1.05);
}

/* Floating Stats Badge */
.ss-floating-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: badge-bounce 4s ease-in-out infinite;
  z-index: 4;
}

@keyframes badge-bounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.ss-badge-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ss-badge-content h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.ss-badge-content p {
  font-size: 0.875rem;
  color: var(--para-clr);
  line-height: 1.2;
  margin: 0;
}

/* Secondary Image */
.ss-secondary-image {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 50%;
  z-index: 4;
}

.ss-image-frame-small {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border: 6px solid #fff;
  transition: transform 0.4s ease;
}

.ss-image-frame-small:hover {
  transform: translateY(-8px) rotate(-2deg);
}

.ss-image-frame-small img {
  width: 100%;
  height: auto;
  display: block;
}

/* Experience Badge */
.ss-experience-badge {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.ss-exp-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg,
      var(--secondary-clr),
      var(--primary-color));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.4);
  border: 5px solid #fff;
  animation: rotate-pulse 3s linear infinite;
}

@keyframes rotate-pulse {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.05);
  }
}

.ss-exp-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ss-exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Decorative Elements */
.ss-pattern-dots {
  position: absolute;
  top: 50px;
  left: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle,
      var(--primary-color) 2px,
      transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 1;
}

.ss-gradient-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: 1;
}

.ss-blur-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: 0;
  right: 0;
}

.ss-blur-2 {
  width: 250px;
  height: 250px;
  background: var(--secondary-clr);
  bottom: 100px;
  left: 0;
}

/* Content Wrapper */
.ss-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Description Box */
.ss-description-box {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(148, 11, 146, 0.1);
  transition: all 0.3s ease;
}

.ss-description-box:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(148, 11, 146, 0.1);
}

.ss-para-modern {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--para-clr);
  margin-bottom: 16px;
}

.ss-para-modern:last-child {
  margin-bottom: 0;
}

.ss-para-modern strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Interactive Feature Grid */
.ss-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ss-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ss-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 11, 146, 0.05),
      transparent);
  transition: left 0.5s ease;
}

.ss-feature-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.15);
}

.ss-feature-item:hover::before {
  left: 100%;
}

.ss-feature-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ss-feature-item:hover .ss-feature-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.ss-feature-text {
  flex: 1;
}

.ss-feature-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ss-feature-text p {
  font-size: 0.8rem;
  color: var(--para-clr);
  margin: 0;
  line-height: 1.4;
}

.ss-feature-arrow {
  color: var(--primary-color);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.ss-feature-item:hover .ss-feature-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom Stats Section */
.ss-bottom-section {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

/* Stat Cards */
.ss-stat-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ss-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ss-stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.ss-stat-card:hover::before {
  transform: scaleX(1);
}

.ss-stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.ss-stat-card:hover .ss-stat-icon {
  transform: rotateY(360deg);
}

.ss-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.ss-stat-label {
  font-size: 0.95rem;
  color: var(--para-clr);
  font-weight: 500;
  margin-bottom: 16px;
}

.ss-stat-bar {
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 2px;
  width: 0;
  margin: 0 auto;
  transition: width 1s ease;
}

.ss-stat-card:hover .ss-stat-bar {
  width: 60%;
}

/* CTA Card */
.ss-cta-card {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.3);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ss-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  animation: rotate-gradient 6s linear infinite;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ss-cta-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(148, 11, 146, 0.4);
}

.ss-cta-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.ss-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.ss-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ss-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  gap: 16px;
  color: var(--primary-color);
}

.ss-cta-button i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.ss-cta-button:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ss-main-title {
    font-size: 2.5rem;
  }

  .ss-image-showcase {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .ss-about-premium {
    padding: 80px 0;
  }

  .ss-section-header {
    margin-bottom: 60px;
  }

  .ss-main-title {
    font-size: 2rem;
  }

  .ss-image-showcase {
    min-height: 450px;
    margin-bottom: 60px;
  }

  .ss-feature-grid {
    grid-template-columns: 1fr;
  }

  .ss-bottom-section {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .ss-main-title {
    font-size: 1.75rem;
  }

  .ss-lead-text {
    font-size: 1rem;
  }

  .ss-floating-badge {
    top: 10px;
    right: -10px;
    padding: 16px 20px;
  }

  .ss-badge-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ss-badge-content h4 {
    font-size: 1.5rem;
  }

  .ss-secondary-image {
    width: 60%;
    bottom: 20px;
  }

  .ss-exp-circle {
    width: 80px;
    height: 80px;
  }

  .ss-exp-number {
    font-size: 1.5rem;
  }

  .ss-description-box {
    padding: 24px;
  }

  .ss-feature-item {
    flex-direction: column;
    text-align: center;
  }

  .ss-feature-arrow {
    display: none;
  }

  .ss-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .ss-about-premium {
    padding: 60px 0;
  }

  .ss-badge {
    font-size: 0.65rem;
    padding: 6px 18px;
  }

  .ss-main-title {
    font-size: 1.5rem;
  }

  .ss-image-showcase {
    min-height: 400px;
  }

  .ss-floating-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .ss-feature-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .ss-stat-card {
    padding: 24px 20px;
  }
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Enhanced Work Approach Section
======================================== */
.wk-approach-modern {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #ffeef4 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.wk-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.wk-badge-wrapper {
  margin-bottom: 20px;
}

.wk-badge {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(148, 11, 146, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wk-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  transition: left 0.4s ease;
  z-index: -1;
}

.wk-badge:hover {
  color: #fff;
  border-color: var(--secondary-clr);
}

.wk-badge:hover::before {
  left: 0;
}

.wk-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 24px;
  line-height: 1.2;
}

.wk-highlight {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.wk-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 2px;
}

.wk-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--para-clr);
  max-width: 700px;
  margin: 0 auto;
}

/* Work Cards */
.wk-card {
  height: 100%;
  perspective: 1000px;
}

.wk-card-inner {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(148, 11, 146, 0.08);
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.wk-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.03),
      rgba(218, 12, 129, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wk-card:hover .wk-card-inner {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.wk-card:hover .wk-card-inner::before {
  opacity: 1;
}

/* Icon Wrapper */
.wk-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.wk-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wk-icon-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  animation: icon-rotate 4s linear infinite;
}

@keyframes icon-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wk-card:hover .wk-icon-bg {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 40px rgba(148, 11, 146, 0.4);
}

.wk-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.wk-card:hover .wk-number {
  opacity: 0.5;
}

/* Content */
.wk-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.wk-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.wk-card:hover .wk-card-title {
  color: var(--primary-color);
}

.wk-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--para-clr);
  margin: 0;
}

/* Hover Arrow */
.wk-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 3;
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
}

.wk-card:hover .wk-arrow {
  opacity: 1;
  transform: scale(1);
}

.wk-arrow i {
  transition: transform 0.3s ease;
}

.wk-card:hover .wk-arrow i {
  transform: translateX(4px);
}

/* Decorative Element */
.wk-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.wk-card:hover .wk-decoration {
  transform: scaleX(1);
}

/* Bottom Wave Decoration */
.wk-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.wk-bottom-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .wk-main-title {
    font-size: 2.5rem;
  }

  .wk-icon-bg {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }

  .wk-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .wk-approach-modern {
    padding: 80px 0 100px;
  }

  .wk-header {
    margin-bottom: 60px;
  }

  .wk-main-title {
    font-size: 2rem;
  }

  .wk-subtitle {
    font-size: 1rem;
  }

  .wk-card-inner {
    padding: 32px 24px;
  }

  .wk-card-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .wk-approach-modern {
    padding: 60px 0 80px;
  }

  .wk-main-title {
    font-size: 1.75rem;
  }

  .wk-badge {
    font-size: 0.65rem;
    padding: 8px 20px;
  }

  .wk-icon-bg {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .wk-number {
    font-size: 2rem;
  }

  .wk-card-title {
    font-size: 1.25rem;
  }

  .wk-card-text {
    font-size: 0.95rem;
  }

  .wk-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 575px) {
  .wk-approach-modern {
    padding: 50px 0 60px;
  }

  .wk-header {
    margin-bottom: 40px;
  }

  .wk-main-title {
    font-size: 1.5rem;
  }

  .wk-subtitle {
    font-size: 0.95rem;
  }

  .wk-icon-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .wk-number {
    align-self: flex-end;
  }

  .wk-card-inner {
    padding: 28px 20px;
  }

  .wk-bottom-wave {
    height: 80px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wk-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.wk-card:nth-child(1) {
  animation-delay: 0.1s;
}

.wk-card:nth-child(2) {
  animation-delay: 0.2s;
}

.wk-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ========================================
   Enhanced Philosophy Section
======================================== */
.ph-premium-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.ph-header-zone {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ph-badge-container {
  margin-bottom: 20px;
}

.ph-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.25);
  animation: ph-badge-pulse 2s ease-in-out infinite;
}

@keyframes ph-badge-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(148, 11, 146, 0.25);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(148, 11, 146, 0.35);
  }
}

.ph-main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 32px;
  line-height: 1.2;
}

.ph-gradient-word {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Divider */
.ph-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.ph-divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--primary-color),
      transparent);
}

.ph-divider-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-clr);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(218, 12, 129, 0.5);
  animation: ph-dot-glow 2s ease-in-out infinite;
}

@keyframes ph-dot-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(218, 12, 129, 0.5);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgba(218, 12, 129, 0.8);
    transform: scale(1.2);
  }
}

/* Philosophy Cards */
.ph-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(148, 11, 146, 0.1);
  border: 2px solid rgba(148, 11, 146, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.ph-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 11, 146, 0.03),
      transparent);
  transition: left 0.6s ease;
}

.ph-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.ph-card:hover::before {
  left: 100%;
}

/* Card Header */
.ph-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.ph-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.3);
  transition: all 0.4s ease;
  position: relative;
  flex-shrink: 0;
}

.ph-icon-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.ph-card:hover .ph-icon-circle {
  transform: rotate(360deg) scale(1.1);
}

.ph-card:hover .ph-icon-circle::after {
  opacity: 1;
  transform: scale(1.2);
}

.ph-title-wrapper {
  flex: 1;
  position: relative;
}

.ph-card-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.ph-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.ph-card:hover .ph-card-title {
  color: var(--primary-color);
}

/* Card Body */
.ph-card-body {
  position: relative;
  z-index: 2;
}

.ph-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--para-clr);
  margin-bottom: 32px;
}

/* Image Wrapper */
.ph-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.ph-card:hover .ph-image-wrapper {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.ph-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ph-card:hover .ph-image {
  transform: scale(1.1);
}

.ph-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.5),
      rgba(218, 12, 129, 0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.ph-card:hover .ph-image-overlay {
  opacity: 1;
}

.ph-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.ph-card:hover .ph-image-badge {
  transform: translateY(0);
  opacity: 1;
}

.ph-badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tags */
.ph-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ph-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(148, 11, 146, 0.08);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(148, 11, 146, 0.2);
  transition: all 0.3s ease;
}

.ph-tag:hover {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
}

/* Corner Decorations */
.ph-corner-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.ph-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-top-left-radius: 24px;
}

.ph-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid var(--secondary-clr);
  border-right: 3px solid var(--secondary-clr);
  border-bottom-right-radius: 24px;
}

.ph-card:hover .ph-corner-decoration {
  width: 60px;
  height: 60px;
  opacity: 1;
}

/* Background Decorations */
.ph-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.ph-deco-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: 10%;
  left: -10%;
  animation: ph-float-1 8s ease-in-out infinite;
}

.ph-deco-2 {
  width: 350px;
  height: 350px;
  background: var(--secondary-clr);
  bottom: 10%;
  right: -10%;
  animation: ph-float-2 10s ease-in-out infinite;
}

@keyframes ph-float-1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 30px);
  }
}

@keyframes ph-float-2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, -30px);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ph-main-heading {
    font-size: 2.5rem;
  }

  .ph-card {
    padding: 36px;
  }

  .ph-card-title {
    font-size: 1.5rem;
  }

  .ph-image {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .ph-premium-section {
    padding: 80px 0;
  }

  .ph-header-zone {
    margin-bottom: 60px;
  }

  .ph-main-heading {
    font-size: 2rem;
  }

  .ph-card {
    padding: 32px;
  }

  .ph-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .ph-card-title {
    font-size: 1.375rem;
  }

  .ph-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .ph-premium-section {
    padding: 60px 0;
  }

  .ph-main-heading {
    font-size: 1.75rem;
  }

  .ph-badge {
    font-size: 0.65rem;
    padding: 6px 18px;
  }

  .ph-card {
    padding: 28px 24px;
  }

  .ph-card-header {
    gap: 16px;
  }

  .ph-icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .ph-card-number {
    font-size: 0.875rem;
  }

  .ph-card-title {
    font-size: 1.25rem;
  }

  .ph-description {
    font-size: 0.95rem;
  }

  .ph-image {
    height: 200px;
  }

  .ph-divider-line {
    width: 40px;
  }
}

@media (max-width: 575px) {
  .ph-premium-section {
    padding: 50px 0;
  }

  .ph-header-zone {
    margin-bottom: 40px;
  }

  .ph-main-heading {
    font-size: 1.5rem;
  }

  .ph-card {
    padding: 24px 20px;
  }

  .ph-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ph-image {
    height: 180px;
  }

  .ph-tags {
    gap: 8px;
  }

  .ph-tag {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .ph-corner-decoration {
    width: 30px;
    height: 30px;
  }

  .ph-card:hover .ph-corner-decoration {
    width: 40px;
    height: 40px;
  }
}

/* Entrance Animation */
@keyframes ph-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ph-card {
  animation: ph-fade-in-up 0.8s ease forwards;
  opacity: 0;
}

.ph-card-vision {
  animation-delay: 0.2s;
}

.ph-card-mission {
  animation-delay: 0.4s;
}

/* ========================================
   Enhanced About Us Section
======================================== */
.ab-premium-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffeef4 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.ab-header-container {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ab-label-wrapper {
  margin-bottom: 20px;
}

.ab-label {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(148, 11, 146, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(148, 11, 146, 0.3);
  transition: all 0.3s ease;
}

.ab-label:hover {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  border-color: var(--secondary-clr);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
}

.ab-main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin: 0;
  line-height: 1.2;
}

.ab-accent {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Content Block */
.ab-content-block {
  position: relative;
  z-index: 2;
}

/* Intro Card */
.ab-intro-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.05),
      rgba(218, 12, 129, 0.05));
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.08);
  transition: all 0.4s ease;
}

.ab-intro-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.15);
  border-left-width: 6px;
}

.ab-cert-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
  animation: ab-cert-rotate 10s linear infinite;
}

@keyframes ab-cert-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ab-intro-content {
  flex: 1;
}

.ab-intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--black-text-clr);
  margin: 0;
  font-weight: 500;
}

.ab-intro-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Text Wrapper */
.ab-text-wrapper {
  position: relative;
}

.ab-paragraph {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--para-clr);
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

.ab-paragraph::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.ab-paragraph:last-child {
  margin-bottom: 0;
}

/* Highlighted Text */
.ab-highlight-year {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.125rem;
}

.ab-highlight-stat {
  color: var(--secondary-clr);
  font-weight: 700;
  background: rgba(218, 12, 129, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.ab-highlight-platform {
  color: var(--primary-color);
  font-weight: 600;
}

/* Stats Container */
.ab-stats-container {
  position: sticky;
  top: 100px;
  z-index: 2;
}

/* Stat Box */
.ab-stat-box {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ab-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 11, 146, 0.05),
      transparent);
  transition: left 0.5s ease;
}

.ab-stat-box:hover {
  transform: translateX(-8px);
  box-shadow: 0 16px 40px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.ab-stat-box:hover::before {
  left: 100%;
}

.ab-stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.ab-stat-box:hover .ab-stat-icon {
  transform: scale(1.15) rotate(10deg);
}

.ab-stat-content {
  flex: 1;
}

.ab-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px 0;
  line-height: 1;
}

.ab-stat-label {
  font-size: 0.95rem;
  color: var(--para-clr);
  font-weight: 600;
  margin: 0;
}

.ab-stat-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  transition: width 0.5s ease;
}

.ab-stat-box:hover .ab-stat-decoration {
  width: 100%;
}

/* Recognition Box */
.ab-recognition-box {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(148, 11, 146, 0.3);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.ab-recognition-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  animation: ab-recognition-rotate 8s linear infinite;
}

@keyframes ab-recognition-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ab-recognition-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ab-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.ab-platform-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.ab-platform-badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Services Banner */
.ab-services-banner {
  margin-top: 70px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(148, 11, 146, 0.12);
  border: 2px solid rgba(148, 11, 146, 0.1);
  position: relative;
  z-index: 2;
}

.ab-banner-content {
  text-align: center;
}

.ab-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.ab-banner-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 2px;
}

.ab-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ab-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(148, 11, 146, 0.08);
  color: var(--black-text-clr);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(148, 11, 146, 0.2);
  transition: all 0.3s ease;
}

.ab-service-tag i {
  color: var(--primary-color);
  font-size: 1rem;
}

.ab-service-tag:hover {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
}

.ab-service-tag:hover i {
  color: #fff;
}

/* Background Shapes */
.ab-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.ab-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -10%;
  right: -15%;
  animation: ab-float-1 12s ease-in-out infinite;
}

.ab-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-clr);
  bottom: -10%;
  left: -15%;
  animation: ab-float-2 15s ease-in-out infinite;
}

@keyframes ab-float-1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(40px, 40px) rotate(180deg);
  }
}

@keyframes ab-float-2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-40px, -40px) rotate(-180deg);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ab-main-heading {
    font-size: 2.5rem;
  }

  .ab-stats-container {
    position: relative;
    top: 0;
    margin-top: 40px;
  }

  .ab-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .ab-premium-section {
    padding: 80px 0;
  }

  .ab-header-container {
    margin-bottom: 60px;
  }

  .ab-main-heading {
    font-size: 2rem;
  }

  .ab-intro-card {
    padding: 24px;
  }

  .ab-cert-badge {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .ab-intro-text {
    font-size: 1rem;
  }

  .ab-services-banner {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .ab-premium-section {
    padding: 60px 0;
  }

  .ab-main-heading {
    font-size: 1.75rem;
  }

  .ab-label {
    font-size: 0.65rem;
    padding: 8px 20px;
  }

  .ab-intro-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .ab-cert-badge {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ab-paragraph {
    font-size: 0.95rem;
  }

  .ab-stat-box {
    padding: 20px 16px;
  }

  .ab-stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ab-stat-number {
    font-size: 1.75rem;
  }

  .ab-badges-grid {
    grid-template-columns: 1fr;
  }

  .ab-services-banner {
    margin-top: 50px;
    padding: 24px 20px;
  }

  .ab-banner-title {
    font-size: 1.25rem;
  }

  .ab-service-tag {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .ab-premium-section {
    padding: 50px 0;
  }

  .ab-main-heading {
    font-size: 1.5rem;
  }

  .ab-paragraph {
    padding-left: 12px;
  }

  .ab-stat-box {
    flex-direction: column;
    text-align: center;
  }

  .ab-services-list {
    flex-direction: column;
  }

  .ab-service-tag {
    width: 100%;
    justify-content: center;
  }
}

/* Animation */
@keyframes ab-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ab-content-block,
.ab-stats-container {
  animation: ab-fade-in 0.8s ease forwards;
}

.ab-stats-container {
  animation-delay: 0.2s;
}

/* ========================================
   Modern AI Solutions Section
======================================== */
.ai-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffeef4 0%, #fff 100%);
  position: relative;
}

/* Header */
.ai-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.ai-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.2);
}

.ai-h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin: 0;
  line-height: 1.2;
}

.ai-hl {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Wrapper */
.ai-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

/* Tabs Navigation */
.ai-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.ai-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 2px solid rgba(148, 11, 146, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}

.ai-tab:hover {
  border-color: var(--primary-color);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.15);
}

.ai-tab.active {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.25);
}

.ai-tab-icon {
  width: 52px;
  height: 52px;
  background: rgba(148, 11, 146, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ai-tab.active .ai-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ai-tab-info {
  flex: 1;
}

.ai-tab-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin: 0 0 4px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.ai-tab.active .ai-tab-info h4 {
  color: #fff;
}

.ai-tab-info p {
  font-size: 0.85rem;
  color: var(--para-clr);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.ai-tab.active .ai-tab-info p {
  color: rgba(255, 255, 255, 0.9);
}

.ai-tab-arrow {
  font-size: 1.25rem;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.ai-tab.active .ai-tab-arrow {
  color: #fff;
  opacity: 1;
  transform: translateX(0);
}

/* Tabs Content */
.ai-tabs-content {
  position: relative;
  min-height: 500px;
}

.ai-tab-pane {
  display: none;
  animation: ai-fade-slide 0.5s ease;
}

.ai-tab-pane.active {
  display: block;
}

@keyframes ai-fade-slide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content Wrap */
.ai-content-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.1);
  border: 2px solid rgba(148, 11, 146, 0.08);
}

/* Content Image */
.ai-content-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.ai-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ai-content-wrap:hover .ai-content-img img {
  transform: scale(1.05);
}

.ai-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
  border: 4px solid #fff;
}

/* Content Text */
.ai-content-text {
  padding: 32px;
}

.ai-content-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 16px;
}

.ai-content-text>p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--para-clr);
  margin-bottom: 24px;
}

/* Features */
.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.ai-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(148, 11, 146, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ai-feat:hover {
  background: rgba(148, 11, 146, 0.1);
  transform: translateX(4px);
}

.ai-feat i {
  font-size: 1.25rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.ai-feat span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-text-clr);
}

/* CTA Button */
.ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.25);
  transition: all 0.3s ease;
}

.ai-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.35);
  color: #fff;
}

.ai-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.ai-cta:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
  .ai-h2 {
    font-size: 2.25rem;
  }

  .ai-wrapper {
    grid-template-columns: 340px 1fr;
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .ai-modern {
    padding: 60px 0;
  }

  .ai-head {
    margin-bottom: 50px;
  }

  .ai-h2 {
    font-size: 2rem;
  }

  .ai-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ai-tabs-nav {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
  }

  .ai-tab {
    flex-direction: column;
    min-width: 200px;
    text-align: center;
  }

  .ai-tab:hover {
    transform: translateY(-4px);
  }

  .ai-tab-arrow {
    display: none;
  }

  .ai-content-img {
    height: 280px;
  }

  .ai-content-text {
    padding: 28px;
  }

  .ai-content-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .ai-modern {
    padding: 50px 0;
  }

  .ai-h2 {
    font-size: 1.75rem;
  }

  .ai-badge {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  .ai-tab {
    min-width: 180px;
    padding: 16px;
  }

  .ai-tab-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .ai-tab-info h4 {
    font-size: 0.95rem;
  }

  .ai-tab-info p {
    font-size: 0.8rem;
  }

  .ai-content-img {
    height: 240px;
  }

  .ai-content-text {
    padding: 24px 20px;
  }

  .ai-content-text h3 {
    font-size: 1.375rem;
  }

  .ai-content-text>p {
    font-size: 0.95rem;
  }

  .ai-features {
    grid-template-columns: 1fr;
  }

  .ai-feat {
    padding: 10px;
  }

  .ai-feat span {
    font-size: 0.85rem;
  }

  .ai-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ai-modern {
    padding: 40px 0;
  }

  .ai-h2 {
    font-size: 1.5rem;
  }

  .ai-tabs-nav {
    flex-direction: column;
  }

  .ai-tab {
    min-width: 100%;
  }

  .ai-img-badge {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

/* ========================================
   Premium Development Services Section
======================================== */
.srv-premium {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

/* Header */
.srv-head {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.srv-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.2);
}

.srv-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 12px;
  line-height: 1.2;
}

.srv-grad {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srv-subtitle {
  font-size: 1rem;
  color: var(--para-clr);
  margin: 0;
}

/* Service Box */
.srv-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(148, 11, 146, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.srv-box::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(148, 11, 146, 0.03), transparent);
  transition: top 0.5s ease;
}

.srv-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 36px rgba(148, 11, 146, 0.18);
  border-color: var(--primary-color);
}

.srv-box:hover::before {
  top: 0;
}

/* Top Section */
.srv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.srv-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.srv-box:hover .srv-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.srv-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.srv-box:hover .srv-icon {
  transform: scale(1.15);
}

.srv-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

/* Body */
.srv-body {
  flex: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.srv-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.srv-box:hover .srv-heading {
  color: var(--primary-color);
}

.srv-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--para-clr);
  margin: 0;
}

/* Buttons */
.srv-btns {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.srv-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.srv-btn span {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.srv-btn img {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.srv-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
}

.srv-btn-1 {
  background: rgba(148, 11, 146, 0.08);
  color: var(--primary-color);
}

.srv-btn-1::before {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
}

.srv-btn-1:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.25);
}

.srv-btn-2 {
  background: rgba(218, 12, 129, 0.08);
  color: var(--secondary-clr);
}

.srv-btn-2::before {
  background: linear-gradient(135deg,
      var(--secondary-clr),
      var(--primary-color));
}

.srv-btn-2:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 12, 129, 0.25);
}

.srv-btn:hover::before {
  left: 0;
}

.srv-btn:hover img {
  transform: scale(1.2) rotate(10deg);
}

/* Hover Border */
.srv-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  transition: width 0.5s ease;
}

.srv-box:hover .srv-border {
  width: 100%;
}

/* Responsive */
@media (max-width: 1199px) {
  .srv-title {
    font-size: 2.25rem;
  }

  .srv-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .srv-premium {
    padding: 60px 0;
  }

  .srv-head {
    margin-bottom: 50px;
  }

  .srv-title {
    font-size: 2rem;
  }

  .srv-box {
    padding: 24px 20px;
  }

  .srv-icon-wrap {
    width: 64px;
    height: 64px;
  }

  .srv-icon {
    font-size: 1.75rem;
  }

  .srv-num {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .srv-premium {
    padding: 50px 0;
  }

  .srv-title {
    font-size: 1.75rem;
  }

  .srv-subtitle {
    font-size: 0.95rem;
  }

  .srv-tag {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  .srv-box {
    padding: 22px 18px;
  }

  .srv-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .srv-icon {
    font-size: 1.5rem;
  }

  .srv-num {
    font-size: 2rem;
  }

  .srv-heading {
    font-size: 1.125rem;
  }

  .srv-text {
    font-size: 0.9rem;
  }

  .srv-btn {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .srv-btn img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575px) {
  .srv-premium {
    padding: 40px 0;
  }

  .srv-title {
    font-size: 1.5rem;
  }

  .srv-box {
    padding: 20px 16px;
  }

  .srv-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .srv-num {
    align-self: flex-end;
  }

  .srv-btns {
    flex-direction: column;
  }
}

/* Stagger Animation */
@keyframes srv-fade-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.srv-box {
  animation: srv-fade-up 0.6s ease forwards;
  opacity: 0;
}

.srv-box:nth-child(1) {
  animation-delay: 0.1s;
}

.srv-box:nth-child(2) {
  animation-delay: 0.15s;
}

.srv-box:nth-child(3) {
  animation-delay: 0.2s;
}

.srv-box:nth-child(4) {
  animation-delay: 0.25s;
}

.srv-box:nth-child(5) {
  animation-delay: 0.3s;
}

.srv-box:nth-child(6) {
  animation-delay: 0.35s;
}

.srv-box:nth-child(7) {
  animation-delay: 0.4s;
}

.srv-box:nth-child(8) {
  animation-delay: 0.45s;
}

.srv-box:nth-child(9) {
  animation-delay: 0.5s;
}

/* ========================================
   Premium Packages Section
======================================== */
.pkg-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #ffeef4 50%, #fff 100%);
  position: relative;
}

/* Header */
.pkg-header {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.pkg-label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(148, 11, 146, 0.1);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pkg-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pkg-accent {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--para-clr);
  margin: 0;
}

/* Packages Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Package Card */
.pkg-card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(148, 11, 146, 0.03), transparent);
  transition: top 0.5s ease;
  pointer-events: none;
}

.pkg-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.pkg-card:hover::before {
  top: 0;
}

/* Offer Tag */
.pkg-offer {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg,
      var(--secondary-clr),
      var(--primary-color));
  color: #fff;
  padding: 6px 42px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(40deg);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
  z-index: 10;
}

/* Card Top (Fixed Height) */
.pkg-top {
  text-align: center;
  padding: 32px 28px 24px;
  border-bottom: 2px solid rgba(148, 11, 146, 0.1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.pkg-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 16px;
  line-height: 1.3;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  min-height: 48px;
}

.pkg-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pkg-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pkg-tagline {
  font-size: 0.875rem;
  color: var(--para-clr);
  margin: 0;
}

/* Features (Flexible Height) */
.pkg-features {
  padding: 24px 28px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 11, 146, 0.05);
  transition: all 0.3s ease;
}

.pkg-feature:last-child {
  border-bottom: none;
}

.pkg-feature:hover {
  padding-left: 8px;
  background: rgba(148, 11, 146, 0.02);
}

.pkg-check {
  font-size: 1.125rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.pkg-feature:hover .pkg-check {
  transform: scale(1.2);
}

.pkg-feature span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black-text-clr);
  font-weight: 500;
}

/* Extra Info (Optional - Above Footer) */
.pkg-extra {
  padding: 16px 28px;
  background: rgba(148, 11, 146, 0.05);
  margin: 0 28px 24px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.pkg-extra p {
  font-size: 0.875rem;
  color: var(--para-clr);
  margin: 0;
  line-height: 1.6;
}

.pkg-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pkg-link:hover {
  color: var(--secondary-clr);
  text-decoration: underline;
}

/* Footer (Fixed at Bottom) */
.pkg-footer {
  padding: 0 28px 28px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* CTA Button */
.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pkg-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
}

.pkg-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.35);
  color: #fff;
}

.pkg-btn:hover::before {
  width: 300px;
  height: 300px;
}

.pkg-btn span {
  position: relative;
  z-index: 2;
}

.pkg-btn i {
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.pkg-btn:hover i {
  transform: translateX(5px);
}

/* Corner Decorations */
.pkg-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.pkg-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-top-left-radius: 20px;
}

.pkg-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid var(--secondary-clr);
  border-right: 3px solid var(--secondary-clr);
  border-bottom-right-radius: 20px;
}

.pkg-card:hover .pkg-corner {
  width: 50px;
  height: 50px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1199px) {
  .pkg-title {
    font-size: 2.25rem;
  }

  .pkg-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 991px) {
  .pkg-section {
    padding: 60px 0;
  }

  .pkg-header {
    margin-bottom: 50px;
  }

  .pkg-title {
    font-size: 2rem;
  }

  .pkg-grid {
    gap: 24px;
  }

  .pkg-top {
    padding: 28px 24px 20px;
  }

  .pkg-features {
    padding: 20px 24px;
  }

  .pkg-extra {
    margin: 0 24px 20px;
  }

  .pkg-footer {
    padding: 0 24px 24px;
  }

  .pkg-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .pkg-section {
    padding: 50px 0;
  }

  .pkg-title {
    font-size: 1.75rem;
  }

  .pkg-desc {
    font-size: 0.95rem;
  }

  .pkg-label {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pkg-top {
    padding: 24px 20px 18px;
  }

  .pkg-features {
    padding: 18px 20px;
  }

  .pkg-extra {
    margin: 0 20px 18px;
  }

  .pkg-footer {
    padding: 0 20px 20px;
  }

  .pkg-name {
    font-size: 1.375rem;
    min-height: 42px;
  }

  .pkg-amount {
    font-size: 2.25rem;
  }

  .pkg-feature span {
    font-size: 0.9rem;
  }

  .pkg-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .pkg-offer {
    top: 14px;
    right: -35px;
    padding: 5px 40px;
    font-size: 0.65rem;
  }
}

@media (max-width: 575px) {
  .pkg-section {
    padding: 40px 0;
  }

  .pkg-title {
    font-size: 1.5rem;
  }

  .pkg-top {
    padding: 20px 16px 16px;
  }

  .pkg-features {
    padding: 16px;
  }

  .pkg-extra {
    margin: 0 16px 16px;
    padding: 12px;
  }

  .pkg-footer {
    padding: 0 16px 16px;
  }

  .pkg-offer {
    top: 12px;
    right: -38px;
    padding: 4px 38px;
    font-size: 0.6rem;
  }

  .pkg-name {
    min-height: 40px;
  }

  .pkg-amount {
    font-size: 2rem;
  }
}

/* Stagger Animation */
@keyframes pkg-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pkg-card {
  animation: pkg-fade-in 0.6s ease forwards;
  opacity: 0;
}

.pkg-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pkg-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pkg-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pkg-card:nth-child(4) {
  animation-delay: 0.4s;
}

.pkg-card:nth-child(5) {
  animation-delay: 0.5s;
}

.pkg-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* ========================================
   Professional Client Showcase - UPDATED
======================================== */
.pro-clients {
  padding: 100px 0 !important;
  background: #fafbfd !important;
  position: relative;
}

/* Header */
.pc-header {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.pc-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pc-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.25);
}

.pc-badge-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #940b92, transparent);
}

.pc-title {
  font-size: 3.25rem !important;
  font-weight: 900 !important;
  color: #0a0a0a !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.1 !important;
  letter-spacing: -1px;
}

.pc-title span {
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-desc {
  font-size: 1.125rem !important;
  color: #666 !important;
  margin: 0 !important;
  line-height: 1.7;
}

/* Showcase Grid */
.pc-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 70px;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pc-item {
  aspect-ratio: 1.5/1;
  position: relative;
}

.pc-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #e8e8e8, transparent);
}

.pc-item:nth-child(6n)::after {
  display: none;
}

.pc-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pc-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.02),
      rgba(218, 12, 129, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pc-item:hover .pc-box {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.08);
  z-index: 10;
}

.pc-item:hover .pc-box::before {
  opacity: 1;
}

.pc-box img {
  max-width: 95% !important;
  max-height: 85% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.pc-item:hover .pc-box img {
  transform: scale(1.1);
}

/* Stats Bar */
.pc-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.2);
  position: relative;
  overflow: hidden;
}

.pc-stats-bar::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: pc-rotate 20s linear infinite;
}

@keyframes pc-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pc-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pc-stat-item h3 {
  font-size: 2.75rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 8px 0 !important;
  line-height: 1 !important;
}

.pc-stat-item p {
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  font-weight: 600;
}

.pc-stat-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
}

/* Responsive */
@media (max-width: 1399px) {
  .pc-showcase {
    grid-template-columns: repeat(5, 1fr);
  }

  .pc-item:nth-child(6n)::after {
    display: block;
  }

  .pc-item:nth-child(5n)::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  .pro-clients {
    padding: 80px 0 !important;
  }

  .pc-title {
    font-size: 2.75rem !important;
  }

  .pc-showcase {
    grid-template-columns: repeat(4, 1fr);
  }

  .pc-item:nth-child(5n)::after {
    display: block;
  }

  .pc-item:nth-child(4n)::after {
    display: none;
  }

  .pc-stats-bar {
    padding: 35px 50px;
  }

  .pc-stat-item h3 {
    font-size: 2.25rem !important;
  }
}

@media (max-width: 991px) {
  .pro-clients {
    padding: 70px 0 !important;
  }

  .pc-header {
    margin-bottom: 60px;
  }

  .pc-title {
    font-size: 2.4rem !important;
  }

  .pc-showcase {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
  }

  .pc-item:nth-child(4n)::after {
    display: block;
  }

  .pc-item:nth-child(3n)::after {
    display: none;
  }

  .pc-box {
    padding: 24px;
  }

  .pc-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 40px;
  }

  .pc-stat-divider {
    display: none;
  }

  .pc-stat-item {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 767px) {
  .pro-clients {
    padding: 60px 0 !important;
  }

  .pc-header {
    margin-bottom: 50px;
  }

  .pc-title {
    font-size: 2.1rem !important;
  }

  .pc-desc {
    font-size: 1rem !important;
  }

  .pc-badge {
    font-size: 0.6rem;
    padding: 6px 20px;
  }

  .pc-badge-line {
    width: 50px;
  }

  .pc-showcase {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
    margin-bottom: 50px;
  }

  .pc-item:nth-child(3n)::after {
    display: block;
  }

  .pc-item:nth-child(2n)::after {
    display: none;
  }

  .pc-box {
    padding: 20px;
  }

  .pc-stats-bar {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .pc-stat-item h3 {
    font-size: 2rem !important;
  }

  .pc-stat-item p {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 575px) {
  .pro-clients {
    padding: 50px 0 !important;
  }

  .pc-title {
    font-size: 1.85rem !important;
  }

  .pc-showcase {
    grid-template-columns: repeat(2, 1fr);
    padding: 6px;
  }

  .pc-box {
    padding: 18px;
  }

  .pc-stats-bar {
    padding: 24px 20px;
  }

  .pc-stat-item {
    min-width: 100px;
  }

  .pc-stat-item h3 {
    font-size: 1.75rem !important;
  }

  .pc-stat-item p {
    font-size: 0.8rem !important;
  }
}

/* Smooth Reveal Animation */
@keyframes pc-reveal {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pc-item {
  animation: pc-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.pc-item:nth-child(1) {
  animation-delay: 0.05s;
}

.pc-item:nth-child(2) {
  animation-delay: 0.08s;
}

.pc-item:nth-child(3) {
  animation-delay: 0.11s;
}

.pc-item:nth-child(4) {
  animation-delay: 0.14s;
}

.pc-item:nth-child(5) {
  animation-delay: 0.17s;
}

.pc-item:nth-child(6) {
  animation-delay: 0.2s;
}

.pc-item:nth-child(7) {
  animation-delay: 0.23s;
}

.pc-item:nth-child(8) {
  animation-delay: 0.26s;
}

.pc-item:nth-child(9) {
  animation-delay: 0.29s;
}

.pc-item:nth-child(10) {
  animation-delay: 0.32s;
}

.pc-item:nth-child(11) {
  animation-delay: 0.35s;
}

.pc-item:nth-child(12) {
  animation-delay: 0.38s;
}

.pc-item:nth-child(13) {
  animation-delay: 0.41s;
}

.pc-item:nth-child(14) {
  animation-delay: 0.44s;
}

.pc-item:nth-child(15) {
  animation-delay: 0.47s;
}

.pc-item:nth-child(16) {
  animation-delay: 0.5s;
}

.pc-item:nth-child(17) {
  animation-delay: 0.53s;
}

.pc-item:nth-child(18) {
  animation-delay: 0.56s;
}

/* ========================================
   Compact Modern Industries Section
======================================== */
.ind-modern {
  padding: 80px 0;
  background: #fafbfd;
}

.ind-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Image Side */
.ind-img-side {
  position: sticky;
  top: 100px;
}

.ind-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(148, 11, 146, 0.15);
}

.ind-pic {
  width: 100%;
  height: auto;
  display: block;
}

.ind-stat {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ind-stat h3 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px 0;
  line-height: 1;
}

.ind-stat p {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  margin: 0;
}

/* Right Content Side */
.ind-head {
  margin-bottom: 32px;
}

.ind-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 12px;
}

.ind-h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.1;
}

.ind-h2 span {
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Compact Grid */
.ind-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ind-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.12);
  border-color: rgba(148, 11, 146, 0.2);
}

.ind-ic {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.1),
      rgba(218, 12, 129, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ind-item:hover .ind-ic {
  background: linear-gradient(135deg, #940b92, #da0c81);
  transform: scale(1.1);
}

.ind-ic i {
  font-size: 1.25rem;
  color: #940b92;
  transition: color 0.3s ease;
}

.ind-item:hover .ind-ic i {
  color: #fff;
}

.ind-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.ind-info p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1199px) {
  .ind-layout {
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }

  .ind-h2 {
    font-size: 2.2rem;
  }

  .ind-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ind-modern {
    padding: 70px 0;
  }

  .ind-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-img-side {
    position: relative;
    top: 0;
  }

  .ind-h2 {
    font-size: 2rem;
  }

  .ind-compact-grid {
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .ind-modern {
    padding: 60px 0;
  }

  .ind-h2 {
    font-size: 1.85rem;
  }

  .ind-tag {
    font-size: 0.6rem;
    padding: 5px 14px;
  }

  .ind-compact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ind-item {
    padding: 18px;
  }

  .ind-ic {
    width: 44px;
    height: 44px;
  }

  .ind-ic i {
    font-size: 1.125rem;
  }

  .ind-info h4 {
    font-size: 0.95rem;
  }

  .ind-info p {
    font-size: 0.8rem;
  }

  .ind-stat {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
  }

  .ind-stat h3 {
    font-size: 1.75rem;
  }

  .ind-stat p {
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .ind-modern {
    padding: 50px 0;
  }

  .ind-h2 {
    font-size: 1.65rem;
  }

  .ind-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
  }
}

/* Smooth Animation */
@keyframes ind-slide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ind-item {
  animation: ind-slide 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.ind-item:nth-child(1) {
  animation-delay: 0.05s;
}

.ind-item:nth-child(2) {
  animation-delay: 0.1s;
}

.ind-item:nth-child(3) {
  animation-delay: 0.15s;
}

.ind-item:nth-child(4) {
  animation-delay: 0.2s;
}

.ind-item:nth-child(5) {
  animation-delay: 0.25s;
}

.ind-item:nth-child(6) {
  animation-delay: 0.3s;
}

.ind-item:nth-child(7) {
  animation-delay: 0.35s;
}

.ind-item:nth-child(8) {
  animation-delay: 0.4s;
}

.ind-item:nth-child(9) {
  animation-delay: 0.45s;
}

/* ========================================
   Simple Sober About Section
======================================== */
.about-sober {
  padding: 80px 0;
  background: #fff;
}

/* Header */
.abt-header {
  max-width: 650px;
  margin: 0 auto 60px;
  text-align: center;
}

.abt-label {
  display: inline-block;
  padding: 8px 24px;
  background: #f8f9fa;
  color: #940b92;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 2px solid #f0f0f0;
}

.abt-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.abt-title span {
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Content */
.abt-main {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

/* Left Side */
.abt-left {
  position: sticky;
  top: 100px;
}

.abt-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.abt-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.abt-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.abt-badge h4 {
  font-size: 2rem;
  font-weight: 900;
  color: #940b92;
  margin: 0 0 4px 0;
  line-height: 1;
}

.abt-badge p {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  margin: 0;
}

.abt-highlights {
  display: flex;
  gap: 12px;
}

.abt-hl-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.abt-hl-item:hover {
  background: #fff;
  border-color: #940b92;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.1);
}

.abt-hl-item i {
  font-size: 1.25rem;
  color: #940b92;
}

.abt-hl-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Right Side */
.abt-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.abt-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.abt-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px 0;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

.abt-text strong {
  color: #940b92;
  font-weight: 700;
}

/* Features */
.abt-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.abt-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.abt-feat:hover {
  background: #fff;
  border-color: #940b92;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.1);
}

.abt-feat i {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #940b92;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.abt-feat:hover i {
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  transform: scale(1.05);
}

.abt-feat h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.abt-feat p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Stats */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 50px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.abt-stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
}

.abt-stat {
  text-align: center;
  position: relative;
  z-index: 1;
}

.abt-stat i {
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.abt-stat h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1;
}

.abt-stat p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .abt-main {
    grid-template-columns: 380px 1fr;
    gap: 50px;
  }

  .abt-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 991px) {
  .about-sober {
    padding: 70px 0;
  }

  .abt-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .abt-left {
    position: relative;
    top: 0;
  }

  .abt-title {
    font-size: 2rem;
  }

  .abt-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 30px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .about-sober {
    padding: 60px 0;
  }

  .abt-header {
    margin-bottom: 50px;
  }

  .abt-title {
    font-size: 1.85rem;
  }

  .abt-label {
    font-size: 0.65rem;
    padding: 6px 20px;
  }

  .abt-text h3 {
    font-size: 1.5rem;
  }

  .abt-text p {
    font-size: 0.95rem;
  }

  .abt-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abt-feat {
    padding: 18px;
  }

  .abt-highlights {
    flex-direction: column;
  }

  .abt-badge {
    bottom: 16px;
    right: 16px;
    padding: 16px 24px;
  }

  .abt-badge h4 {
    font-size: 1.75rem;
  }

  .abt-stats {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .abt-stat h3 {
    font-size: 2.25rem;
  }

  .abt-stat i {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .about-sober {
    padding: 50px 0;
  }

  .abt-title {
    font-size: 1.65rem;
  }

  .abt-text h3 {
    font-size: 1.35rem;
  }

  .abt-feat {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   FINAL ULTIMATE FOOTER - FIXED ALIGNMENT
======================================== */
.final-footer {
  background: #0a0a0a;
  color: #fff;
}

/* ========================================
   MAIN SECTION
======================================== */
.ff-main {
  padding: 60px 0;
  background: #121212;
}

/* Enhanced Company Section */
.ff-company-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
}

/* About Company */
.ff-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ff-logo {
  max-width: 200px;
  margin-bottom: 8px;
  margin: 0 auto;
}

.ff-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #999;
  margin: 0;
}

/* Right Section */
.ff-right-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Social Box */
.ff-social-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
}

.ff-social-box p {
  font-size: 0.9rem;
  color: #888;
  margin: 0 0 16px 0;
}

.ff-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ff-social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #1a1a1a;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ff-social-grid a:hover {
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-color: #da0c81;
  transform: translateX(4px);
}

.ff-social-grid a i {
  font-size: 1.5rem;
  color: #fff;
}

.ff-social-grid a span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Contact Info Section - FIXED */
.ff-contact-info {
  margin-bottom: 50px;
}

.ff-contact-info h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px 0;
  text-align: center;
}

.foot-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
}

.ff-contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.ff-contact-link:hover {
  background: #222;
  border-color: #940b92;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.2);
}

.ff-contact-link i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.ff-contact-link span {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.ff-contact-link strong {
  font-size: 1.125rem;
  color: #fff;
  display: block;
  font-weight: 700;
}

/* Office Locations */
.ff-locations {
  margin-bottom: 50px;
}

.ff-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.ff-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #940b92, #da0c81);
  border-radius: 2px;
}

.ff-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ff-loc-card {
  padding: 24px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.ff-loc-card:hover {
  background: #222;
  border-color: #940b92;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.2);
}

.ff-loc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.1),
      rgba(218, 12, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ff-loc-icon i {
  font-size: 1.75rem;
  color: #940b92;
}

.ff-loc-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.ff-loc-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin: 0 0 16px 0;
  min-height: 80px;
}

.ff-loc-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #222;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ff-loc-card a:hover {
  background: linear-gradient(135deg, #940b92, #da0c81);
  transform: scale(1.05);
}

/* Links Section */
.ff-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.ff-link-col h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 10px;
}

.ff-link-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #940b92, #da0c81);
  border-radius: 2px;
}

.ff-link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ff-link-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ff-link-col ul li a::before {
  content: '→';
  color: #940b92;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.ff-link-col ul li a:hover {
  color: #940b92;
  transform: translateX(4px);
}

.ff-link-col ul li a:hover::before {
  transform: translateX(4px);
}

/* Ratings */
.ff-ratings {
  padding: 40px;
  background: #1a1a1a;
  border-radius: 16px;
}

.ff-rating-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ff-rating-card {
  text-align: center;
  padding: 24px;
  background: #222;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ff-rating-card:hover {
  border-color: #940b92;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.2);
}

.ff-rating-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: contain;
}

.ff-rating-stars {
  font-size: 1.25rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.ff-rating-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* ========================================
   BOTTOM BAR
======================================== */
.ff-bottom {
  padding: 30px 0;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
}

.ff-bottom-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.ff-certs {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ff-certs img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.ff-certs img:hover {
  opacity: 1;
}

.ff-center {
  text-align: center;
}

.ff-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ff-legal-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.ff-legal-links a:hover {
  color: #940b92;
}

.ff-legal-links span {
  color: #444;
  font-size: 0.85rem;
}

.ff-copyright {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.ff-dmca a {
  display: block;
}

.ff-dmca img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.ff-dmca img:hover {
  opacity: 1;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
  .ff-company-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .ff-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ff-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .ff-rating-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .ff-main {
    padding: 50px 0;
  }

  .ff-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ff-main {
    padding: 40px 0;
  }

  .ff-company-section {
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .ff-social-grid {
    grid-template-columns: 1fr;
  }

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

  .ff-contact-info {
    margin-bottom: 40px;
  }

  .ff-location-grid {
    grid-template-columns: 1fr;
  }

  .ff-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ff-rating-grid {
    grid-template-columns: 1fr;
  }

  .ff-bottom-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .ff-certs {
    justify-content: center;
  }

  .ff-section-title {
    font-size: 1.5rem;
  }

  .ff-contact-info h4 {
    font-size: 1.35rem;
  }
}

@media (max-width: 575px) {
  .ff-main {
    padding: 30px 0;
  }

  .ff-contact-link {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .ff-contact-link i {
    width: 50px;
    height: 50px;
  }

  .ff-ratings {
    padding: 30px 20px;
  }
}

/* ========================================
   Modern Contact Section
======================================== */
.modern-contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.modern-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(148, 11, 146, 0.1), transparent);
  pointer-events: none;
}

.mcs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ========================================
   LEFT SIDE - CONTACT INFO
======================================== */
.mcs-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mcs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #1a1a1a;
  border-radius: 50px;
  width: fit-content;
  border: 2px solid #222;
}

.mcs-badge i {
  font-size: 1.125rem;
  color: #940b92;
}

.mcs-badge span {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mcs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.mcs-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #999;
  margin: 0;
}

/* Trust Badges */
.mcs-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mcs-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #1a1a1a;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mcs-trust-item:hover {
  background: #222;
  border-color: #940b92;
  transform: translateY(-2px);
}

.mcs-trust-item i {
  font-size: 1.125rem;
  color: #4caf50;
}

.mcs-trust-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* Contact Methods */
.mcs-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mcs-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mcs-method:hover {
  background: #222;
  border-color: #940b92;
  transform: translateX(4px);
}

.mcs-method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcs-method-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.mcs-method-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mcs-method-text span {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mcs-method-text a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mcs-method-text a:hover {
  color: #940b92;
}

/* Mini Stats */
.mcs-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: #1a1a1a;
  border-radius: 12px;
}

.mcs-mini-stat {
  text-align: center;
}

.mcs-mini-stat h4 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 6px 0;
  line-height: 1;
}

.mcs-mini-stat p {
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
  margin: 0;
}

/* ========================================
   RIGHT SIDE - FORM
======================================== */
.mcs-right {
  position: sticky;
  top: 100px;
}

.mcs-form-card {
  padding: 40px;
  background: #1a1a1a;
  border-radius: 20px;
  border: 2px solid #222;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mcs-form-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
}

.mcs-form-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin: 0 0 28px 0;
}

/* Alerts */
.mcs-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.mcs-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mcs-alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid rgba(76, 175, 80, 0.3);
}

.mcs-alert-success i {
  color: #4caf50;
}

.mcs-alert-success span {
  color: #4caf50;
  font-weight: 600;
}

.mcs-alert-error {
  background: rgba(244, 67, 54, 0.1);
  border: 2px solid rgba(244, 67, 54, 0.3);
}

.mcs-alert-error i {
  color: #f44336;
}

.mcs-alert-error ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #f44336;
  font-weight: 600;
}

.mcs-alert-error ul li {
  margin-bottom: 6px;
}

.mcs-alert-error ul li:last-child {
  margin-bottom: 0;
}

/* Form */
.mcs-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mcs-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mcs-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mcs-form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ddd;
  margin: 0;
}

.mcs-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.mcs-input-wrapper i {
  position: absolute;
  left: 16px;
  font-size: 1.125rem;
  color: #666;
  pointer-events: none;
}

.mcs-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: #222;
  border: 2px solid #333;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mcs-input-wrapper input:focus {
  outline: none;
  border-color: #940b92;
  background: #2a2a2a;
}

.mcs-input-wrapper input::placeholder {
  color: #666;
}

.mcs-textarea-wrapper {
  position: relative;
  display: flex;
}

.mcs-textarea-wrapper i {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1.125rem;
  color: #666;
  pointer-events: none;
}

.mcs-textarea-wrapper textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: #222;
  border: 2px solid #333;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
}

.mcs-textarea-wrapper textarea:focus {
  outline: none;
  border-color: #940b92;
  background: #2a2a2a;
}

.mcs-textarea-wrapper textarea::placeholder {
  color: #666;
}

/* Submit Button */
.mcs-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.3);
}

.mcs-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(148, 11, 146, 0.4);
}

.mcs-submit-btn i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.mcs-submit-btn:hover i {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
  .mcs-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mcs-right {
    position: relative;
    top: 0;
  }
}

@media (max-width: 991px) {
  .modern-contact-section {
    padding: 70px 0;
  }

  .mcs-title {
    font-size: 2.25rem;
  }

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

@media (max-width: 767px) {
  .modern-contact-section {
    padding: 60px 0;
  }

  .mcs-wrapper {
    gap: 40px;
  }

  .mcs-title {
    font-size: 2rem;
  }

  .mcs-form-card {
    padding: 30px 24px;
  }

  .mcs-trust-badges {
    flex-direction: column;
  }

  .mcs-trust-item {
    width: 100%;
    justify-content: center;
  }

  .mcs-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .modern-contact-section {
    padding: 50px 0;
  }

  .mcs-title {
    font-size: 1.75rem;
  }

  .mcs-form-card {
    padding: 24px 20px;
  }

  .mcs-method {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   Modern Blog Section - ENHANCED & FIXED
======================================== */
.modern-blog-section {
  padding: 80px 0;
  background: var(--ligh);
  position: relative;
  overflow: visible;
}

.modern-blog-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(148, 11, 146, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

.modern-blog-section>.custom_container {
  position: relative;
  z-index: 1;
}

/* ========================================
   HEADER - ENHANCED
======================================== */
.mbs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.mbs-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mbs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  border-radius: 50px;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.25);
}

.mbs-badge i {
  font-size: 0.9rem;
}

.mbs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.mbs-desc {
  font-size: 1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
}

.mbs-header-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.mbs-nav-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mbs-nav-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-color: #940b92;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.3);
}

.mbs-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ========================================
   CAROUSEL - FIXED
======================================== */
.mbs-carousel-wrapper {
  position: relative;
  overflow: visible;
}

.mbs-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BLOG CARD - ENHANCED
======================================== */
.mbs-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.mbs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mbs-card:hover::before {
  opacity: 1;
}

.mbs-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(148, 11, 146, 0.2);
}

/* Image */
.mbs-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.mbs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mbs-card:hover .mbs-card-image img {
  transform: scale(1.15);
}

.mbs-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #940b92;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mbs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mbs-card:hover .mbs-overlay {
  opacity: 1;
}

.mbs-overlay i {
  font-size: 2.5rem;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.mbs-card:hover .mbs-overlay i {
  transform: scale(1);
}

/* Content */
.mbs-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mbs-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mbs-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
}

.mbs-date i {
  font-size: 1rem;
  color: #940b92;
}

.mbs-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.mbs-card:hover .mbs-card-title {
  color: #940b92;
}

.mbs-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mbs-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 8px;
}

.mbs-read-more:hover {
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-color: #940b92;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
}

.mbs-read-more i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.mbs-read-more:hover i {
  transform: translateX(4px);
}

/* ========================================
   EMPTY STATE
======================================== */
.mbs-empty {
  width: 100%;
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mbs-empty i {
  font-size: 4rem;
  color: #940b92;
  margin-bottom: 20px;
  opacity: 0.5;
}

.mbs-empty p {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mbs-card {
  animation: fadeInUp 0.6s ease forwards;
}

.mbs-card:nth-child(1) {
  animation-delay: 0.1s;
}

.mbs-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mbs-card:nth-child(3) {
  animation-delay: 0.3s;
}

.mbs-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
  .mbs-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 300px;
  }
}

@media (max-width: 991px) {
  .modern-blog-section {
    padding: 70px 0;
  }

  .mbs-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mbs-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .modern-blog-section {
    padding: 60px 0;
  }

  .mbs-header {
    margin-bottom: 40px;
  }

  .mbs-title {
    font-size: 2rem;
  }

  .mbs-card {
    flex: 0 0 100%;
    min-width: 280px;
  }

  .mbs-card-image {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .modern-blog-section {
    padding: 50px 0;
  }

  .mbs-title {
    font-size: 1.75rem;
  }

  .mbs-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }

  .mbs-card-content {
    padding: 20px;
  }
}

/* ========================================
   ULTRA MODERN FAQ SECTION
======================================== */
.ultra-faq-section {
  padding: 70px 0;
  background: #fafafa;
  position: relative;
}

/* Header */
.ufaq-header {
  text-align: center;
  margin-bottom: 50px;
}

.ufaq-header-content {
  max-width: 700px;
  margin: 0 auto;
}

.ufaq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ufaq-tag i {
  font-size: 1rem;
  color: #940b92;
}

.ufaq-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ufaq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.ufaq-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* FAQ Grid */
.ufaq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* FAQ Item */
.ufaq-item {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ufaq-item:hover {
  border-color: #940b92;
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.08);
}

.ufaq-item.active {
  border-color: #940b92;
  box-shadow: 0 6px 24px rgba(148, 11, 146, 0.12);
}

/* Trigger Button */
.ufaq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.ufaq-trigger:hover {
  background: #f8f9fa;
}

.ufaq-item.active .ufaq-trigger {
  background: linear-gradient(90deg, rgba(148, 11, 146, 0.03), transparent);
}

.ufaq-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ufaq-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ufaq-item:hover .ufaq-num {
  transform: scale(1.1);
}

.ufaq-trigger h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.ufaq-item.active .ufaq-trigger h3 {
  color: #940b92;
}

/* Icon */
.ufaq-trigger-icon {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ufaq-item:hover .ufaq-trigger-icon {
  background: #efefef;
}

.ufaq-item.active .ufaq-trigger-icon {
  background: linear-gradient(135deg, #940b92, #da0c81);
  transform: rotate(45deg);
}

.ufaq-trigger-icon svg {
  color: #666;
  transition: color 0.3s ease;
}

.ufaq-item.active .ufaq-trigger-icon svg {
  color: #fff;
}

.ufaq-icon-vertical {
  transition: opacity 0.3s ease;
}

.ufaq-item.active .ufaq-icon-vertical {
  opacity: 0;
}

/* Content */
.ufaq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ufaq-item.active .ufaq-content {
  max-height: 800px;
}

.ufaq-content-inner {
  padding: 0 24px 20px 76px;
}

.ufaq-content-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Empty State */
.ufaq-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px dashed #e0e0e0;
}

.ufaq-empty i {
  font-size: 3.5rem;
  color: #ddd;
  margin-bottom: 16px;
}

.ufaq-empty p {
  font-size: 1rem;
  color: #999;
  margin: 0;
}

/* CTA Card */
.ufaq-cta-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 16px;
  border: 2px solid #e8e8e8;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.ufaq-cta-card:hover {
  border-color: #940b92;
  box-shadow: 0 6px 24px rgba(148, 11, 146, 0.12);
  transform: translateY(-2px);
}

.ufaq-cta-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ufaq-cta-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.ufaq-cta-content {
  flex: 1;
}

.ufaq-cta-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 6px 0;
}

.ufaq-cta-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.ufaq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
}

.ufaq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.4);
  color: #fff;
}

.ufaq-cta-btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.ufaq-cta-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .ultra-faq-section {
    padding: 60px 0;
  }

  .ufaq-title {
    font-size: 2.25rem;
  }

  .ufaq-cta-card {
    padding: 28px 32px;
  }
}

@media (max-width: 767px) {
  .ultra-faq-section {
    padding: 50px 0;
  }

  .ufaq-title {
    font-size: 2rem;
  }

  .ufaq-trigger {
    padding: 16px 20px;
  }

  .ufaq-trigger-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ufaq-content-inner {
    padding: 0 20px 16px 20px;
  }

  .ufaq-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .ufaq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ultra-faq-section {
    padding: 40px 0;
  }

  .ufaq-title {
    font-size: 1.75rem;
  }

  .ufaq-trigger h3 {
    font-size: 0.95rem;
  }

  .ufaq-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .ufaq-trigger-icon {
    width: 32px;
    height: 32px;
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ufaq-item {
  animation: fadeIn 0.5s ease forwards;
}

.ufaq-item:nth-child(1) {
  animation-delay: 0.05s;
}

.ufaq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.ufaq-item:nth-child(3) {
  animation-delay: 0.15s;
}

.ufaq-item:nth-child(4) {
  animation-delay: 0.2s;
}

.ufaq-item:nth-child(5) {
  animation-delay: 0.25s;
}

.ufaq-item:nth-child(6) {
  animation-delay: 0.3s;
}

/* ========================================
   PREMIUM MENU BUTTON
======================================== */
.premium-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(148, 11, 146, 0.25);
  margin-left: 12px;
  position: relative;
  overflow: hidden;
}

.premium-menu-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #da0c81, #940b92);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-menu-trigger:hover::before {
  opacity: 1;
}

.premium-menu-trigger:hover {
  box-shadow: 0 5px 15px rgba(148, 11, 146, 0.35);
  transform: translateY(-1px);
}

.premium-menu-trigger.active {
  background: #1a1a1a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.pmt-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
  position: relative;
  z-index: 1;
}

.pmt-line {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-menu-trigger.active .pmt-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.premium-menu-trigger.active .pmt-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.premium-menu-trigger.active .pmt-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.pmt-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* ========================================
   COMPACT MEGA MENU - BALANCED
======================================== */
.compact-mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.compact-mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cmm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
}

.cmm-dropdown {
  position: relative;
  margin-top: 108px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid #940b92;
}

.compact-mega-menu.active .cmm-dropdown {
  transform: translateY(0);
}

.cmm-wrapper {
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

/* ========================================
   QUICK NAV - WITH ACTIVE STATE
======================================== */
.cmm-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  padding-right: 40px;
  border-right: 2px solid #f0f0f0;
}

.cmm-nav-link {
  padding: 10px 18px;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmm-nav-link::after {
  content: '›';
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #940b92;
}

.cmm-nav-link:hover {
  background: linear-gradient(90deg, rgba(148, 11, 146, 0.08), transparent);
  color: #940b92;
  padding-left: 22px;
}

.cmm-nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.cmm-nav-link.active {
  background: linear-gradient(90deg, rgba(148, 11, 146, 0.12), transparent);
  color: #940b92;
  font-weight: 700;
  border-left: 3px solid #940b92;
  padding-left: 15px;
}

/* ========================================
   SERVICES GRID - CLEAN DESIGN
======================================== */
.cmm-services {
  flex: 1;
  min-width: 0;
}

.cmm-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #940b92;
  background: rgba(148, 11, 146, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  border: 1px solid rgba(148, 11, 146, 0.2);
}

.cmm-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 50%;
}

.cmm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 24px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 12px;
}

.cmm-services-grid::-webkit-scrollbar {
  width: 6px;
}

.cmm-services-grid::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.cmm-services-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #940b92, #da0c81);
  border-radius: 10px;
}

.cmm-service-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.cmm-service-col h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #940b92, #da0c81);
}

.cmm-service-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.cmm-service-col a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cmm-service-col a:hover {
  color: #940b92;
  padding-left: 20px;
}

.cmm-service-col a:hover::before {
  background: linear-gradient(135deg, #940b92, #da0c81);
  transform: scale(1.3);
}

/* ========================================
   CTA - MODERN
======================================== */
.cmm-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  min-width: 180px;
  padding-left: 40px;
  border-left: 2px solid #f0f0f0;
}

.cmm-cta span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-align: right;
}

.cmm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #940b92, #da0c81);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cmm-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #da0c81, #940b92);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cmm-cta-btn:hover::before {
  opacity: 1;
}

.cmm-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(148, 11, 146, 0.4);
  color: #fff;
}

.cmm-cta-btn span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-weight: inherit;
}

/* ========================================
   RESPONSIVE - PERFECT
======================================== */
@media (max-width: 1199px) {
  .cmm-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cmm-nav,
  .cmm-cta {
    border: none;
    padding: 0;
  }

  .cmm-nav {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
  }

  .cmm-nav-link {
    flex: 0 1 auto;
  }

  .cmm-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cmm-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: auto;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
  }
}

@media (max-width: 991px) {
  .cmm-dropdown {
    margin-top: 86px;
  }

  .cmm-wrapper {
    padding: 24px 0;
  }

  .cmm-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    max-height: 320px;
  }

  .premium-menu-trigger {
    padding: 9px 16px;
  }

  .pmt-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .cmm-wrapper {
    padding: 20px 0;
    gap: 20px;
  }

  .cmm-nav {
    padding-bottom: 20px;
    flex-direction: column;
  }

  .cmm-nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .cmm-services-grid {
    grid-template-columns: 1fr;
    max-height: 280px;
    gap: 20px;
  }

  .cmm-cta {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }

  .cmm-cta span {
    text-align: center;
  }

  .cmm-cta-btn {
    justify-content: center;
    width: 100%;
  }

  .premium-menu-trigger .pmt-text {
    display: none;
  }

  .premium-menu-trigger {
    padding: 9px;
    min-width: 42px;
  }
}

@media (max-width: 576px) {
  .cmm-dropdown {
    margin-top: 70px;
  }

  .cmm-wrapper {
    padding: 16px 0;
  }

  .cmm-nav-link {
    flex: 1 1 auto;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .cmm-nav-link::after {
    display: none;
  }

  .cmm-service-col h4 {
    font-size: 0.9rem;
  }

  .cmm-service-col a {
    font-size: 0.8rem;
  }

  .cmm-services-grid {
    max-height: 240px;
  }
}

body.menu-open {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* =============================================
   APPOINTMENT FORM - SCOPED STYLES ONLY
   Compact, Aligned, Professional
   WILL NOT AFFECT OTHER SECTIONS
   ============================================= */
/* Section Container - Scoped */
#contact-us-sec.appointment-section-wrapper {
  padding: 60px 0;
  background: #f9f9f9;
}

/* Main Card - Compact */
#contact-us-sec .appointment-card-main {
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 6px 20px rgba(148, 11, 146, 0.08);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

#contact-us-sec .appointment-card-main:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(148, 11, 146, 0.15);
}

/* Header - Compact & Clean */
#contact-us-sec .appointment-card-header {
  background: linear-gradient(135deg, #940b92 0%, #da0c81 100%);
  padding: 35px 30px;
  text-align: center;
  position: relative;
}

/* Icon - Minimal */
#contact-us-sec .header-icon-box {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

#contact-us-sec .appointment-card-main:hover .header-icon-box {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

#contact-us-sec .header-icon-box i {
  font-size: 26px;
  color: #ffffff;
}

/* Title - Compact */
#contact-us-sec .appointment-main-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

#contact-us-sec .appointment-main-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

/* Alert Messages - Compact */
#contact-us-sec .appointment-alerts {
  padding: 25px 30px 0;
}

#contact-us-sec .appointment-alerts .alert {
  border-radius: 8px;
  border: none;
  padding: 12px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 3px solid;
}

#contact-us-sec .appointment-alerts .alert-success {
  background: #f0f9f4;
  color: #0e5c2f;
  border-left-color: #28a745;
}

#contact-us-sec .appointment-alerts .alert-danger {
  background: #fef2f2;
  color: #7f1d1d;
  border-left-color: #dc2626;
}

#contact-us-sec .appointment-alerts .alert i {
  font-size: 16px;
}

/* Form Container - Compact Padding */
#contact-us-sec .appointment-form-container {
  padding: 35px 30px;
}

/* Form Groups - Proper Spacing */
#contact-us-sec .form-field-group {
  margin-bottom: 0;
}

/* Labels - Clean & Aligned */
#contact-us-sec .form-field-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1px;
}

#contact-us-sec .label-icon {
  color: #940b92;
  font-size: 14px;
}

/* Input Fields - Compact & Professional */
#contact-us-sec .form-field-input {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  padding: 11px 16px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 8px !important;
  background: #fafafa !important;
  color: #2e2e2e !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  width: 100% !important;
  height: auto !important;
}

#contact-us-sec .form-field-input:hover {
  background: #f5f5f5 !important;
  border-color: #c0c0c0 !important;
}

#contact-us-sec .form-field-input:focus {
  background: #ffffff !important;
  border-color: #940b92 !important;
  box-shadow: 0 0 0 3px rgba(148, 11, 146, 0.1) !important;
  outline: none !important;
}

#contact-us-sec .form-field-input::placeholder {
  color: #999999;
  font-size: 13px;
}

/* Select Dropdown - Compact */
#contact-us-sec select.form-field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23940b92' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 10px !important;
  padding-right: 40px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Textarea - Compact */
#contact-us-sec textarea.form-field-input {
  resize: vertical !important;
  min-height: 100px !important;
  line-height: 1.6 !important;
}

/* Checkbox - Compact */
#contact-us-sec .form-check-custom {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
}

#contact-us-sec .form-check-custom .form-check-input {
  width: 18px;
  height: 18px;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  cursor: pointer;
  margin: 2px 0 0 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

#contact-us-sec .form-check-custom .form-check-input:hover {
  border-color: #940b92;
}

#contact-us-sec .form-check-custom .form-check-input:checked {
  background-color: #940b92;
  border-color: #940b92;
}

#contact-us-sec .form-check-custom .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(148, 11, 146, 0.15);
  outline: none;
}

#contact-us-sec .form-check-custom .form-check-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #5e5e5e;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
  margin-left: 25px;
}

#contact-us-sec .terms-link-custom {
  color: #940b92;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#contact-us-sec .terms-link-custom:hover {
  color: #da0c81;
  text-decoration: underline;
}

/* Submit Button - Compact & Professional */
#contact-us-sec .form-submit-container {
  margin-top: 8px;
}

#contact-us-sec .btn-appointment-submit {
  width: 100%;
  padding: 13px 28px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #940b92 0%, #da0c81 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(148, 11, 146, 0.3);
  letter-spacing: 0.3px;
}

#contact-us-sec .btn-appointment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.4);
  background: linear-gradient(135deg, #a50ca3 0%, #e00d8e 100%);
}

#contact-us-sec .btn-appointment-submit:active {
  transform: translateY(0);
}

#contact-us-sec .btn-appointment-submit i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

#contact-us-sec .btn-appointment-submit:hover i {
  transform: translateX(3px);
}

/* Validation States */
#contact-us-sec .form-field-input.is-invalid {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
}

#contact-us-sec .form-field-input.is-valid {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
}

/* Loading State */
#contact-us-sec .btn-appointment-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

#contact-us-sec .btn-appointment-submit.loading::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: appointment-spinner 0.6s linear infinite;
}

@keyframes appointment-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive - Compact Mobile */
@media (max-width: 768px) {
  #contact-us-sec.appointment-section-wrapper {
    padding: 40px 0;
  }

  #contact-us-sec .appointment-card-header {
    padding: 30px 20px;
  }

  #contact-us-sec .header-icon-box {
    width: 50px;
    height: 50px;
  }

  #contact-us-sec .header-icon-box i {
    font-size: 24px;
  }

  #contact-us-sec .appointment-main-title {
    font-size: 24px;
  }

  #contact-us-sec .appointment-main-subtitle {
    font-size: 13px;
  }

  #contact-us-sec .appointment-form-container {
    padding: 25px 20px;
  }

  #contact-us-sec .appointment-alerts {
    padding: 20px 20px 0;
  }

  #contact-us-sec .form-field-label {
    font-size: 12px;
  }

  #contact-us-sec .form-field-input {
    font-size: 13px !important;
    padding: 10px 14px !important;
  }

  #contact-us-sec .btn-appointment-submit {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #contact-us-sec .appointment-card-main {
    border-radius: 10px;
  }

  #contact-us-sec .appointment-form-container {
    padding: 20px 16px;
  }
}

/* Focus Visible - Accessibility */
#contact-us-sec .form-field-input:focus-visible,
#contact-us-sec .form-check-input:focus-visible,
#contact-us-sec .btn-appointment-submit:focus-visible {
  outline: 2px solid #940b92;
  outline-offset: 2px;
}

/* Bootstrap Grid Override - Scoped */
#contact-us-sec .row.g-4 {
  --bs-gutter-y: 1.25rem;
  --bs-gutter-x: 1.25rem;
}

/* Ensure Form Spacing */
#contact-us-sec .appointment-form-main .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

#contact-us-sec .appointment-form-main .row>* {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

/* Animation - Subtle Fade In */
#contact-us-sec .appointment-card-main {
  animation: appointment-fadeIn 0.5s ease-out;
}

@keyframes appointment-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   NAVIGATION MENU - Modern, Sleek, Enhanced
   Desktop + Mobile Sidebar with Smooth Animations
============================================= */
/* Main Navigation Container */
.main-navigation {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(148, 11, 146, 0.08);
  box-shadow: 0 3px 12px rgba(148, 11, 146, 0.06);
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.main-navigation::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--primary-color),
      var(--secondary-clr),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-navigation:hover::before {
  opacity: 1;
}

/* Navigation Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

/* ==================== DESKTOP MENU ==================== */
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu>li {
  position: relative;
  margin: 0;
}

.desktop-menu>li>a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--black-text-clr);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.4px;
  border-radius: 8px 8px 0 0;
}

/* Gradient Underline Effect */
.desktop-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 85%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color) 0%,
      var(--secondary-clr) 100%);
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(148, 11, 146, 0.3);
}

.desktop-menu>li>a:hover::after,
.desktop-menu>li>a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-menu>li>a:hover {
  color: var(--primary-color);
  background: linear-gradient(180deg,
      rgba(148, 11, 146, 0.04) 0%,
      transparent 100%);
  transform: translateY(-2px);
}

/* Active Menu Item */
.desktop-menu>li>a.active {
  color: var(--primary-color);
  font-weight: 700;
  background: linear-gradient(180deg,
      rgba(148, 11, 146, 0.05) 0%,
      transparent 100%);
}

/* Menu Icon */
.desktop-menu li a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.desktop-menu li a:hover i {
  transform: scale(1.15) translateY(-2px);
}

/* Dropdown Indicator */
.desktop-menu li.has-dropdown>a::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 6px;
  font-size: 11px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.desktop-menu li.has-dropdown:hover>a::before {
  transform: rotate(180deg);
  opacity: 1;
}

/* ==================== DROPDOWN MENU ==================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 36px rgba(148, 11, 146, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  padding: 12px 0;
  border-top: 3px solid var(--primary-color);
  backdrop-filter: blur(10px);
}

.desktop-menu li.has-dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  position: relative;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--para-clr);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: linear-gradient(90deg,
      rgba(148, 11, 146, 0.08) 0%,
      transparent 100%);
  color: var(--primary-color);
  border-left-color: var(--secondary-clr);
  padding-left: 28px;
  transform: none;
}

.dropdown-menu li a i {
  width: 20px;
  font-size: 15px;
  color: var(--secondary-clr);
  text-align: center;
}

/* Multi-level Dropdown */
.dropdown-menu li.has-submenu {
  position: relative;
}

.dropdown-menu li.has-submenu>a::after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: auto;
  font-size: 12px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.dropdown-menu li.has-submenu:hover>a::after {
  transform: translateX(4px);
}

/* Sub-dropdown (3rd level) */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 8px 0;
  border-left: 3px solid var(--secondary-clr);
  margin-left: 8px;
}

.dropdown-menu li.has-submenu:hover>.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==================== MOBILE MENU TOGGLE ==================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  position: relative;
  z-index: 1001;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(148, 11, 146, 0.05);
  transform: scale(1.05);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  height: 22px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Hamburger Active Animation */
.mobile-menu-toggle.active {
  border-color: var(--secondary-clr);
  background: rgba(148, 11, 146, 0.1);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* ==================== MOBILE SIDEBAR MENU ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  max-width: 90%;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #ffeef4 100%);
  box-shadow: -8px 0 32px rgba(148, 11, 146, 0.25);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 0;
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-clr) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.3);
}

.mobile-menu-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu List */
.mobile-menu-content {
  padding: 20px 0 30px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu>.mobile-menu-content>ul>li {
  border-bottom: 1px solid rgba(148, 11, 146, 0.08);
}

.mobile-menu li {
  position: relative;
}

.mobile-menu li>a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--black-text-clr);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}

.mobile-menu li>a:hover,
.mobile-menu li>a.active {
  background: linear-gradient(90deg,
      rgba(148, 11, 146, 0.1) 0%,
      transparent 100%);
  color: var(--primary-color);
  padding-left: 32px;
}

.mobile-menu li>a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 0 4px 4px 0;
}

.mobile-menu li>a i {
  margin-right: 14px;
  font-size: 17px;
  color: var(--secondary-clr);
  width: 22px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mobile-menu li>a:hover i {
  transform: scale(1.15);
}

.mobile-menu li>a span {
  flex: 1;
}

/* Mobile Dropdown Toggle Button */
.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 18px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 8px;
  margin-left: auto;
}

.mobile-dropdown-toggle:hover {
  background: rgba(148, 11, 146, 0.1);
}

.mobile-dropdown-toggle.active {
  transform: rotate(180deg);
  background: rgba(148, 11, 146, 0.15);
}

/* Mobile Sub-menu (1st Level) */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(148, 11, 146, 0.03);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  margin-left: 20px;
  border-radius: 0 8px 8px 0;
}

.mobile-submenu.active {
  max-height: 800px;
  border-left-color: var(--primary-color);
}

.mobile-submenu li>a {
  padding: 13px 24px 13px 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--para-clr);
}

.mobile-submenu li>a i {
  font-size: 15px;
}

/* Mobile Sub-submenu (2nd Level) */
.mobile-sub-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(218, 12, 129, 0.03);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  margin-left: 15px;
  border-radius: 0 8px 8px 0;
}

.mobile-sub-submenu.active {
  max-height: 600px;
  border-left-color: var(--secondary-clr);
}

.mobile-sub-submenu li>a {
  padding: 12px 20px 12px 35px;
  font-size: 13px;
  font-weight: 500;
  color: var(--para-clr);
}

/* Mobile Menu Scrollbar */
.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: rgba(148, 11, 146, 0.05);
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-clr);
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  .desktop-menu>li>a {
    padding: 16px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .mobile-menu-header h3 {
    font-size: 16px;
  }

  .mobile-close-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ===================================
   MOBILE SIDEBAR - ULTRA CREATIVE UI
   =================================== */
/* Hide desktop menu on mobile */
@media screen and (max-width: 1024px) {
  #compactMegaMenu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .desktop-menu-wrapper .header-bt,
  .desktop-menu-wrapper .app-btn,
  .desktop-menu-wrapper .phone,
  .desktop-menu-wrapper .loginbtn {
    display: none;
  }
}

/* Mobile Sidebar Overlay - Enhanced */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 46, 46, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar Container - Enhanced */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 90%;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: -8px 0 40px rgba(148, 11, 146, 0.25);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  will-change: transform;
}

.mobile-sidebar.active {
  right: 0;
}

/* Custom Scrollbar */
.mobile-sidebar::-webkit-scrollbar {
  width: 5px;
}

.mobile-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 10px;
}

/* Mobile Sidebar Header */
.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--prime-gradient);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.2);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-logo img {
  max-width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Close Button */
.sidebar-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-close-btn svg {
  stroke: var(--white-clr);
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

/* Mobile Sidebar Content */
.mobile-sidebar-content {
  padding: 12px 0 24px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==========================================
   LEVEL 1 - Main Navigation (Each Item with Curved Border)
   ========================================== */
.mobile-nav-item {
  margin: 6px 10px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(148, 11, 146, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 2px solid var(--secondary-clr);
  /* Pink border for services */
}

.mobile-nav-item:hover {
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.15);
  transform: translateY(-1px);
  border-left-width: 2px;
}

.mobile-nav-item.has-dropdown {
  background: linear-gradient(135deg, #ffffff 0%, #fefbfe 100%);
}

.mobile-nav-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Level 1 Links - Compact Style */
.mobile-nav-link,
.mobile-nav-link-text {
  flex: 1;
  padding: 12px 14px;
  color: var(--black-text-clr);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.mobile-nav-link:hover,
.mobile-nav-link-text:hover {
  color: var(--primary-color);
}

/* Dropdown Toggle - No Background, Just Icon Color */
.mobile-dropdown-toggle {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  /* Remove background */
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
}

.mobile-dropdown-toggle:hover {
  background: transparent;
  /* Keep transparent on hover */
  color: var(--secondary-clr);
  /* Just change icon color */
  transform: scale(1.1);
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-dropdown-toggle.active {
  background: transparent;
  /* Keep transparent when active */
  color: var(--secondary-clr);
  /* Pink icon color */
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

/* Sub-Dropdown Toggle - No Background, Just Icon Color */
.mobile-sub-dropdown-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  /* Remove background */
  color: var(--secondary-clr);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 7px;
  margin: 6px 6px 6px 4px;
}

.mobile-sub-dropdown-toggle:hover {
  background: transparent;
  /* Keep transparent on hover */
  color: var(--primary-color);
  /* Just change icon color */
  transform: scale(1.1);
}

.mobile-sub-dropdown-toggle svg {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-sub-dropdown-toggle.active {
  background: transparent;
  /* Keep transparent when active */
  color: var(--primary-color);
  /* Purple icon color */
}

.mobile-sub-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

/* =============================================
   LEVEL 2 - Each Category Item with Curved Border
   ============================================= */
.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(148, 11, 146, 0.02), transparent);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.mobile-dropdown-menu.active {
  max-height: 2000px;
  padding: 8px 6px;
}

.mobile-dropdown-item {
  margin: 4px 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(148, 11, 146, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(148, 11, 146, 0.08);
}

.mobile-dropdown-item:hover {
  box-shadow: 0 2px 8px rgba(148, 11, 146, 0.12);
  transform: translateX(3px);
  border-left-width: 4px;
}

.mobile-dropdown-item.has-sub-dropdown {
  background: linear-gradient(135deg, #ffffff, #fef9fd);
}

.mobile-dropdown-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 28px;
  min-height: 42px;
}

/* Level 2 Text - Compact & Centered */
.mobile-dropdown-link-text {
  flex: 1;
  padding: 10px 8px 10px 0;
  color: var(--black-text-clr);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.mobile-dropdown-link-text:hover {
  color: var(--secondary-clr);
}

/* Sub-Dropdown Toggle - Compact Pill */
.mobile-sub-dropdown-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(218, 12, 129, 0.08);
  color: var(--secondary-clr);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 7px;
  margin: 6px 6px 6px 4px;
}

.mobile-sub-dropdown-toggle:hover {
  background: linear-gradient(135deg,
      var(--secondary-clr),
      var(--primary-color));
  color: white;
  transform: scale(1.08);
}

.mobile-sub-dropdown-toggle svg {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-sub-dropdown-toggle.active {
  background: linear-gradient(135deg,
      var(--secondary-clr),
      var(--primary-color));
  color: white;
}

.mobile-sub-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

/* ===========================================
   LEVEL 3 - Sub-links (Container with Left Border)
   =========================================== */
.mobile-sub-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 6px 10px 2px;
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(218, 12, 129, 0.03),
      rgba(148, 11, 146, 0.02));
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  border-left: 2px solid var(--secondary-clr);
  /* Pink border on container */
}

.mobile-sub-dropdown-menu.active {
  max-height: 1500px;
  padding: 6px 0;
}

.mobile-sub-dropdown-item {
  position: relative;
}

/* Level 3 Links - Compact & Modern */
.mobile-sub-dropdown-link {
  padding: 8px 14px 8px 18px;
  color: var(--para-clr);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
  min-height: 34px;
}

/* Animated arrow indicator */
.mobile-sub-dropdown-link::before {
  content: '→';
  position: absolute;
  left: 4px;
  font-size: 11px;
  color: var(--secondary-clr);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-sub-dropdown-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Gradient hover background */
.mobile-sub-dropdown-link:hover {
  color: var(--primary-color);
  background: linear-gradient(90deg, rgba(218, 12, 129, 0.08), transparent);
  padding-left: 24px;
  font-weight: 500;
  border-radius: 5px;
}

/* Active state */
.mobile-sub-dropdown-link:active {
  transform: scale(0.98);
}

/* Subtle divider */
.mobile-sub-dropdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 11, 146, 0.08),
      transparent);
}

/* Responsive Adjustments */
@media screen and (max-width: 480px) {
  .mobile-sidebar {
    width: 280px;
  }

  .mobile-nav-item {
    margin: 12px 8px;
  }

  .sidebar-logo img {
    max-width: 120px;
  }

  .mobile-nav-link,
  .mobile-nav-link-text {
    font-size: 13px;
    padding: 11px 12px;
  }

  .mobile-dropdown-link-text {
    font-size: 12px;
    padding: 9px 8px 9px 0;
  }

  .mobile-sub-dropdown-link {
    font-size: 11px;
    padding: 7px 12px 7px 16px;
  }
}

/* Desktop - Hide mobile sidebar */
@media screen and (min-width: 1025px) {

  .mobile-sidebar,
  .mobile-sidebar-overlay {
    display: none !important;
  }
}

/* Remove tap highlight */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Ripple effect on touch */
.mobile-nav-link,
.mobile-dropdown-link-text,
.mobile-sub-dropdown-link {
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::after,
.mobile-dropdown-link-text::after,
.mobile-sub-dropdown-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 11, 146, 0.15), transparent);
  transform: translate(-50%, -50%);
  transition:
    width 0.5s,
    height 0.5s;
}

.mobile-nav-link:active::after,
.mobile-dropdown-link-text:active::after,
.mobile-sub-dropdown-link:active::after {
  width: 250px;
  height: 250px;
}

/* =====================================================
   MOBILE SIDEBAR FOOTER - WITH DESKTOP APP-BTN STYLE
   ===================================================== */
.mobile-sidebar-footer {
  margin-top: auto;
  padding: 16px 14px 20px;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  border-top: 1px solid rgba(148, 11, 146, 0.08);
}

/* Book Appointment Button - Desktop Style for Mobile */
.mobile-sidebar-footer .app-btn {
  --h-button: 48px;
  --w-button: 100%;
  --round: 12px;
  width: 100%;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%),
    linear-gradient(0deg, #7a5af8, #7a5af8);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 14px 18px;
  text-decoration: none;
}

.mobile-sidebar-footer .app-btn::before,
.mobile-sidebar-footer .app-btn::after {
  content: '';
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}

.mobile-sidebar-footer .app-btn::before {
  --space: 1px;
  background: linear-gradient(177.95deg,
      rgba(255, 255, 255, 0.19) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.mobile-sidebar-footer .app-btn::after {
  --space: 2px;
  background: radial-gradient(65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%),
    linear-gradient(0deg, #7a5af8, #7a5af8);
}

.mobile-sidebar-footer .app-btn:active {
  transform: scale(0.98);
}

/* Fold Corner Effect */
.mobile-sidebar-footer .fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1.2rem;
  width: 1.2rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(100% 75% at 55%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 0.6rem;
  border-top-right-radius: var(--round);
}

.mobile-sidebar-footer .fold::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #e8e8e8;
  pointer-events: none;
}

.mobile-sidebar-footer .app-btn:hover .fold {
  margin-top: -1.2rem;
  margin-right: -1.2rem;
}

/* Points Animation */
.mobile-sidebar-footer .points-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mobile-sidebar-footer .point {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: float-points 3s infinite ease-in-out;
  opacity: 0;
}

.mobile-sidebar-footer .point:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.mobile-sidebar-footer .point:nth-child(2) {
  top: 40%;
  left: 25%;
  animation-delay: 0.3s;
}

.mobile-sidebar-footer .point:nth-child(3) {
  top: 60%;
  left: 15%;
  animation-delay: 0.6s;
}

.mobile-sidebar-footer .point:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 0.9s;
}

.mobile-sidebar-footer .point:nth-child(5) {
  top: 50%;
  left: 85%;
  animation-delay: 1.2s;
}

.mobile-sidebar-footer .point:nth-child(6) {
  top: 70%;
  left: 75%;
  animation-delay: 1.5s;
}

.mobile-sidebar-footer .point:nth-child(7) {
  top: 25%;
  left: 45%;
  animation-delay: 1.8s;
}

.mobile-sidebar-footer .point:nth-child(8) {
  top: 65%;
  left: 50%;
  animation-delay: 2.1s;
}

.mobile-sidebar-footer .point:nth-child(9) {
  top: 45%;
  left: 90%;
  animation-delay: 2.4s;
}

.mobile-sidebar-footer .point:nth-child(10) {
  top: 80%;
  left: 30%;
  animation-delay: 2.7s;
}

@keyframes float-points {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1.5);
  }
}

/* Inner Content Styling */
.mobile-sidebar-footer .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar-footer .inner .icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Contact Grid - Modern Layout */
.contact-grid {
  margin-top: 16px;
}

.contact-grid-title {
  margin: 0 0 12px 0;
  color: var(--black-text-clr);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-left: 12px;
}

.contact-grid-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 2px;
}

/* Contact Cards - Ultra Modern Design */
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: white;
  border: 1.5px solid rgba(148, 11, 146, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 11, 146, 0.06),
      transparent);
  transition: left 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  border-color: var(--primary-color);
  transform: translateX(3px) translateY(-1px);
  box-shadow: 0 6px 16px rgba(148, 11, 146, 0.12);
  background: linear-gradient(135deg, #ffffff, #fefbfe);
}

.contact-card:last-child {
  margin-bottom: 0;
}

.contact-card:active {
  transform: translateX(2px) translateY(0);
}

/* Contact Card Icons */
.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.phone-icon {
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.12),
      rgba(218, 12, 129, 0.12));
  color: var(--primary-color);
}

.contact-card:hover .phone-icon {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: white;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.25);
}

.whatsapp-icon {
  background: linear-gradient(135deg,
      rgba(37, 211, 102, 0.12),
      rgba(37, 211, 102, 0.15));
  color: #25d366;
}

.contact-card:hover .whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #20ba5b);
  color: white;
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* Contact Card Content */
.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--para-clr);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-card-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--black-text-clr);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-value {
  color: var(--primary-color);
}

.contact-card:hover .whatsapp-icon~.contact-card-content .contact-card-value {
  color: #25d366;
}

/* Responsive Adjustments */
@media screen and (max-width: 480px) {
  .mobile-sidebar-footer {
    padding: 14px 12px 18px;
  }

  .mobile-sidebar-footer .app-btn {
    padding: 13px 16px;
  }

  .mobile-sidebar-footer .inner {
    font-size: 14px;
  }

  .contact-card {
    padding: 11px 12px;
    gap: 10px;
  }

  .contact-card-icon {
    width: 40px;
    height: 40px;
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================
   SLEEK BLOG DETAIL PAGE - COMPACT MODERN DESIGN
   Using Root Colors from Custom CSS
   ================================ */
/* Main Content */
.bd-main-content {
  padding: 3rem 0;
  background: var(--body-bg);
}

/* Article Card - Compact Design */
.bd-article {
  background: var(--white-clr);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(148, 11, 146, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.bd-article:hover {
  box-shadow: 0 4px 25px rgba(148, 11, 146, 0.15);
}

/* Featured Image - Hero Style */
.bd-img {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.bd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bd-article:hover .bd-img img {
  transform: scale(1.05);
}

.bd-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.bd-cat-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--prime-gradient);
  color: var(--white-clr);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: var(--heading-font);
}

/* Header - Compact */
.bd-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(148, 11, 146, 0.1);
}

.bd-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--black-text-clr);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.bd-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--para-clr);
  font-family: var(--paragraph-font);
}

.bd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.bd-meta i {
  color: var(--secondary-clr);
  font-size: 0.95rem;
}

/* Content - Clean & Readable */
.bd-content {
  padding: 2rem;
}

.bd-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--black-text-clr);
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg,
      rgba(255, 238, 244, 0.4) 0%,
      rgba(252, 197, 241, 0.2) 100%);
  border-left: 4px solid var(--secondary-clr);
  border-radius: 8px;
  font-family: var(--paragraph-font);
}

.bd-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--para-clr);
  margin-bottom: 2rem;
  font-family: var(--paragraph-font);
}

.bd-text p {
  margin-bottom: 1.5rem;
}

/* Share Box - Modern */
.bd-share-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg,
      rgba(251, 251, 251, 0.8) 0%,
      var(--white-clr) 100%);
  border-radius: 12px;
  border: 2px solid rgba(148, 11, 146, 0.1);
  margin-top: 2rem;
}

.share-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--black-text-clr);
  font-family: var(--heading-font);
  font-size: 0.95rem;
}

.share-label i {
  color: var(--secondary-clr);
  font-size: 1.1rem;
}

.share-btns {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-clr);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.share-fb {
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.share-tw {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.share-li {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.share-wa {
  background: linear-gradient(135deg, #25d366, #1ebe57);
}

.share-btn:hover {
  transform: translateY(-4px) rotate(360deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Related Articles - Grid */
.bd-related {
  padding: 2rem;
  background: linear-gradient(135deg,
      rgba(255, 238, 244, 0.3) 0%,
      var(--white-clr) 100%);
  border-radius: 16px;
  border-top: 3px solid var(--secondary-clr);
  margin-top: 2rem;
}

.bd-related h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--heading-font);
}

.bd-related h3 i {
  color: var(--secondary-clr);
}

.bd-rel-card {
  display: block;
  background: var(--white-clr);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.bd-rel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(148, 11, 146, 0.2);
}

.bd-rel-img {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.bd-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bd-rel-card:hover .bd-rel-img img {
  transform: scale(1.1);
}

.bd-rel-content {
  padding: 1.25rem;
}

.bd-rel-date {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--secondary-clr);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--paragraph-font);
}

.bd-rel-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-text-clr);
  line-height: 1.4;
  margin: 0;
  font-family: var(--heading-font);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.bd-rel-card:hover h4 {
  color: var(--primary-color);
}

/* Sidebar - Sticky */
.bd-sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Widget Base */
.bd-widget {
  background: var(--white-clr);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(148, 11, 146, 0.08);
  transition: all 0.3s ease;
}

.bd-widget:hover {
  box-shadow: 0 4px 20px rgba(148, 11, 146, 0.12);
  transform: translateY(-2px);
}

.bd-widget h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--heading-font);
}

.bd-widget h4 i {
  color: var(--secondary-clr);
  font-size: 1.1rem;
}

/* Search Widget */
.bd-search .search-box {
  position: relative;
  display: flex;
}

.bd-search input {
  flex: 1;
  padding: 0.9rem 3rem 0.9rem 1.2rem;
  border: 2px solid var(--border-clr);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--white-clr);
  font-family: var(--paragraph-font);
}

.bd-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(148, 11, 146, 0.1);
}

.bd-search button {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  background: var(--prime-gradient);
  color: var(--white-clr);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-search button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(148, 11, 146, 0.4);
}

/* Categories Widget */
.bd-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bd-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(251, 251, 251, 0.6);
  border-radius: 10px;
  text-decoration: none;
  color: var(--black-text-clr);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: var(--paragraph-font);
  border: 2px solid transparent;
}

.bd-cat-item:hover {
  background: var(--prime-gradient);
  color: var(--white-clr);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(148, 11, 146, 0.25);
}

.bd-cat-item .count {
  background: rgba(148, 11, 146, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.bd-cat-item:hover .count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white-clr);
  transform: scale(1.1);
}

/* Recent Single Post - Large Card */
.bd-recent-single .bd-recent-card {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bd-recent-img-large {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.bd-recent-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bd-recent-card:hover .bd-recent-img-large img {
  transform: scale(1.1);
}

.bd-img-date {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(148, 11, 146, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white-clr);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--paragraph-font);
}

.bd-recent-info-large {
  padding: 0.5rem 0;
}

.bd-recent-cat {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(148, 11, 146, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--paragraph-font);
}

.bd-recent-info-large h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black-text-clr);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  transition: color 0.3s ease;
}

.bd-recent-card:hover .bd-recent-info-large h5 {
  color: var(--primary-color);
}

.bd-recent-info-large p {
  font-size: 0.9rem;
  color: var(--para-clr);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-family: var(--paragraph-font);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-clr);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--paragraph-font);
  transition: all 0.3s ease;
}

.bd-recent-card:hover .read-more {
  gap: 0.75rem;
  color: var(--primary-color);
}

.read-more i {
  transition: transform 0.3s ease;
}

.bd-recent-card:hover .read-more i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .bd-sidebar {
    position: static;
    margin-top: 2rem;
  }

  .bd-title {
    font-size: 1.75rem;
  }

  .bd-img {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .bd-img {
    height: 250px;
  }

  .bd-title {
    font-size: 1.5rem;
  }

  .bd-header,
  .bd-content {
    padding: 1.5rem;
  }

  .bd-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .share-btn {
    width: 38px;
    height: 38px;
  }

  .bd-related {
    padding: 1.5rem;
  }

  .bd-rel-img {
    height: 140px;
  }
}

/* Smooth Animations */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: var(--white-clr);
}

/* Main Container - More Width */
.policy-container {
  max-width: 1400px;
  margin: 50px auto 40px;
  padding: 0 24px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.show-policy {
  flex: 1;
  min-width: 0;
}

/* Attractive Gradient Sidebar - FIXED */
.policy-namebox {
  width: 280px;
  position: sticky;
  top: 90px;
  background: linear-gradient(135deg, #940b92 0%, #da0c81 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.25);
  overflow: hidden;
  order: 2;
}

.tab-head {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 20px 22px;
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.policy_name {
  padding: 0;
}

/* Enhanced Content Area - More Width */
.policy-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(148, 11, 146, 0.08);
  border: 1px solid rgba(148, 11, 146, 0.1);
}

.policy-head {
  font-size: 32px;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 28px;
  font-family: var(--heading-font);
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

.policy-head::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--secondary-clr);
}

.policy_detail {
  margin-top: 0;
}

/* Modern Attractive Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(148, 11, 146, 0.3);
  box-shadow: 0 6px 16px rgba(148, 11, 146, 0.1);
  transform: translateY(-2px);
}

.accordion-header {
  display: flex;
  padding: 18px 24px;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: 100%;
  background: #fafafa;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.accordion-header.active {
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.1),
      rgba(218, 12, 129, 0.08));
}

.accordion-header span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.accordion-header.active span:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

.accordion-header .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  background: rgba(148, 11, 146, 0.1);
  border-radius: 50%;
  padding: 4px;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
  background: var(--primary-color);
  color: white;
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  background: #ffffff;
}

.accordion-content>div {
  padding: 20px 24px 24px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  border-top: 2px solid #f5f5f5;
  font-family: var(--faq-font) !important;
}

/* Better Typography */
.accordion-content p {
  margin-bottom: 12px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .policy-container {
    flex-direction: column;
    gap: 24px;
    margin: 40px auto 30px;
    padding: 0 16px;
  }

  .policy-namebox {
    width: 100%;
    position: relative;
    top: 0;
    order: 1;
  }

  .tab-head {
    font-size: 16px;
    padding: 18px;
  }

  .policy_name_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .policy_name_list li {
    margin-bottom: 0;
  }

  .policy_name_list a {
    padding: 10px 16px;
    font-size: 13px;
  }

  .show-policy {
    order: 2;
  }

  .policy-content {
    padding: 28px 20px;
  }

  .policy-head {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .policy-container {
    padding: 0 12px;
    margin: 32px auto 24px;
  }

  .policy-content {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .policy-head {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .accordion {
    gap: 10px;
  }

  .accordion-item {
    border-radius: 10px;
  }

  .accordion-header {
    padding: 14px 18px;
  }

  .accordion-header span:first-child {
    font-size: 15px;
  }

  .accordion-content>div {
    padding: 16px 18px 18px;
    font-size: 14px;
  }

  .tab-head {
    font-size: 15px;
    padding: 16px;
  }

  .policy_name_list {
    padding: 10px;
    flex-direction: column;
  }

  .policy_name_list a {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Smooth Font Rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Additional Enhancements */
.policy-content [style*='display: none'] {
  display: none !important;
}

.policy-content [style*='display: block'] {
  display: block !important;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar Styling for Better Look */
.policy_name_list::-webkit-scrollbar {
  width: 6px;
}

.policy_name_list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.policy_name_list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.policy_name_list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   POLICY & FAQ PAGE STYLES
   ========================================== */
/* Main Container - More Width */
.policy-container {
  max-width: 1400px;
  margin: 50px auto 40px;
  padding: 0 24px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.show-policy {
  flex: 1;
  min-width: 0;
}

/* Attractive Gradient Sidebar */
.policy-namebox {
  width: 280px;
  position: sticky;
  top: 90px;
  background: linear-gradient(135deg, #940b92 0%, #da0c81 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(148, 11, 146, 0.25);
  overflow: hidden;
  order: 2;
}

.tab-head {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 20px 22px;
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.policy_name {
  padding: 0;
}

.policy_name_list {
  list-style: none;
  padding: 16px;
  margin: 0;
}

.policy_name_list li {
  margin-bottom: 8px;
}

/* Enhanced Content Area - More Width */
.policy-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(148, 11, 146, 0.08);
  border: 1px solid rgba(148, 11, 146, 0.1);
}

.policy-head {
  font-size: 32px;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 28px;
  font-family: var(--heading-font);
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

.policy-head::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--secondary-clr);
}

.policy_detail {
  margin-top: 0;
}

/* Modern Attractive Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(148, 11, 146, 0.3);
  box-shadow: 0 6px 16px rgba(148, 11, 146, 0.1);
  transform: translateY(-2px);
}

.accordion-header {
  display: flex;
  padding: 18px 24px;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: 100%;
  background: #fafafa;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.accordion-header.active {
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.1),
      rgba(218, 12, 129, 0.08));
}

.accordion-header span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.accordion-header.active span:first-child {
  color: var(--primary-color);
  font-weight: 700;
}

.accordion-header .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  background: rgba(148, 11, 146, 0.1);
  border-radius: 50%;
  padding: 4px;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
  background: var(--primary-color);
  color: white;
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  background: #ffffff;
}

.accordion-content>div {
  padding: 20px 24px 24px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  border-top: 2px solid #f5f5f5;
}

/* Policy Terms Display */
.policy-terms-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-term-item {
  background: #fafafa;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  padding: 24px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.policy-term-item:hover {
  border-color: rgba(148, 11, 146, 0.3);
  box-shadow: 0 6px 16px rgba(148, 11, 146, 0.1);
  transform: translateY(-2px);
  background: #ffffff;
}

.policy-term-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 14px;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-term-title::before {
  content: '●';
  color: var(--primary-color);
  font-size: 12px;
}

.policy-term-content {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.policy-term-content p {
  margin-bottom: 12px;
}

.policy-term-content p:last-child {
  margin-bottom: 0;
}

/* Empty State */
.policy-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #fafafa;
  border-radius: 16px;
  border: 2px dashed #e0e0e0;
}

.policy-empty-state i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.policy-empty-state h3 {
  font-size: 22px;
  color: var(--black-text-clr);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.policy-empty-state p {
  font-size: 15px;
  color: #999;
}

/* Additional Enhancements */
.policy-content [style*='display: none'] {
  display: none !important;
}

.policy-content [style*='display: block'] {
  display: block !important;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar Styling */
.policy_name_list::-webkit-scrollbar {
  width: 6px;
}

.policy_name_list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.policy_name_list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.policy_name_list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .policy-container {
    flex-direction: column;
    gap: 24px;
    margin: 40px auto 30px;
    padding: 0 16px;
  }

  .policy-namebox {
    width: 100%;
    position: relative;
    top: 0;
    order: 1;
  }

  .tab-head {
    font-size: 16px;
    padding: 18px;
  }

  .policy_name_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .policy_name_list li {
    margin-bottom: 0;
  }

  .policy_name_list a {
    padding: 10px 16px;
    font-size: 13px;
  }

  .show-policy {
    order: 2;
  }

  .policy-content {
    padding: 28px 20px;
  }

  .policy-head {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .policy-term-item {
    padding: 20px;
  }

  .policy-term-title {
    font-size: 18px;
  }

  .accordion-header {
    padding: 14px 18px;
  }

  .accordion-header span:first-child {
    font-size: 15px;
  }

  .accordion-content>div {
    padding: 16px 18px 18px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .policy-container {
    padding: 0 12px;
    margin: 32px auto 24px;
  }

  .policy-content {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .policy-head {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .policy-terms-list {
    gap: 16px;
  }

  .policy-term-item {
    padding: 18px;
  }

  .policy-term-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .policy-term-content {
    font-size: 14px;
  }

  .tab-head {
    font-size: 15px;
    padding: 16px;
  }

  .accordion {
    gap: 10px;
  }

  .accordion-item {
    border-radius: 10px;
  }
}

/* ==========================================
   POLICY CONTENT PARAGRAPH FORMATTING
   ========================================== */
.policy-term-content p,
.accordion-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #666;
  font-size: 15px;
}

.policy-term-content p:last-child,
.accordion-content p:last-child {
  margin-bottom: 0;
}

/* Better spacing for strong/bold text within paragraphs */
.policy-term-content p strong,
.accordion-content p strong {
  color: var(--black-text-clr);
  font-weight: 700;
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
}

/* Additional spacing for better readability */
.policy-term-content,
.accordion-content>div {
  text-align: justify;
  word-spacing: 1px;
  letter-spacing: 0.3px;
}

/* Ensure proper line breaks */
.policy-term-content br,
.accordion-content br {
  display: block;
  content: '';
  margin: 8px 0;
}

/* ==========================================
   CAREER PAGE - PROFESSIONAL & ALIGNED
   ========================================== */
/* Career Container */
.career-section {
  max-width: 1400px;
  margin: 60px auto 50px;
  padding: 0 24px;
}

/* Job Listings Container */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Job Card - Professional Design */
.job-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px !important;
  margin-bottom: 0 !important;
  border: 2px solid #e8e8e8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(148, 11, 146, 0.08);
  position: relative;
  overflow: visible;
}

.job-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 16px 0 0 16px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.job-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(148, 11, 146, 0.18);
  border-color: rgba(148, 11, 146, 0.3);
}

.job-item:hover::before {
  transform: scaleX(1);
}

/* Career Card Layout - Proper Alignment */
.career-card {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 32px !important;
}

.career-card>div:first-child {
  flex: 1;
  min-width: 0;
}

.career-card>a {
  flex-shrink: 0;
}

/* Job Title - Professional Styling */
.job-item h2.h5 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--black-text-clr) !important;
  margin-bottom: 14px !important;
  font-family: var(--heading-font) !important;
  line-height: 1.3 !important;
}

/* Job Description */
.job-item .mb-2 {
  font-size: 15px !important;
  color: #666 !important;
  line-height: 1.8 !important;
  margin-bottom: 18px !important;
}

/* Badge Container - Better Alignment */
.job-item .d-flex.gap-3 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
  margin-top: 0 !important;
}

/* Enhanced Professional Badges */
.job-item .badge {
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.job-item .badge.bg-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25) !important;
  color: white !important;
}

.job-item .badge.bg-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: white !important;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.25) !important;
}

.job-item .badge.bg-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25) !important;
  color: white !important;
}

.job-item .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Location Text - Professional Styling */
.job-item .text-muted {
  color: #888 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.job-item .text-muted i,
.job-item .text-muted .bi {
  font-size: 16px !important;
  color: var(--primary-color) !important;
}

/* Empty State */
.job-item p.mb-2:only-child {
  text-align: center !important;
  color: #999 !important;
  font-size: 16px !important;
  padding: 40px 20px !important;
  margin: 0 !important;
}

/* Section Heading */
.career-section>h1,
.career-section h1:first-child {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: var(--black-text-clr) !important;
  margin-bottom: 50px !important;
  font-family: var(--heading-font) !important;
  text-align: center !important;
  position: relative !important;
  padding-bottom: 24px !important;
}

.career-section>h1::after,
.career-section h1:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .career-section {
    margin: 40px auto 40px;
    padding: 0 16px;
  }

  .career-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .job-item {
    padding: 24px !important;
  }

  .job-item h2.h5 {
    font-size: 22px !important;
  }

  .career-card>a {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .career-section {
    margin: 32px auto 32px;
    padding: 0 12px;
  }

  .career-section>h1,
  .career-section h1:first-child {
    font-size: 28px !important;
    margin-bottom: 36px !important;
  }

  .job-item {
    padding: 20px !important;
  }

  .job-item h2.h5 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .job-item .mb-2 {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }

  .job-item .badge {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .job-item .d-flex.gap-3 {
    gap: 8px !important;
  }
}

/* Focus States for Accessibility */
.job-item:focus {
  outline: 3px solid rgba(148, 11, 146, 0.3) !important;
  outline-offset: 3px !important;
}

/* Smooth Entrance Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-item {
  animation: fadeInUp 0.5s ease-out backwards;
}

/* Stagger animation for multiple items */
.job-item:nth-child(1) {
  animation-delay: 0.1s;
}

.job-item:nth-child(2) {
  animation-delay: 0.2s;
}

.job-item:nth-child(3) {
  animation-delay: 0.3s;
}

.job-item:nth-child(4) {
  animation-delay: 0.4s;
}

.job-item:nth-child(5) {
  animation-delay: 0.5s;
}

.job-item:nth-child(n + 6) {
  animation-delay: 0.6s;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%);
  animation: floatBg 8s ease-in-out infinite;
}

@keyframes floatBg {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -10px);
  }
}

.login-container {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.login-left {
  flex: 1;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  background: white;
  min-width: 0;
}

.back-home {
  margin-bottom: 25px;
}

.back-home a {
  color: var(--para-clr);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.back-home a:hover {
  color: var(--primary-color);
  transform: translateX(-5px);
}

.login-form-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  width: 100%;
  max-width: 360px;
}

.login-form h2 {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--black-text-clr);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--body-font);
  transition: all 0.3s;
  background: #fafafa;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(148, 11, 146, 0.1);
}

.form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  transition: color 0.3s;
}

.form-group input:focus~i {
  color: var(--primary-color);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-clr));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(148, 11, 146, 0.35);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.45);
}

.forgot-link {
  text-align: center;
  margin-top: 18px;
}

.forgot-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.forgot-link a:hover {
  color: var(--secondary-clr);
}

.login-right {
  flex: 1;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.95),
      rgba(218, 12, 129, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  padding: 35px;
  min-width: 0;
}

.login-right::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.brand-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.brand-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.brand-logo i {
  font-size: 40px;
}

.brand-content h2 {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
  word-wrap: break-word;
}

.brand-content h5 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 18px;
}

.brand-content p {
  font-size: 14px;
  opacity: 0.85;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-page {
    padding: 15px;
  }

  .login-container {
    flex-direction: column;
    max-width: 100%;
    max-height: none;
    border-radius: 16px;
  }

  .login-left,
  .login-right {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .login-left {
    padding: 30px 25px;
    order: 2;
  }

  .login-right {
    min-height: 220px;
    padding: 25px 20px;
    order: 1;
  }

  .login-form {
    max-width: 100%;
  }

  .login-form h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .form-group input {
    padding: 13px 16px 13px 44px;
    font-size: 14px;
  }

  .form-group i {
    left: 14px;
    font-size: 15px;
  }

  .login-btn {
    padding: 13px;
    font-size: 15px;
  }

  .brand-content h2 {
    font-size: 28px;
  }

  .brand-content h5 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .brand-content p {
    font-size: 13px;
    max-width: 100%;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .brand-logo i {
    font-size: 32px;
  }

  .back-home a {
    font-size: 13px;
  }

  .forgot-link a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .login-container {
    border-radius: 12px;
  }

  .login-left {
    padding: 25px 20px;
  }

  .login-form h2 {
    font-size: 24px;
  }

  .form-group input {
    padding: 12px 14px 12px 42px;
  }

  .brand-content h2 {
    font-size: 24px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-logo i {
    font-size: 28px;
  }
}

/* ==========================================
   BACK HOME LINK
   ========================================== */
.back-home {
  margin-bottom: 25px;
}

.back-home a {
  color: var(--para-clr);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.back-home a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(148, 11, 146, 0.1),
      rgba(218, 12, 129, 0.1));
  transition: width 0.3s ease;
  z-index: -1;
}

.back-home a:hover::before {
  width: 100%;
}

.back-home a:hover {
  color: var(--primary-color);
  transform: translateX(-5px);
}

.back-home a i {
  transition: transform 0.3s ease;
}

.back-home a:hover i {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .back-home {
    margin-bottom: 20px;
  }

  .back-home a {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* ========================================
   PREMIUM CLIENT SHOWCASE SECTION
   Ultra-Modern, Compact & Creative
   ======================================== */
.pc-premium {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--body-bg) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.pc-premium::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(148, 11, 146, 0.08), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

.pc-premium::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218, 12, 129, 0.08), transparent);
  border-radius: 50%;
  filter: blur(80px);
}

/* ===== HEADER ===== */
.pc-head {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Premium Badge */
.pc-badge-wrap {
  margin-bottom: 24px;
  animation: pc-float 3s ease-in-out infinite;
}

@keyframes pc-float {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pc-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-clr));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(148, 11, 146, 0.3);
  position: relative;
  overflow: hidden;
}

.pc-premium-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  animation: pc-badge-shine 4s linear infinite;
}

@keyframes pc-badge-shine {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.pc-premium-badge i {
  font-size: 13px;
  animation: pc-crown-glow 2s ease-in-out infinite;
}

@keyframes pc-crown-glow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 223, 0, 0.8));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(255, 223, 0, 1));
  }
}

/* Main Title */
.pc-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black-text-clr);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.pc-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Subtitle */
.pc-subtitle {
  font-size: 1.125rem;
  color: var(--para-clr);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
  font-family: var(--paragraph-font);
}

/* Decorative Divider */
.pc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.pc-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.pc-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-clr);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(218, 12, 129, 0.6);
  animation: pc-dot-pulse 2s ease-in-out infinite;
}

@keyframes pc-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(218, 12, 129, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 35px rgba(218, 12, 129, 0.9);
    transform: scale(1.3);
  }
}

/* ===== INFINITE SCROLL GRID ===== */
.pc-grid-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
}

.pc-scroll-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: max-content;
}

.pc-row-left {
  animation-name: pc-scroll-left;
}

.pc-row-right {
  animation-name: pc-scroll-right;
}

@keyframes pc-scroll-left {
  0% {
    transform: translateX(0);
  }

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

@keyframes pc-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.pc-scroll-row:hover {
  animation-play-state: paused;
}

/* Logo Card */
.pc-logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(148, 11, 146, 0.08);
  border: 2px solid rgba(148, 11, 146, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pc-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(148, 11, 146, 0.05), transparent);
  transition: left 0.5s ease;
}

.pc-logo-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.pc-logo-card:hover::before {
  left: 100%;
}

.pc-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.pc-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ===== STATS BAR ===== */
.pc-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pc-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(148, 11, 146, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pc-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-clr));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pc-stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(148, 11, 146, 0.2);
  border-color: var(--primary-color);
}

.pc-stat-item:hover::before {
  transform: scaleX(1);
}

.pc-stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-clr));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(148, 11, 146, 0.3);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pc-stat-item:hover .pc-stat-icon {
  transform: rotateY(360deg) scale(1.1);
}

.pc-stat-content {
  flex: 1;
}

.pc-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 4px 0;
  line-height: 1;
  font-family: var(--heading-font);
}

.pc-stat-label {
  font-size: 0.95rem;
  color: var(--para-clr);
  margin: 0;
  font-weight: 600;
  font-family: var(--paragraph-font);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
  .pc-main-title {
    font-size: 2.5rem;
  }

  .pc-logo-card {
    width: 160px;
    height: 110px;
  }
}

@media (max-width: 991px) {
  .pc-premium {
    padding: 80px 0 100px;
  }

  .pc-head {
    margin-bottom: 60px;
  }

  .pc-main-title {
    font-size: 2rem;
  }

  .pc-stats-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pc-logo-card {
    width: 150px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .pc-premium {
    padding: 60px 0 80px;
  }

  .pc-main-title {
    font-size: 1.75rem;
  }

  .pc-subtitle {
    font-size: 1rem;
  }

  .pc-premium-badge {
    font-size: 10px;
    padding: 8px 20px;
  }

  .pc-logo-card {
    width: 130px;
    height: 90px;
    padding: 16px;
  }

  .pc-stat-item {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .pc-stat-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .pc-stat-num {
    font-size: 2rem;
  }

  .pc-line {
    width: 40px;
  }
}

@media (max-width: 575px) {
  .pc-premium {
    padding: 50px 0 60px;
  }

  .pc-main-title {
    font-size: 1.5rem;
  }

  .pc-logo-card {
    width: 120px;
    height: 80px;
  }

  .pc-scroll-row {
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* ========================================
   ISOLATED APPLY FORM STYLING
   Only affects .contact-overlay section
   Won't interfere with appointment form
======================================== */
/* Target only the job application form container */
.contact-overlay {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 70px 0;
  position: relative;
}

/* Only apply to .contact-box (job application form) */
.contact-overlay .contact-box {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 42px 40px !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(148, 11, 146, 0.06) !important;
  border: 1px solid rgba(148, 11, 146, 0.08) !important;
  border-top: 3px solid var(--primary-color) !important;
  max-width: 900px !important;
  margin: 0 auto;
}

/* Form Title - Only in contact-box */
.contact-overlay .contact-box h4 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--black-text-clr) !important;
  margin-bottom: 32px !important;
  text-align: center !important;
  letter-spacing: -0.3px;
}

/* Alert Messages - Only in contact-box */
.contact-overlay .contact-box .alert {
  border-radius: 10px !important;
  padding: 14px 18px !important;
  border: 1px solid !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 28px !important;
}

.contact-overlay .contact-box .alert-success {
  background: rgba(33, 128, 141, 0.05) !important;
  border-color: rgba(33, 128, 141, 0.2) !important;
  color: var(--primary-color) !important;
}

.contact-overlay .contact-box .alert-danger {
  background: rgba(255, 84, 89, 0.05) !important;
  border-color: rgba(255, 84, 89, 0.2) !important;
  color: #c0152f !important;
}

.contact-overlay .contact-box .alert ul {
  margin: 0;
  padding-left: 18px;
}

.contact-overlay .contact-box .alert ul li {
  margin-bottom: 4px;
}

/* Section Headers - Only in contact-box */
.contact-overlay .contact-box h5 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid rgba(148, 11, 146, 0.1) !important;
  letter-spacing: 0.3px;
}

/* Form Row Spacing - Compact */
.contact-overlay .contact-box .row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

.contact-overlay .contact-box .row>[class*="col-"] {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.contact-overlay .contact-box .g-4 {
  --bs-gutter-y: 18px !important;
}

.contact-overlay .contact-box .col-12.mt-4 {
  margin-top: 28px !important;
}

/* Form Labels - Only in contact-box */
.contact-overlay .contact-box .form-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--black-text-clr) !important;
  margin-bottom: 8px !important;
  display: block;
  letter-spacing: 0.2px;
}

.contact-overlay .contact-box .form-label .text-danger {
  color: #c0152f !important;
  margin-left: 2px;
}

/* All Form Inputs - Only in contact-box */
.contact-overlay .contact-box .form-control,
.contact-overlay .contact-box .form-select {
  height: 48px !important;
  padding: 12px 16px !important;
  background: #fafafa !important;
  border: 1px solid rgba(148, 11, 146, 0.15) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--black-text-clr) !important;
  font-family: var(--paragraph-font) !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

/* Textarea Specific - Only in contact-box */
.contact-overlay .contact-box textarea.form-control {
  height: 120px !important;
  resize: vertical;
  padding: 14px 16px !important;
  line-height: 1.6;
}

/* Focus States - Only in contact-box */
.contact-overlay .contact-box .form-control:focus,
.contact-overlay .contact-box .form-select:focus {
  background: #ffffff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(148, 11, 146, 0.08) !important;
  outline: none !important;
}

/* Placeholder Styling - Only in contact-box */
.contact-overlay .contact-box .form-control::placeholder {
  color: var(--para-clr) !important;
  opacity: 0.6 !important;
  font-weight: 400 !important;
}

/* Select Dropdown - Only in contact-box */
.contact-overlay .contact-box .form-select {
  padding-right: 42px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  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='%23940b92' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  cursor: pointer !important;
}

/* Select Options - Only in contact-box */
.contact-overlay .contact-box .form-select option {
  padding: 12px !important;
  background: #ffffff !important;
  color: var(--black-text-clr) !important;
  font-weight: 500 !important;
}

.contact-overlay .contact-box .form-select option[value=""] {
  color: var(--para-clr) !important;
  font-weight: 400 !important;
}

/* File Input - Only in contact-box */
.contact-overlay .contact-box input[type="file"].form-control {
  padding: 11px 14px !important;
  cursor: pointer;
  background: #fafafa !important;
}

.contact-overlay .contact-box input[type="file"].form-control::file-selector-button {
  padding: 6px 16px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.25s ease;
}

.contact-overlay .contact-box input[type="file"].form-control::file-selector-button:hover {
  background: var(--secondary-clr);
  transform: translateY(-1px);
}

/* Small Helper Text - Only in contact-box */
.contact-overlay .contact-box .text-muted {
  color: var(--para-clr) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  margin-top: 6px !important;
  display: block;
}

/* Submit Button - Only in contact-box */
.contact-overlay .contact-box .btn-primary {
  padding: 14px 42px !important;
  background: var(--primary-color) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--heading-font) !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(148, 11, 146, 0.25) !important;
  transition: all 0.3s ease !important;
}

.contact-overlay .contact-box .btn-primary:hover {
  background: var(--secondary-clr) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 11, 146, 0.35) !important;
}

.contact-overlay .contact-box .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(148, 11, 146, 0.3) !important;
}

/* Hover Effects - Only in contact-box */
.contact-overlay .contact-box .form-control:hover,
.contact-overlay .contact-box .form-select:hover {
  border-color: rgba(148, 11, 146, 0.25) !important;
  background: #ffffff !important;
}

/* Validation States - Only in contact-box */
.contact-overlay .contact-box .form-control:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 84, 89, 0.4);
}

.contact-overlay .contact-box .form-control:valid:not(:placeholder-shown):not([type="file"]) {
  border-color: rgba(33, 128, 141, 0.4);
}

/* Form Check - Only in contact-box */
.contact-overlay .contact-box .form-check {
  padding-left: 0;
}

.contact-overlay .contact-box .form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  border: 2px solid rgba(148, 11, 146, 0.3);
}

.contact-overlay .contact-box .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-overlay .contact-box .form-check-label {
  font-size: 13px;
  color: var(--black-text-clr);
  cursor: pointer;
}

/* ========================================
   RESPONSIVE DESIGN - ONLY CONTACT-BOX
======================================== */
@media (max-width: 768px) {
  .contact-overlay .contact-box {
    padding: 32px 26px !important;
    border-radius: 14px !important;
  }

  .contact-overlay .contact-box h4 {
    font-size: 22px !important;
    margin-bottom: 26px !important;
  }

  .contact-overlay .contact-box h5 {
    font-size: 15px !important;
    margin-bottom: 16px !important;
    padding-bottom: 8px !important;
  }

  .contact-overlay .contact-box .form-control,
  .contact-overlay .contact-box .form-select {
    height: 46px !important;
    padding: 11px 14px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .contact-overlay .contact-box textarea.form-control {
    height: 110px !important;
  }

  .contact-overlay .contact-box .form-select {
    background-position: right 12px center !important;
    background-size: 15px !important;
    padding-right: 38px !important;
  }

  .contact-overlay .contact-box .btn-primary {
    padding: 13px 36px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }

  .contact-overlay .contact-box .row>[class*="col-"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .contact-overlay .contact-box .g-4 {
    --bs-gutter-y: 16px !important;
  }
}

@media (max-width: 480px) {
  .contact-overlay {
    padding: 50px 0;
  }

  .contact-overlay .contact-box {
    padding: 26px 20px !important;
    border-radius: 12px !important;
  }

  .contact-overlay .contact-box h4 {
    font-size: 20px !important;
    margin-bottom: 22px !important;
  }

  .contact-overlay .contact-box h5 {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }

  .contact-overlay .contact-box .form-control,
  .contact-overlay .contact-box .form-select {
    height: 44px !important;
    padding: 10px 13px !important;
    font-size: 12px !important;
    border-radius: 7px !important;
  }

  .contact-overlay .contact-box textarea.form-control {
    height: 100px !important;
  }

  .contact-overlay .contact-box .btn-primary {
    padding: 12px 32px !important;
    font-size: 13px !important;
    width: 100%;
  }

  .contact-overlay .contact-box .form-label {
    font-size: 12px !important;
    margin-bottom: 7px !important;
  }
}

/* ========================================
   FINAL COMPACT MODERN TECH BANNER
   Professional UI for All 4 Pages
======================================== */
/* Modern Tech Gradient Background */
.ab-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      #1a1f2e 0%,
      #2d1b3d 60%,
      #1f2732 100%);
  z-index: 1;
}

/* Tech Pattern Overlay */
.ab-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(148, 11, 146, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px);
  z-index: 2;
}

/* Floating Tech Particles */
.ab-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(148, 11, 146, 0.06) 0%, transparent 6%),
    radial-gradient(circle at 82% 35%, rgba(239, 150, 81, 0.05) 0%, transparent 5%),
    radial-gradient(circle at 28% 75%, rgba(218, 12, 129, 0.05) 0%, transparent 5%),
    radial-gradient(circle at 78% 82%, rgba(255, 199, 7, 0.04) 0%, transparent 4%),
    radial-gradient(circle at 45% 18%, rgba(148, 11, 146, 0.04) 0%, transparent 3%),
    radial-gradient(circle at 65% 58%, rgba(239, 150, 81, 0.03) 0%, transparent 3%),
    radial-gradient(circle at 12% 55%, rgba(218, 12, 129, 0.04) 0%, transparent 3%),
    radial-gradient(circle at 88% 65%, rgba(255, 199, 7, 0.03) 0%, transparent 2%);
  background-size:
    180px 180px, 140px 140px, 160px 160px, 110px 110px,
    70px 70px, 65px 65px, 75px 75px, 50px 50px;
  animation: particleFloat 50s linear infinite;
  z-index: 3;
  opacity: 0.7;
}

@keyframes particleFloat {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 0%, 0% 50%, 50% 100%, 100% 50%;
  }

  100% {
    background-position: 10% 100%, 90% 100%, 10% 0%, 90% 0%, 60% 100%, 10% 60%, 60% 0%, 90% 60%;
  }
}

/* Content Layer */
.ab-hero .container-fluid {
  position: relative;
  z-index: 4;
}

/* Compact Hero Section */
.ab-hero {
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Premium Top Accent */
.ab-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--primary-color) 0%,
      var(--secondary-clr) 50%,
      var(--filler-clr) 100%);
  z-index: 5;
  box-shadow: 0 2px 12px rgba(148, 11, 146, 0.4);
}

/* Row Adjustment for Compact Design */
.ab-hero .row {
  min-height: 60vh !important;
}

/* Breadcrumb - Compact & Modern */
.ab-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 24px !important;
}

.ab-hero .breadcrumb-item {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Arrow - Perfectly Centered */
.ab-hero .breadcrumb-item+.breadcrumb-item::before {
  content: '›';
  color: #ffc107;
  font-weight: 700;
  font-size: 18px;
  padding: 0 8px;
  text-shadow: 0 2px 6px rgba(255, 199, 7, 0.5);
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: -1px;
  /* Fine-tune vertical alignment */
}

.ab-hero .breadcrumb-item.active {
  font-weight: 700;
  color: #ffc107;
  text-shadow: 0 2px 8px rgba(255, 199, 7, 0.6);
}

/* Link Styling */
.ab-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

/* Main Heading - Compact Professional */
.display-2 {
  font-size: 3.5rem !important;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.7px;
  color: #ffffff;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Compact Accent Line */
.display-2::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color) 0%,
      var(--secondary-clr) 60%,
      var(--filler-clr) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255, 199, 7, 0.4);
}

/* Fade Animation - Quick & Smooth */
.ab-fade {
  animation: abFadeInUp 0.8s ease-out;
}

@keyframes abFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE - COMPACT DESIGN
======================================== */
@media (max-width: 991px) {
  .ab-hero {
    min-height: 55vh;
  }

  .ab-hero .row {
    min-height: 55vh !important;
  }

  .display-2 {
    font-size: 3rem !important;
    letter-spacing: -0.6px;
  }

  .display-2::after {
    bottom: -16px;
    width: 85px;
  }

  .ab-hero .breadcrumb {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .ab-hero {
    min-height: 50vh;
  }

  .ab-hero .row {
    min-height: 50vh !important;
  }

  .display-2 {
    font-size: 2.5rem !important;
    letter-spacing: -0.5px;
  }

  .display-2::after {
    bottom: -14px;
    width: 70px;
  }

  .ab-hero .breadcrumb {
    margin-bottom: 18px !important;
  }

  .ab-hero .breadcrumb-item {
    font-size: 12px;
  }

  .ab-hero .breadcrumb-item+.breadcrumb-item::before {
    font-size: 16px;
    padding: 0 6px;
  }

  .ab-hero::after {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .ab-hero {
    min-height: 45vh;
  }

  .ab-hero .row {
    min-height: 45vh !important;
  }

  .display-2 {
    font-size: 2rem !important;
    letter-spacing: -0.4px;
  }

  .display-2::after {
    bottom: -12px;
    width: 60px;
    height: 3px;
  }

  .ab-hero .breadcrumb {
    margin-bottom: 16px !important;
  }

  .ab-hero .breadcrumb-item {
    font-size: 11px;
  }

  .ab-hero .breadcrumb-item+.breadcrumb-item::before {
    font-size: 15px;
    padding: 0 5px;
  }

  .ab-hero::after {
    height: 50px;
  }

  .ab-hero .col-12 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-white-50 {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.text-warning {
  color: #ffc107 !important;
  text-shadow: 0 2px 8px rgba(255, 199, 7, 0.6);
}

/* ========================================
   PERFORMANCE OPTIMIZATION
======================================== */
.ab-bg::after {
  will-change: background-position;
}

.ab-hero {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure smooth rendering */
.ab-fade {
  will-change: transform, opacity;
}

/* ========================================
   PERFECT ALIGNMENT
======================================== */
.ab-hero .col-lg-6,
.ab-hero .col-md-8,
.ab-hero .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Remove default margin-bottom from heading */
.ab-hero h1.mb-5 {
  margin-bottom: 0 !important;
}

/* Consistent spacing */
.ab-hero nav.mb-4 {
  margin-bottom: 24px !important;
}

.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    background-color: var(--white-clr);
    transition: all 0.3s ease;
}

.progress-wrap:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(11, 84, 254, 0.3);
}

.progress-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
}

.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-wrap.active-progress {
    display: block;
}
