/* playfair-display */

/* 
@font-face {
  font-family: "Bebas Neue", sans-serif;
  src: url('/assest/font/bebas-font/BebasNeue-Regular.ttf')
    format('truetype');
  font-weight: 400;
  font-style: normal;
} */

/* poppins */
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-ExtraLightItalic.ttf')
    format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-ExtraBoldItalic.ttf')
    format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assest/font/poppins/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

* {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  /* Base Colors */
  --white: #ffffff;
  --black: #000000;

  /* Primary Color */
  --primary: #000000; /* Primary as black */

  /* Supporting Colors */
  --secondary: #ffffff; /* Secondary as white for contrast */
  --accent: #2f2f2f; /* Slightly lighter black (for hover, borders) */
  --accent-2: rgb(
    0,
    0,
    0,
    0.6
  ); /* Slightly lighter black (for hover, borders) */
  --highlight: #000; /* Dark gray for soft backgrounds */
  --soft-gray: #f0f0f0; /* Light gray backgrounds */

  /* Text Colors */
  --heading-color: var(--white); /* white heading on dark bg */
  --text-color: #e0e0e0; /* soft white for regular text */

  /* Buttons */
  --btn-bg: var(--white); /* white background button */
  --btn-text: var(--black); /* black text */
  --btn-hover-bg: var(--accent); /* dark gray on hover */

  /* Borders and Shadows */
  --border-color: #333333; /* dark border */
  --shadow: rgba(255, 255, 255, 0.1); /* light white shadow */

  /* overlay */
  --overlay-black: rgba(255, 255, 255, 0.5); /* white overlay effect */
}
.text-white-500 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-white-800 {
  color: rgba(255, 255, 255, 0.8) !important;
}
.text-white-700 {
  color: rgba(255, 255, 255, 0.7) !important;
}
.text-white-900 {
  color: rgba(255, 255, 255, 0.9) !important;
}

h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter {
  text-transform: uppercase;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: lowercase;
}
/* Tailwind-like Container Wrapper */
.tailwind-sec-wrapper {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem;   /* default px-4 */
  padding-right: 1rem;
  max-width: 100%;       /* Full width by default */
}

/* Small screens (sm: 640px) */
@media (min-width: 640px) {
  .tailwind-sec-wrapper {
    padding-left: 1.5rem;  /* px-6 */
    padding-right: 1.5rem;
  }
}

/* Medium screens (md: 768px) */
@media (min-width: 768px) {
  .tailwind-sec-wrapper {
    padding-left: 2rem;   /* px-8 */
    padding-right: 2rem;
  }
}

/* Large screens (lg: 1024px) */
@media (min-width: 1024px) {
  .tailwind-sec-wrapper {
    padding-left: 3rem;   /* px-12 */
    padding-right: 3rem;
    /* max-width: 1280px;    Container max width */
  }
}
@media (min-width: 1800px) {
  .tailwind-sec-wrapper {
    max-width: 1800px;   /* yaha apna desired max-width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;  /* px-12 */
    padding-right: 3rem;
  }
}


footer .button-primary.button-third {
  margin-top: 14px;
}

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.bg-primary {
  background: var(--primary);
}
.bg-secondary {
  background: var(--secondary);
}
.poppins {
  font-family: 'Poppins', sans-serif !important;
}
.Playfair {
  font-family: 'Playfair Display', serif !important;
}

/* --------------------- */
.mainHeader {
  background: rgba(255, 255, 255, 1);
}
.scrolledHeader {
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body:has(#mobileMenu.translate-x-0) {
  overflow: hidden;
}

.menu-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
/* .menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
} */
.menu-link:hover,
.menu-link.active {
  color: var(--black);
}
/* .menu-link:hover::after, */
/* .menu-link.active::after {
  width: 100%;
} */
.mega-menu-main {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  top: 30px !important;
  transition: all ease-in 0.7s;
}


.mega-menu ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent) !important;
  padding: 12px 8px;
  margin: 2px 0;
}
.pl-4.space-y-1.text-sm  li a{
  padding: 4px 0px !important;
  margin: 4px 0 !important;
  display: block !important;
}
.mega-menu ul li a.active,
.mega-menu ul li a:hover {
  color: var(--primary) !important;
}

header ul li .menu-link {
  padding: 6px 8px;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--accent-2);
  position: relative;
}

header .button-primary {
  /* border-radius: 40px; */
  padding: 14px 20px !important;
  overflow: hidden;
}
.mega-menu {
  width: auto;
  max-width: 700px;
  top: 35px;
}
.mega-menu > div {
  width: 100%;
}

.mega-menu ul li a {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px 6px 20px !important;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.mega-menu ul li a::before {
  content: '\203A'; /* or use "\2192" */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: inherit;
  font-size: 20px;
}

/* Hover effect: move icon slightly to right */
.mega-menu ul li a:hover::before,
.mega-menu ul li a.active::before {
  transform: translate(8px, -50%);
}

/* CSS */

.button-primary {
  border-radius: 40px !important;
  overflow: hidden;
  appearance: none;
  background-color: transparent;
  border-width: 0;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding: 14px 20px;
  position: relative;
  z-index: 0;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1),
    background-color 100ms cubic-bezier(0.694, 0, 0.335, 1),
    color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
  border: 1px solid var(--white);
}

.button-primary:before {
  animation: opacityFallbackOut 0.5s step-end forwards;
  backface-visibility: hidden;
  background-color: var(--primary);
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  z-index: -1;
}

.button-primary:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
.button-third:before {
  background-color: var(--white) !important;
}

.button-third:hover {
  border: 1px solid var(--white) !important;
  color: var(--black) !important;
}
.button-primary:hover {
  color: var(--white);
  border: 1px solid var(--primary);
}
.button-second {
  color: var(--black) !important;
  border-color: var(--black) !important;
}
.button-second:hover {
  color: var(--white) !important;
  border-color: var(--white) !important;
}

/* Custom dropdown styles */
.dropdown:hover .dropdown-menu {
  display: block;
}
.overlay-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.custom-card h2 {
  padding: 12px !important;
}
.custom-card img {
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
}
.text-para {
  color: rgba(0, 0, 0, 0.7) !important;
}
.text-para-white {
  color: rgba(255, 255, 255, 0.8) !important;
}

.swiper-slide {
  transition: width 0.4s ease-in-out;
}

.serviec-cart {
  overflow: hidden !important;
}

.swiper-slide {
  transition: all 0.4s ease;
}
.Swiper_services_pagination .swiper-pagination-bullet-active,
.swiper-client-pagination .swiper-pagination-bullet-active,
.swiper-pagination-category-mobile .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 12px;
  background: var(--black);
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
  background: var(--highlight);
  width: 20px;
  border-radius: 12px;
}

  .WhychooseSlide .swiper-pagination .swiper-pagination-bullet-active,
  .hostessslide .swiper-pagination .swiper-pagination-bullet-active,
  .card-swiper .swiper-pagination .swiper-pagination-bullet-active,
.promoterslide .swiper-pagination .swiper-pagination-bullet-active,
.emceeslide .swiper-pagination .swiper-pagination-bullet-active,
.celebrityslide .swiper-pagination .swiper-pagination-bullet-active,
.mediaCoord-slide .swiper-pagination .swiper-pagination-bullet-active,
.pressRelease-slide .swiper-pagination .swiper-pagination-bullet-active,
.mediaCoverage-slide .swiper-pagination .swiper-pagination-bullet-active,
.digitalPR-slide .swiper-pagination .swiper-pagination-bullet-active
 {
  background: var(--white) !important;
  width: 20px;
  border-radius: 12px;
  position: relative;
  z-index: 9999;
}
.swiper-pagination-hero .swiper-pagination-bullet {
  background: var(--white);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.ripple::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  animation: ripple 2s infinite;
}

.grid-indigo {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.2),
    2px,
    transparent 2px
  );
  background-size: 16px 16px;
}
.blog h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog .swiper-button-prev:after,
.blog .swiper-rtl .swiper-button-next:after {
  content: '' !important;
}

.blog .swiper-button-next:after,
.blog .swiper-rtl .swiper-button-prev:after {
  content: '' !important;
}

.blog .swiper-button-next svg,
.blog .swiper-button-prev svg {
  width: 24px !important;
  height: 24px !important;
}

.blog .swiper-button-next,
.blog .swiper-button-prev {
  position: relative !important;
}

.blog .swiper-slide.swiper-slide-active {
  --tw-border-opacity: 1 !important;
  border-color: rgb(79 70 229 / var(--tw-border-opacity)) !important;
}

.blog
  .swiper-slide.swiper-slide-active
  > .swiper-slide-active\:text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity));
}

.blog
  .swiper-slide.swiper-slide-active
  > .flex
  .grid
  .swiper-slide-active\:text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity));
}

.gallery .swiper-button-prev::after,
.gallery .swiper-button-next::after {
  content: '' !important;
}
.button-primary:hover svg {
  transform: rotate(45deg) !important;
}
.sec-head-page {
  background-image: url(../images/sec/sec-head-bg-gallery.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
.sec-head-page::after {
  content: '';
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}
.tab {
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  background-color: var(--white);
}
.tab.active {
  background-color: #111;
  color: #fff !important;
}
.tab:hover {
  color: var(--black);
}
.tab.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25'/%3E%3C/svg%3E");
  transform: rotate(45deg) translateY(-80%);
  transform-origin: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-tab {
  position: relative;
}
.gallery-tab::after {
  position: absolute;
  content: '';
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  transform-origin: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="size-6"><path stroke-linecap="round" stroke-linejoin="round" d="m4.5 19.5 15-15m0 0H8.25m11.25 0v11.25" /></svg>');
}
.gallery-tab:hover::after {
  transform: rotate(45deg) translateY(-80%);
  transition: all ease-in-out 0.7s;
}
.tab-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.5s ease 0.2s, transform 1s ease 0.2s;
  z-index: 9;
  border-radius: 0.25rem;
}
.tab-img {
  overflow: hidden;
}
.tab-img::before {
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="%23fff" class="size-6"><path stroke-linecap="round" stroke-linejoin="round" d="M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" /></svg>'); /* 👈 white icon image path */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: opacity 0.5s ease 0.2s, transform 1s ease 0.2s;
  transform: translate(-50%) scale(0.4);
  opacity: 0;
  z-index: 10;
  transform-origin: center;
}

.tab-img:hover::after {
  opacity: 1;
  transform: scale(1);
}

.tab-img:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-sidebar-list {
  height: calc(100vh - 130px) !important;
  overflow: hidden !important;
  padding-bottom: 0;
}

@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .custom-card img {
    height: 100vh;
    margin-bottom: 0px;
  }
  .service-icon {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

/* Webkit-based browsers ke liye (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 4px; /* Scrollbar ki width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary); /* Thumb color */
  border-radius: 10px; /* Rounded thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--highlight); /* Hover pe dark color */
}
.customVideo {
  width: 100%;
  aspect-ratio: 77 / 50;
  border-radius: 10px;
  object-fit: cover;
  background-color: #000;
  display: block;
  max-height: 520px;
}

/* Firefox ke liye */
/* * {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
} */
.progress-wrap {
  position: fixed;
  right: 25px;
  bottom: 100px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--black);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap input {
  z-index: 10001;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: '↑';
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: var(--white);
  left: 0;
  top: -2px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap::before {
  position: absolute;
  content: '↑';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  -webkit-text-fill-color: var(--accent);
  left: 0;
  top: -2px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--white);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 25px;
  width: 50px;
  height: 50px;
  z-index: 999;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn img {
  width: 60%;
  height: 60%;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}

.portfolio .tab-active,
.portfolio .tab-inactive:hover {
  background-color: var(--black);
  color: var(--white);
}
.portfolio .tab-inactive {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.services .tab-active,
.services .tab-inactive:hover {
  background-color: var(--black);
  color: var(--white);
}
.services .tab-inactive {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.swiper_Client img {
  width: 100px !important;
  height: 80px !important;
  object-fit: contain !important;
}
.swiper_Client .swiper-slide > div {
  box-shadow: 0 0 10px 1px rgba(47, 47, 47, 0.2) !important;
  transition: all ease-in-out 0.4s;
}
.swiper_Client .swiper-slide > div:hover {
  transform: scale(1.05);
  box-shadow: 0 0 13px 1px rgba(47, 47, 47, 0.3) !important;
}
.portfolio h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.portfolio h4 + p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
footer img[alt='logo'] {
  max-width: fit-content !important;
  height: 80px !important;
  background: #fff !important;
  padding: 4px !important;
}
header a img[alt='Logo'] {
  height: 70px !important;
  max-width: 100% !important;
}
.hero-sec {
  height: calc(100vh - 78px) !important;
}
.group-hover:flex {
  transition: all 0.3s ease-in-out;
}
.after-text-xl:after {
  font-size: 20px !important;
  font-weight: 900;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideInUp 0.8s ease-out forwards;
}
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
.animate-delay-200 {
  animation-delay: 0.2s;
}
.animate-delay-300 {
  animation-delay: 0.3s;
}
.animate-delay-400 {
  animation-delay: 0.4s;
}
.animate-delay-500 {
  animation-delay: 0.5s;
}


@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.glow-animation {
  animation: glow 2s infinite ease-in-out;
}
.hero-social-icon {
  position: relative !important;
}

.hero-social-icon::after {
  content: '';
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
.hero-social-icon:hover::after {
  left: auto;
  right: 0;
  width: 100%;
}
.hero-social-icon::before {
  content: '';
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
.hero-social-icon:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
/* ---------------- about us sec -------------------- */
section.usp-section {
  background-color: #f8f9fa;
}

@media (min-width: 992px) {
  section.usp-section {
    position: relative;
    padding-bottom: 115px;
  }
}
@media (min-width: 1024px) {
  section.usp-section .heading {
    padding-bottom: 40px;
  }
}
section.usp-section .heading h2 span {
  font-weight: 600;
}
section.usp-section .top-wraper {
  display: flex;
  justify-content: center;
}
section.usp-section .top-wraper .top-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp {
    min-height: 112px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
    margin-top: 30px;
    position: absolute;
    transform: translate(0px, 50px);
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
    margin: 0px;
    transform: translate(0px, 31px);
  }
}
section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #000;
  padding: 30px;
  border-radius: 50%;
  background-color: #d9f4ff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 40px;
    font-size: 32px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    width: 76%;
    position: absolute;
    transform: translate(7px, -15px);
    text-align: center;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    padding: 0px;
    width: 65%;
    transform: translate(7px, -76px);
  }
}
@media (min-width: 1400px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section
  .top-wraper
  .top-cards-wrapp
  .card-description-wrapper
  span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section
    .top-wraper
    .top-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .top-wraper
    .top-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 16px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper p {
    font-size: 13px;
  }
}
section.usp-section .bottom-wraper {
  display: flex;
  justify-content: center;
}
section.usp-section .bottom-wraper .bottom-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp {
    min-height: 120px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp {
    min-height: 112px;
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
    position: absolute;
    transform: translate(0px, -69px);
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
    margin: 0px;
    transform: translate(0px, -32px);
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #000;
  padding: 30px;
  border-radius: 50%;
  background-color: #d9f4ff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 40px;
    font-size: 32px;
  }
}
section.usp-section
  .bottom-wraper
  .bottom-cards-wrapp
  .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper {
    width: 76%;
    position: absolute;
    transform: translate(3px, 16px);
    text-align: center;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper {
    padding: 0px;
    width: 65%;
    transform: translate(7px, 79px);
  }
}
@media (min-width: 1400px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section
  .bottom-wraper
  .bottom-cards-wrapp
  .card-description-wrapper
  span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 16px;
  }
}
section.usp-section
  .bottom-wraper
  .bottom-cards-wrapp
  .card-description-wrapper
  p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section
    .bottom-wraper
    .bottom-cards-wrapp
    .card-description-wrapper
    p {
    font-size: 13px;
  }
}
section.usp-section .left-container-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp {
    position: relative;
    gap: 21px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp {
    gap: 36px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
  min-height: 90px;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp {
    min-height: 120px;
    flex-direction: row;
    gap: 0px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp {
    min-height: 112px;
    gap: 20px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
    margin-top: 27px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
    margin: 0px;
  }
}
section.usp-section
  .left-container-wrapp
  .left-cards-wrapp
  .circle-wrapper
  span {
  width: 25px;
  height: 25px;
  color: #000;
  padding: 30px;
  border-radius: 50%;
  background-color: #d9f4ff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .circle-wrapper
    span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .circle-wrapper
    span {
    width: 40px;
    height: 40px;
    padding: 40px;
    font-size: 32px;
  }
}
section.usp-section
  .left-container-wrapp
  .left-cards-wrapp
  .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper {
    width: 76%;
    padding-left: 19px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper {
    padding: 0px;
    width: 65%;
  }
}
@media (min-width: 1400px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section
  .left-container-wrapp
  .left-cards-wrapp
  .card-description-wrapper
  span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 16px;
  }
}
section.usp-section
  .left-container-wrapp
  .left-cards-wrapp
  .card-description-wrapper
  p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp
    .card-description-wrapper
    p {
    font-size: 13px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
  justify-content: start;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
    justify-content: flex-end;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp {
  justify-content: center;
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp._middle-card-wrapp {
    justify-content: left;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp._middle-card-wrapp {
    justify-content: flex-start;
  }
}
section.usp-section
  .left-container-wrapp
  .left-cards-wrapp._middle-card-wrapp
  .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 65%;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 57%;
  }
}
@media (min-width: 1400px) {
  section.usp-section
    .left-container-wrapp
    .left-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 65%;
  }
}
section.usp-section .middle-div {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  background-color: #009edd;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  section.usp-section .middle-div {
    width: 310px;
    height: 310px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1200px) {
  section.usp-section .middle-div {
    width: 270px;
    height: 270px;
  }
}
section.usp-section .middle-div .circle-logo {
  width: 160px;
}
section.usp-section .right-container-wrapp {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp {
    position: relative;
    gap: 21px;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  section.usp-section .right-container-wrapp {
    gap: 36px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 90px;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    min-height: 120px;
    width: 94%;
  }
}
@media (min-width: 1024px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    width: 100%;
    min-height: 112px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .circle-wrapper {
    margin-top: 27px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .circle-wrapper {
    margin: 0px;
    padding-left: 12px;
  }
}
@media (min-width: 1400px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .circle-wrapper {
    padding: 0px;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp
  .circle-wrapper
  span {
  width: 25px;
  height: 25px;
  color: #000;
  padding: 30px;
  border-radius: 50%;
  background-color: #d9f4ff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .circle-wrapper
    span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .circle-wrapper
    span {
    width: 40px;
    height: 40px;
    padding: 40px;
    font-size: 32px;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp
  .card-description-wrapper {
  width: 100%;
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .card-description-wrapper {
    width: 65%;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp
  .card-description-wrapper
  span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .card-description-wrapper
    span {
    font-size: 16px;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp
  .card-description-wrapper
  p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp
    .card-description-wrapper
    p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._right-space {
    justify-content: flex-end;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp._middle-card-wrapp {
  justify-content: start;
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp._middle-card-wrapp {
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp._middle-card-wrapp {
    justify-content: flex-end;
  }
}
section.usp-section
  .right-container-wrapp
  .right-cards-wrapp._middle-card-wrapp
  .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 57%;
  }
}
@media (min-width: 1400px) {
  section.usp-section
    .right-container-wrapp
    .right-cards-wrapp._middle-card-wrapp
    .card-description-wrapper {
    width: 65%;
  }
}
@media (max-width: 991px) {
  section.usp-section .middle-div.logo-img-about {
    display: none !important;
  }
  section.usp-section .right-container-wrapp {
    flex-direction: column !important;
  }
  section.usp-section .left-container-wrapp {
    flex-direction: column-reverse !important;
  }
}
header .ph.ph-caret-down {
  font-size: 14px;
}
.mobile-sidebar-bg {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  transition: all ease-in-out 0.7s;
}
.mobile-sidebar-bg:has(.active-mobile-sidebar) {
  right: 0;
  width: 100%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
  width:20px !important;
  border-radius: 4px !important;
  background: #000;
  color: #000000;
}


@media (max-width:576px) {
  footer > div > div > div:nth-child(1){
    text-align: center !important;
  } 
  footer > div > div > div:nth-child(1) ul{
    justify-content: center !important;
  } 
  
}
.team-social-media{
  height: 40px;
  width: 34px;
  display: flex;
align-items: center;
justify-content: center;}

.footer-list ul li a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  color: #d1d5db; /* text-gray-300 */
  text-decoration: none;
  transition: padding-left 0.4s ease, color 0.4s ease; /* specific properties, smooth */
}

.footer-list ul li a::before {
  content: "";
  position: absolute;
  left: 0; /* start point icon */
  top: 50%;
  transform: translateY(-50%) translateX(-12px); /* slightly more left for smoothness */
  width: 16px;
  height: 16px;
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; /* smoother easing */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}

.footer-list ul li a:hover {
  padding-left: 24px; /* text aur icon dono ke liye space */
  color: #fff;
}

.footer-list ul li a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(4px); /* left se right move */
}
/* ------------------------------ */
.team-sec h5{
  text-transform: capitalize !important;
}