/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Bebas+Neue&display=swap");

@font-face {
  font-family: 'acumin-font';
  src: url('../fonts/Acumin-Variable-Concept.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #1b1d1c;
  --primary: #21c7f7;
  --secondary: #170c84;
}

*:focus,
*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #f7f9f8;
  overflow-x: hidden;
  height: 100%;
  /* font-family: "Poppins", sans-serif; */
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #0b0b0b;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* h1,
h2 {
  font-family: "acumin-font", sans-serif;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  margin: 0;
  font-family: "acumin-font", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: linear-gradient(90deg, rgba(31, 63, 211, 1) 0%, rgba(33, 199, 247, 1) 51%);
  font-size: 1.325rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 1.4rem 3.2rem;
  line-height: normal;
  border-radius: 20pc;
}

.themeBtn:hover {
  color: white;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */
/* NAV HEADER CSS */

header {
  background: #eef0f3;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  padding: 0rem 5rem 0rem 0rem;
}

.navbar-brand {
  margin: 0;
  padding: 1rem 11.2rem 0.8rem 8.4rem;
  background: #f7f9f8;
  clip-path: polygon(0% 0%, 100% 0%, 89% 100%, 0% 100%);
  position: relative;
}

/* .navbar-brand img{
  width: 280px;
} */

.navbar-nav {
  align-items: center;
  width: 76%;
  gap: 6rem;
}


.navbar-nav .nav-item .nav-link {
  font-size: 1.1rem;
  color: #090909;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  font-weight: 500;
}

/* Active Tab Styling */
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 500;
}

.navbar-nav .nav-item:has(.nav-link.active) {
  color: var(--primary);
  /* Bullet color changes */
}



body.menu-open {
  overflow: hidden;
}

.side-header {
  display: none;
}

@media (max-width: 1199px) {

  .side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    /* hidden by default */
    width: 280px;
    height: 100%;
    background: #ffffff;
    padding-top: 15px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .side-menu.show {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    padding-left: 20px;
  }

  .navbar-nav .nav-link {
    color: #fff;
    padding: 10px 0;
  }

  .side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .side-logo img {
    height: 79px;
  }

  .menu-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar-toggler .toggler-icon {
  display: inline-block;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-toggler .toggler-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease;
}

/* Default = Hamburger */
.navbar-toggler .toggler-icon span:nth-child(1) {
  top: 0;
  transform: rotate(0);
}

.navbar-toggler .toggler-icon span:nth-child(2) {
  top: 9px;
  opacity: 1;
}

.navbar-toggler .toggler-icon span:nth-child(3) {
  top: 18px;
  transform: rotate(0);
}

/* When menu open = X */
.navbar-toggler.active .toggler-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.navbar-toggler.active .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}


/* !NAV HEADER CSS */

/* * MAIN HERO SLIDER CSS */
.main-slider {
  height: 100vh !important;
}



.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  top: -63% !important;
  left: 96% !important;
  position: relative;
  gap: 2.7rem;
}

.homeSlider .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  background: var(--white);
  position: relative;
  opacity: 1;
}

.homeSlider .swiper-pagination-bullet-active::after {
  content: attr(data-index);
  position: absolute;
  left: 0px;
  top: -34px;
  font-size: 24px;
  color: #fff;
}

.homeSlider .swiper-pagination-bullet-active {
  width: 90px;

}



.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: #fefefe;
  font-size: 7.3rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
}




.main-slider .wl-span {
  color: var(--white);
  font-weight: 500;
  line-height: 2.6;
  margin: 0.625rem 0;
  font-size: 2.1625rem;
}

.main-slider p {
  font-size: 1.6rem;
  color: white;
  line-height: 1.5;
}

.slideOne {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}


.main-slider .right-content {
  display: flex;
  justify-content: center;
}

.main-slider .right-content .women-img {
  position: relative;
  top: 38px;
  opacity: 0;
  transform: translateY(80px) scale(0.7);
}

.main-slider .right-content.animate .women-img {
  animation: womenImageShow 1s ease forwards;
  animation-delay: 0.8s;
}

.main-slider .right-content .women-img:before {
  position: absolute;
  content: "";
  width: 600px;
  height: 600px;
  background: linear-gradient(180deg, rgba(31, 44, 206, 1) 8%, rgba(32, 152, 234, 1) 48%);
  border-radius: 100%;
  z-index: -1;
  top: -6%;
  opacity: 0;
  transform: scale(0);
}

.main-slider .right-content.animate .women-img::before {
  animation:
    circleReveal 1s ease forwards,
    womenBoxPulse 2s infinite 1.3s;
}

@keyframes women-box {
  0% {
    box-shadow: 0 0 0 0px rgb(34 150 225);
  }

  100% {
    box-shadow: 0px 2px 0px 26px rgb(33 148 225);
  }
}

.main-slider .design-1 {
  position: absolute;
  top: 9%;
  z-index: -0;
  left: 8%;

  opacity: 0;
  transform: translateX(-120px) rotate(-20deg);
}

.main-slider .right-content.animate .design-1 {
  animation: designLeft 1s ease forwards;
  animation-delay: 1.8s;
}

.main-slider .design-2 {
  position: absolute;
  top: 29%;
  z-index: -1;
  right: -0%;
  opacity: 0;
  transform: translateX(120px) rotate(20deg);
}

.main-slider .right-content.animate .design-2 {
  animation: designRight 1s ease forwards;
  animation-delay: 2.2s;
}

.main-slider .logos .logo {
  position: absolute;

  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.main-slider .logos .logo:nth-child(1) {
  top: 4%;
  right: 24%;
}

.main-slider .logos .logo:nth-child(2) {
  top: 23%;
  right: 20%;
}

.main-slider .logos .logo:nth-child(3) {
  bottom: 42%;
  left: 2%;
}

.main-slider .logos .logo:nth-child(4) {
  bottom: 24%;
  left: 16%;
}

.main-slider .right-content.animate .logo:nth-child(1) {
  animation: logoPop 0.8s ease forwards;
  animation-delay: 2.8s;
}

.main-slider .right-content.animate .logo:nth-child(2) {
  animation: logoPop 0.8s ease forwards;
  animation-delay: 3.2s;
}

.main-slider .right-content.animate .logo:nth-child(3) {
  animation: logoPop 0.8s ease forwards;
  animation-delay: 3.6s;
}

.main-slider .right-content.animate .logo:nth-child(4) {
  animation: logoPop 0.8s ease forwards;
  animation-delay: 4s;
}

/* BLUE CIRCLE REVEAL */
@keyframes circleReveal {

  0% {
    opacity: 0;
    transform: scale(0);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }

}



/* WOMEN IMAGE SHOW */
@keyframes womenImageShow {

  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.7);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}



/* FLOATING EFFECT */
.main-slider .right-content .women-img img {
  animation: floatWomen 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatWomen {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }

}



/* LEFT DESIGN */
@keyframes designLeft {

  0% {
    opacity: 0;
    transform: translateX(-120px) rotate(-20deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }

}



/* RIGHT DESIGN */
@keyframes designRight {

  0% {
    opacity: 0;
    transform: translateX(120px) rotate(20deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }

}



/* LOGO POP */
@keyframes logoPop {

  0% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

}



/* PULSE EFFECT */
@keyframes womenBoxPulse {

  0% {
    box-shadow: 0 0 0 0 rgb(34 150 225 / 70%);
  }

  70% {
    box-shadow: 0 0 0 30px rgb(34 150 225 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(34 150 225 / 0%);
  }

}

/* slide-social-icon */
.header_links {
  position: relative;
  z-index: 11;
  top: 31%;
  left: 1%;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.header_links li:first-child {
  writing-mode: sideways-rl;
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0 14px 16px 12px;
}

ul.header_links li a {
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

ul.header_links li a:hover {
  color: var(--white);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #170c84b3;
  transition: all 0.3s ease;
}

ul.header_links li {
  line-height: 1;
  margin-bottom: 20px;
}

.arrow {
  animation: upDown 1.5s ease-in-out infinite;
  position: absolute;
  left: 0;
  right: 3%;
  margin: auto;
  bottom: 16%;
  text-align: center;
  width: fit-content;
  height: fit-content;
  z-index: 0;
}

.arrow i {
  height: 6.25rem;
  width: 4rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: rgb(217 217 217 / 34%);
  border-radius: 30px;
  color: var(--white);
  font-size: 1.285rem;
  border: 2px solid var(--white);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* neeche */
  }

  100% {
    transform: translateY(0);
    /* wapas upar */
  }
}

.main-slider .top-bar {
  padding-top: 1.3rem;

}

.top-bar {
  display: flex;
}

.top-bar .call-us-btn .call-icon {
  background: var(--primary);
  animation: call-about 2s infinite;
}

@keyframes call-about {
  0% {
    box-shadow: 0 0 0 0px rgb(48 201 245 / 54%);
  }

  100% {
    box-shadow: 0 0 0 9px rgb(47 199 244 / 74%);
  }
}

.call-us-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #313131;
  font-size: 16px;
  padding-left: 2.9rem;
}

@keyframes call-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(1 43 101);
  }

  100% {
    box-shadow: 0 0 0 9px rgb(1 43 101 / 19%);
  }
}

.call-icon {
  background: #012b65;
  color: var(--black);
  border-radius: 50%;
  font-size: 18px;
  margin-right: 17px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  animation: call-animation 2s infinite;

}

.call-icon figure img {
  width: 25px;
  height: auto;
}

.call-text {
  display: flex;
  flex-direction: column;
  color: var(--black);

  /* padding-left: 0.9rem; */
  line-height: 1.3;
}

.call-text span:first-child {
  font-size: 20px;
  color: var(--black);
}

.call-text span:last-child {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
}

.main-slider .themeBtn {
  background: var(--secondary);
  /* text-transform: capitalize; */
  padding: 1.1rem 3rem;
}

/* !MAIN HERO SLIDER CSS */
.section-1 {
  padding: 2.5rem 0;
}

.section-1 .satisfaction-slider .content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 4rem 2rem;
}

/* .satisfaction-slider{
  padding: 0 9.2rem;
} */
.satisfaction-slider .swiper-slide-active {
  border: 1px solid #9898983d;
  border-radius: 50px;
}


.section-1 .satisfaction-slider .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-2 .content {
  width: 90%;
}

.section-2 .content span {
  font-size: 1.6rem;
  font-family: "acumin-font", sans-serif;
  font-weight: 600;
  color: var(--secondary);
}

.section-2 .content h2 {
  font-size: 3.7rem;
  /* color: var(--black); */
  font-weight: 600;
}

.section-2 .content p {
  width: 73%;
}

.section-2 .top-bar {
  padding-top: 1.2rem;
}

.section-2 .top-bar .themeBtn {
  display: block;
  height: fit-content;
  margin-left: 1rem;
  background: var(--secondary);
  padding: 1rem 3rem;
}

.images-content {
  position: relative;
}

.images-content {
  position: relative;
}

.images-content .brillint-img,
.images-content .brillint-text {
  position: absolute;
  opacity: 0;
}

.images-content .brillint-img:nth-child(1) {
  left: 15%;
  top: -91px;
}

.images-content .brillint-img:nth-child(2) {
  top: 368px;
  left: -45%;
}

.images-content .brillint-img:nth-child(3) {
  top: 251px;
  left: -12%;
}

.images-content .img-4 {
  right: 7%;
  top: 213px;
}

.images-content .brillint-text {
  top: 84px;
  left: 60%;
  width: 36%;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #3c3c3c;
  font-weight: 300;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.images-content.animate .img-1 {
  animation: slideDown 0.8s ease forwards;
}

.images-content.animate .img-2 {
  animation: slideLeft 0.8s ease forwards;
  animation-delay: 0.4s;
}

.images-content.animate .img-3 {
  animation: popIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

.images-content.animate .img-4 {
  animation: popIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

.images-content.animate .brillint-text {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New Imag Shine Css End  */


/* Services Sec Css Start */
.services-sec {
  position: relative;
  padding-top: 2.5rem;
}

.services-sec:after {
  content: "";
  position: absolute;
  background: url(../images/before-ser.png) no-repeat;
  width: 100%;
  height: 127vh;
  z-index: -1;
  right: -3%;
  top: -41%;
}


.heading-sec {
  display: flex;
  justify-content: space-between;
  padding-left: 11rem;
  padding-bottom: 3rem;
}

.heading-sec h2 {
  font-size: 6.3rem;
  font-weight: 600;
}



.services-sec .container-fluid {
  padding-left: 7rem !important;
}

.services-content h3 {
  font-size: 2.3rem;
  color: var(--white);
  padding-top: 1rem;
}

.services-content p {
  font-size: 0.925rem;
  line-height: 1.5;
  /* width: 80%; */
  color: var(--white);
}

.services-content a {
  transition: 0.3s linear;
  padding-top: 0.9rem;
  display: block;
}

.services-content a:hover img {
  filter: blur(1px);
}

.services-img {
  position: relative;
}

.services-img::before {
  position: absolute;
  content: "";
  height: 250px;
  width: 220px;
  background-color: var(--primary);
  top: -0.875rem;
  left: -20px;
  border-radius: 20px 0 0 0;
  z-index: -1;
  opacity: 0;
  transition: 0.6s ease;
}

.servicesslider .services-wrapp {
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.9rem 2rem;
  text-align: center;
  border-radius: 17%;
}

.servicesslider .swiper-slide {
  padding: 1rem 0 0 2rem;
}

.servicesslider .swiper-slide.swiper-slide-active .services-img::before {
  left: -12px;
  top: -12px;
  opacity: 1;
}

.services-sec .swiper-button-next figure {
  place-items: center;
  display: grid;
  font-size: 2.6rem;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.services-sec .swiper-button-next:hover {
  background: #170c840d;
  color: white;
}

.services-sec .swiper-button-next:after,
.services-sec .swiper-button-prev:after {
  display: none;
}

.services-sec .swiper-button-next {
  right: 10%;
  height: 7.5rem;
  border: 1px solid var(--secondary);
  /* background: rgb(235 237 239 / 72%); */
  width: 7.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  top: -84%;
  bottom: 0;
  margin: auto;
}

.services-sec .swiper-button-next figure img {
  width: 60px;
}

.servicesslider .swiper-slide:nth-child(even) {
  margin-top: 100px
}


.section-3 {
  position: relative;
  margin-top: 4rem;
}

.section-3:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
  background: #eef0f3;
  clip-path: polygon(0 0, 86% 0, 98% 100%, 0% 100%);
}

.section-3 .content {
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;


  opacity: 0;
  transform: translateX(-120px);
}

.section-3 .content h2 {
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 1.1;
}

.section-3 .web-post {
  margin-right: 4rem;

  opacity: 0;
  transform: translateX(120px);
}

.section-3 .content .themeBtn {
  display: block;
  width: fit-content;
  background: var(--secondary);
  padding: 1rem 3rem;
  margin-top: 1rem;
}

.section-3 .swiper-slide-active .content {
  animation: contentLeft 0.9s ease forwards;
  animation-delay: 0.3s;
}

.section-3 .swiper-slide-active .web-post {
  animation: imageRight 1s ease forwards;
  animation-delay: 0.6s;
}

/* =========================================
   LEFT CONTENT
========================================= */

@keyframes contentLeft {

  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }

}


/* =========================================
   RIGHT IMAGE
========================================= */

@keyframes imageRight {

  0% {
    opacity: 0;
    transform: translateX(120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }

}

.section-3 .content,
.section-3 .web-post {
  will-change: transform, opacity;
}



/* =========================================
   PAGINATION POSITION
========================================= */

.section-3 .swiper-pagination {
  position: absolute;
  top: 50% !important;
  /* right: 60px !important; */
  left: auto !important;
  transform: translateY(-50%);
  width: 30px !important;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  left: 3% !important;
}


/* =========================================
   VERTICAL LINE
========================================= */

.section-3 .swiper-pagination::before {
  content: "";

  position: absolute;

  width: 2px;
  height: 100%;

  background: #d9d9d9;

  left: 50%;
  top: 0;

  transform: translateX(-50%);

  z-index: -1;
}


/* =========================================
   BULLETS
========================================= */

.section-3 .swiper-pagination-bullet {
  width: 18px;
  height: 18px;

  background: #d9d9d9;

  opacity: 1;

  border-radius: 100%;

  margin: 0 !important;

  transition: all 0.4s ease;

  position: relative;

  cursor: pointer;
}


/* =========================================
   ACTIVE BULLET
========================================= */

.section-3 .swiper-pagination-bullet-active {
  background: #2418b5;

  transform: scale(1.15);

  box-shadow: 0 0 0 8px rgba(36, 24, 181, 0.12);
}

.section-4 .porfolio-after {
  position: absolute;
  right: 0;
  top: 39px;
}

.section-4 h2 {
  font-size: 6.3rem;
  text-align: center;
  font-weight: 600;
}

.section-15 ul,
.section-5 ul,
.section-4 ul {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap-reverse;
  padding-bottom: 4rem;
}

.section-15 ul li a,
.section-5 ul li a,
.section-4 ul li a {
  color: var(--black);
  font-size: 1.3rem;
  transition: 0.3s ease-out;
}

.section-4 ul li a:hover {
  color: var(--secondary);
}

.section-4 .content-img figure {
  margin: 1.8rem 0;
}



.section-4 .portfolio-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0) rotate(15deg);
}

.section-4.animate .portfolio-box:nth-child(1) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.1s;
}

.section-4.animate .portfolio-box:nth-child(2) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.2s;
}

.section-4.animate .portfolio-box:nth-child(3) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.3s;
}

.section-4.animate .portfolio-box:nth-child(4) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.4s;
}

.section-4.animate .portfolio-box:nth-child(5) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.5s;
}

.section-4.animate .portfolio-box:nth-child(6) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.6s;
}

.section-4.animate .portfolio-box:nth-child(7) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.7s;
}

.section-4.animate .portfolio-box:nth-child(8) {
  animation: jhatkaPop 0.7s ease forwards;
  animation-delay: 0.8s;
}

@keyframes jhatkaPop {

  0% {
    opacity: 0;
    transform: scale(0) rotate(15deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(-6deg);
  }

  70% {
    transform: scale(0.95) rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }

}

.section-4 .portfolio-box img {
  width: 100%;
  transition: 0.5s ease;
}




.section-4 .portfolio-box .overlay {
  position: absolute;

  inset: 0;

  /* background: rgba(0, 0, 0, 0.65); */
  background: linear-gradient(90deg, rgba(23, 12, 132, 0.61) 0%, rgba(33, 199, 247, 0.39) 53%);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.5s ease;
}




.section-4 .portfolio-box .overlay span {
  width: 70px;
  height: 70px;

  border-radius: 100%;
  /* background: linear-gradient(90deg,rgba(23, 12, 132, 0.61) 0%, rgba(33, 199, 247, 0.39) 53%); */
  /* background: #2418b5; */
  background: rgba(0, 0, 0, 0.65);
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 50px;
  font-weight: 300;

  transform: scale(0);

  transition: 0.4s ease;
}



.section-4 .portfolio-box:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.section-4 .portfolio-box:hover .overlay span {
  transform: scale(1);
}

.section-4 .portfolio-box:hover img {
  transform: scale(1.08);
}

.section-4 .top-bar {
  justify-content: center;
  padding-top: 2.3rem;
}

.section-4 .top-bar .themeBtn {
  padding: 1rem 3rem;
  background: var(--secondary);

}



.ul-tab {
  display: flex;
  gap: 20px;
  justify-content: center;

  padding: 0;
  margin: 0 0 50px;

  list-style: none;
}

.ul-tab li a {
  padding: 14px 30px;

  border-radius: 50px;

  background: #f1f1f1;

  color: #000;

  text-decoration: none;

  transition: 0.4s ease;

  display: inline-block;
}

.ul-tab li a:hover {
  background: var(--secondary);
  color: #fff !important;
}

/* ACTIVE TAB */

.ul-tab li a.active {
  background: var(--secondary);
  color: #fff;
}


.youtub-link {
  position: relative;
}

.youtub-link .control-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;


}

.youtub-link .control-btn a {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: red;
  display: grid;
  place-items: center;
  animation: pulse-animation 2s infinite;
  backdrop-filter: blur(6px);
  overflow: hidden;
  background-position: center;

}

.youtub-link .control-btn a i {
  font-size: 2rem;
  color: white;
}



@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(238, 203, 189, 0.9);
  }

  100% {
    box-shadow: 0 0 0 20px rgb(230, 42, 42, 0.1);
  }
}


.section-15 .ser-pkg,
.section-5 .ser-pkg,
.content-img {
  display: none;
}

.section-15 .ser-pkg.active,
.section-5 .ser-pkg.active,
.content-img.active {
  display: block;
}


.section-5 {
  position: relative;
}

.section-5:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70vh;
  background: url(../images/our-pkg-bg.png) no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
}

.section-5 .heading-sec {
  padding: 0;
  align-items: center;
}

.section-5 .heading-sec h2 {
  color: var(--white);
}

.section-5 .top-bar {
  flex-direction: column;
}

.section-5 .top-bar .themeBtn {
  padding: 1rem 3rem;
  background: var(--primary);
}

.section-5 ul {
  justify-content: start;
}

.section-5 .ul-pkg li a {
  color: var(--white);
  transition: 0.4s ease-in;
}

.ul-pkg li a.active {
  color: var(--primary);
}

.section-5 .ul-pkg li a:hover {
  color: var(--primary);
}

.section-15 .pkg-content,
.section-5 .pkg-content {
  background: linear-gradient(0deg, rgba(33, 199, 247, 1) 22%, rgba(30, 8, 196, 1) 95%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 2.2rem;
  text-align: center;
  border-radius: 30px;
  margin: 0;
  height: 100%;
  border: 4px solid white;
}

/* Equal vertical spacing when cards wrap to a new row */
.section-15 .ser-pkg .row,
.section-5 .ser-pkg .row {
  row-gap: 2.5rem;
}

.section-15 .pkg-content p,
.section-5 .pkg-content p {
  color: #ffffffe6;
  font-size: 0.95rem;
  line-height: 1.6;
  width: 100%;
  padding: 0 0 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #ffffff33;
  /* Keep description to two lines so every card stays the same height */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.04rem;
}

.section-15 .pkg-content p::-webkit-scrollbar,
.section-5 .pkg-content p::-webkit-scrollbar {
  width: 6px;
}


/* TRACK */
.section-15 .pkg-content p::-webkit-scrollbar-track,
.section-5 .pkg-content p::-webkit-scrollbar-track {
  background: #2d2d2d;
  border-radius: 50px;
}


/* THUMB */
.section-15 .pkg-content p::-webkit-scrollbar-thumb,
.section-5 .pkg-content p::-webkit-scrollbar-thumb {
  background: #2418b5;
  border-radius: 50px;
}


/* HOVER */
.section-15 .pkg-content p::-webkit-scrollbar-thumb:hover,
.section-5 .pkg-content p::-webkit-scrollbar-thumb:hover {
  background: #2098ea;
}

.section-15 .pkg-content h3,
.section-5 .pkg-content h3 {
  font-size: 2rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  color: white;
  background: hsl(0deg 0% 100% / 14%);
  margin-bottom: 1.2rem;
  width: 100%;
  white-space: nowrap;
}

/* Price block */
.section-15 .pkg-price,
.section-5 .pkg-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  margin-bottom: 1.2rem;
}

.section-15 .pkg-price .current-price,
.section-5 .pkg-price .current-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.section-15 .pkg-price .old-price,
.section-5 .pkg-price .old-price {
  font-size: 1.4rem;
  color: #ffffffb3;
  text-decoration: line-through;
}

.section-15 .pkg-price .discount-badge,
.section-5 .pkg-price .discount-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e08c4;
  background: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  align-self: center;
}

/* Features list */
.section-15 .pkg-features,
.section-5 .pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  width: 100%;
  text-align: left;
  /* Override the broad ".section-5 ul" rule (gap: 4rem, flex-wrap) so
     feature points stack vertically with tight, even spacing.
     nowrap prevents overflowing features from spilling into a 2nd column */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.6rem;
  /* Fixed height so cards with 10 or 19 features stay the same size */
  height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: #2418b5 #dcdcdc2b;
}

.section-15 .pkg-features::-webkit-scrollbar,
.section-5 .pkg-features::-webkit-scrollbar {
  width: 6px;
}

.section-15 .pkg-features::-webkit-scrollbar-track,
.section-5 .pkg-features::-webkit-scrollbar-track {
  background: #ffffff1a;
  border-radius: 50px;
}

.section-15 .pkg-features::-webkit-scrollbar-thumb,
.section-5 .pkg-features::-webkit-scrollbar-thumb {
  background: #ffffff80;
  border-radius: 50px;
}

.section-15 .pkg-features li,
.section-5 .pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.section-15 .pkg-features li i,
.section-5 .pkg-features li i {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.section-15 .pkg-content h4,
.section-5 .pkg-content h4 {
  font-size: 3.4rem;
  font-weight: 700;
  color: red;

}

.section-15 .pkg-content .themeBtn,
.section-5 .pkg-content .themeBtn {
  background: var(--secondary);
  padding: 1rem 3rem;
  margin-top: auto;
}

.section-6 {
  padding: 0;
}

.section-6 .direction-banner {
  background: var(--secondary);
  padding: 5rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-6 .direction-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(../images/left-direction.png) no-repeat;
  left: -13%;
  top: -72%;
  z-index: 0;

  opacity: 0;
  transform: translateY(60px) rotate(0deg);
  transition: all 1.2s ease;
}

.section-6 .direction-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 101vh;
  background: url(../images/right-direction.png) no-repeat;
  right: -61%;
  top: -29%;
  z-index: 0;


  opacity: 0;
  transform: translateY(60px) rotate(0deg);
  transition: all 1.2s ease;
}

.section-6.animate .direction-banner:before,
.section-6.animate .direction-banner:after {
  opacity: 1;
  transform: translateY(0px) rotate(0deg);
}

.section-6.animate .direction-banner:before {
  animation: floatY 6s ease-in-out infinite;
}

.section-6.animate .direction-banner:after {
  animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

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

.section-6 .direction-banner h2 {
  font-size: 4.4rem;
  text-align: center;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.section-14 .btn-style,
.section-6 .btn-style {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  padding-top: 1.7rem;
  position: relative;
  z-index: 2;
}

.section-14 .chat-btn,
.section-6 .chat-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-6 .chat-btn p:nth-child(1) {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.section-6 .chat-btn p:nth-child(2) {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-6 .btn-style .themeBtn {
  display: block;
  height: fit-content;
  padding: 1.2rem 3.2rem;
  background: var(--primary);
  font-weight: 300;
}

/* testimonial-section */
.testimonial-section {
  background: url(../images/transparent-dot.png) no-repeat;
  background-position: center;
  background-position-y: 46px;
  background-size: contain;
  background-position-x: 74%;
}

.testimonial-section h2 {
  font-size: 4.7rem;
  text-align: center;
  line-height: 0.4;
  color: var(--black);
  font-weight: 600;
}

.testimonial-section p {
  font-size: 1rem;
  text-align: center;
  color: var(--black);
  padding: 1rem 4.5rem;
}

.testimonial-slide {
  padding: 2.3rem 0;
}

.testimonial-slide .swiper-slide h4 {
  padding: 1rem;
  font-size: 1.5rem;
  color: var(--black);
}

.testimonial-slide .swiper-slide span i {
  color: #ffc82f;
}

.testimonial-slide .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  user-select: none;
  padding: 0;
  top: 94% !important;
}


.testimonial-slide .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  opacity: 0.9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-slide .swiper-pagination-bullet-active {
  width: 50px;
  height: 6px;
  background: var(--primary);
  opacity: 1;
  border-radius: 3px;
}

.testimonial-section.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -3px) !important;
  left: 0;
}



.display-images-left {
  position: relative;
}


.display-images-left figure {
  position: absolute;
}

.display-images-left figure:nth-of-type(1) {
  top: 91px;
}

.display-images-left figure:nth-of-type(2) {
  top: 233px;
  right: 0;
}

.display-images-left figure:nth-of-type(3) {
  top: 420px;
}

.display-images-left figure:nth-of-type(4) {
  top: 408px;
  right: 0;
}


.display-images-right {
  position: relative;
}

.display-images-right figure {
  position: absolute;
}

.display-images-right figure:nth-of-type(1) {
  top: 129px;
  right: 101px;
}

.display-images-right figure:nth-of-type(2) {
  top: 397px;
  right: 42px;
}

.display-images-right figure:nth-of-type(3) {
  top: 257px;

}

.display-images-right figure:nth-of-type(4) {
  top: 273px;
  right: 0px;
}

.talk-heading {
  font-size: 14.9rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  color: #2098ea;
}

.talk-heading .lets {
  background: linear-gradient(90deg, #2418b5, #2098ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* inner-pages */
.inner-banner {

  background-size: cover;
  padding: 17rem 0;
}

.inner-banner h1 {
  font-size: 5rem;
  letter-spacing: 4px;
  color: var(--white);
  font-weight: 700;
}

.about-banner {
  background: url(../images/about-banner.png) no-repeat;
}

.section-7 .img-ab {
  position: relative;
}

.section-7 .img-ab .before-ab {
  position: absolute;
  left: -42px;
  top: -7px;
}

.section-13 .content,
.section-11 .content,
.section-7 .content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-13 .content h2,
.section-11 .content h2,
.section-7 .content h2 {
  font-size: 4.6rem;
  font-weight: 700;
}

.section-9 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: url(../images/brand-img.png) no-repeat var(--primary);
  padding: 5rem;
  background-size: cover;
  border-radius: 20px;
  height: 400px;
  justify-content: center;
}

.section-9 .sld-2 {
  background: url(../images/brand-2.png) no-repeat var(--secondary);
}

.section-9 .content h3 {
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--white);
}

.section-9 .content p {
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 0 1.7rem;
  color: white;
  font-weight: 400;
}

.section-10 {
  padding-top: 3rem;
}

.section-10 h2 {
  font-size: 4.5rem;
  text-align: center;
  font-weight: 700;
  padding-bottom: 1.5rem;
}

.section-10 .logo-slide {
  margin-bottom: 2rem;
}

.section-10 .logo-slide figure {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  padding: 3rem;
  background: white;
  box-shadow: 1px 2px 3.1px -1px #96929200;
  border-radius: 20px;
}

.services-banner {
  background: url(../images/services-banner.png) no-repeat;

}

.section-11 .content h3 {
  font-weight: 600;
  padding-bottom: 1rem;
}

.section-11 figure {
  margin: 1.2rem;
}

.section-12 h2 {
  text-align: center;
  font-size: 6.3rem;
  font-weight: 700;
}

.section-12 p {
  text-align: center;
  font-weight: 500;
  font-size: 1.9rem;
  padding-bottom: 4rem;
}

.section-12 .headin-para {

  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.5rem;
}

.section-12 .headin-para p {
  text-align: center;
  font-weight: unset;
  font-size: 1.2rem;
  padding-bottom: 0;
  line-height: 1.6;
  width: 69%;

}

.section-7 .themeBtn,
.section-13 .themeBtn,
.section-12 .headin-para .themeBtn {
  padding: 1rem 3rem;
  margin-top: 1rem;
  background: var(--secondary);
  display: block;
  width: fit-content;
}

.section-12.webSlider .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-12 .webSlider .swiper-slide {
  width: 450px;
}

.section-12 .webSlider .swiper-slide.active {
  background-position: center;
  background-size: cover;
  width: 500px;

}

.section-12 .webSlider .swiper-slide img {
  display: block;
  object-fit: cover;
}

.section-13 .aniamtion-img {
  position: relative;
  left: -20%;
}

.section-13 .aniamtion-img .animate-1 {
  position: absolute;
  left: 31%;


  z-index: -1;

  opacity: 0;
  transform: translateX(250px) rotate(-10deg) scale(0.8);


}

.section-13.animate .animate-2 {
  animation:
    womanEntry 1s ease forwards,
    floatWoman 4s ease-in-out infinite 1s;
}

.section-13.animate .animate-1 {
  animation:
    shapeEntry 1.5s ease forwards,
    shapeFloat 5s ease-in-out infinite 1.5s;
}

.section-13 .content p {
  width: 77%;
}

.section-13 .aniamtion-img .animate-2 {
  position: relative;
  z-index: 2;

}

@keyframes floatWoman {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-25px);
  }

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

}


/* RIGHT SIDE ENTRY */
@keyframes shapeEntry {

  0% {
    opacity: 0;
    transform: translateX(250px) rotate(-15deg) scale(0.7);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg) scale(1);
  }

}


/* CONTINUOUS FLOAT */
@keyframes shapeFloat {

  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }

}

.bg-sec {
  background: var(--secondary);

}

.bg-sec h2,
.bg-sec p {
  color: white !important;
}

.bg-sec .content {
  padding-left: 4rem;
}

.porfolio-banner {
  background: url(../images/porfolio-banner.png) no-repeat;

}

.section-14 {
  background: url(../images/move-banner.png) no-repeat var(--secondary);
  background-size: cover;
  padding: 8rem;
  background-position: center;
}

.section-14 .row {
  align-items: center;
}

.section-14 .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.section-14 .content h2 {
  font-size: 3.6rem;
  color: var(--white);
  font-weight: 700;
}

.section-14 .content h2 span {
  color: var(--primary);
}

.section-14 .btn-style {
  display: flex;
  justify-content: space-evenly;
}

.section-14 .themeBtn {
  padding: 0.9rem 1.7rem;
}

.section-14 .themeBtn:nth-child(1) {
  background: var(--secondary);
  border: 2px solid #ddd6d685;
}

.section-14 .chat-btn {
  color: white;
  font-size: 1.4rem;
}

.section-14 .call-icon {
  /* background: #012b65; */
  background: linear-gradient(90deg, rgba(31, 63, 211, 1) 0%, rgba(33, 199, 247, 1) 51%) !important;
  animation: call-change 2s infinite;
}

.section-14 .call-text span {
  color: white !important;
}

@keyframes call-change {
  0% {
    box-shadow: 0 0 0 0px rgb(220 220 220 / 54%);
  }

  100% {
    box-shadow: 0 0 0 9px rgb(155 159 164 / 19%);
  }
}

.price-banner {
  background: url(../images/price-banner.png) no-repeat;
}

.price-banner h1 {
  visibility: visible;
}

.section-15 h2 {
  font-size: 4.7rem;
  font-weight: 700;
  text-align: center;
}

.section-15 .pkg-content {
  box-shadow: -1px 0px 8px 3px #ede0e0c2;
  margin-bottom: 2.6rem;
}

.contact-banner {
  background: url(../images/contact-banner.png) no-repeat;
}

.contact-banner h1 {
  color: var(--black);
}

/* * contact-page */
.contact-sec-1 {
  position: absolute;
  top: -79%;
  margin: auto;
  left: 0;
  right: 0;
}

.address-tab {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.address-tab a {
  color: var(--black)
}

.address-tab p {
  font-size: 22px;
  padding: 10px 0;
  color: var(--black);
  text-transform: capitalize;
}

.address-tab .tel-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #fff;
}

.address-tab:nth-of-type(1) .tel-icon {
  background: var(--primary);
}

.address-tab:nth-of-type(2) .tel-icon {
  background: #2081e4;
}

.address-tab:nth-of-type(3) .tel-icon {
  background: var(--secondary);
}

.address-tab .loc-tab {
  background: #000;
}

.tel-icon i {
  font-size: 3rem;
  color: #fff;
}

/* contact-form */

.contact-sec {
  padding: 0rem 0 3rem;
  background: url(../images/contact-f-bottom.png) no-repeat #f7f9f8;
  background-position: center;
  margin-bottom: -2rem;
  z-index: 0;
  position: relative;
}



.contact-sec .sec-heading {
  padding: 3rem 0 0;
}


.contact-sec:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  z-index: -3;
  background: url(../images/dot-contact.png) no-repeat;
  left: 9%;
  top: 134px;
}

section.contact-sec h2 {
  font-size: 4.2rem;

  text-align: center;
  font-weight: 700;
  padding: 1rem 3.2rem 2.4rem;
}

section.contact-sec h2 span {
  color: var(--primary);
}

form.contact-form .form-control {
  outline: unset;
  box-shadow: unset;
  background-color: #ffffff;
  border: unset;
  border-radius: 10px;
  color: #100f0f !important;
  font-weight: 500;
  border: 1px solid #aba8a866;
  padding: 1.5rem;
}

form.contact-form .form-control::placeholder {
  color: #242424dc;
}

form.contact-form textarea.form-control {
  height: 190px;
}

form.contact-form button {
  border: unset;
  text-align: center;
  /*width: 240px;*/
  margin: auto;
  display: block;
  margin-top: 1.75rem;
  padding: 0.8rem 3.1rem;
}

/* ------------ */
/* Services Sec Css End  */
footer {
  background: url(../images/footer-bg.png) no-repeat;
  /* background: #583939; */
  padding: 5rem 0 0rem;
  background-size: cover;

}

.footer-row {
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--white);
  padding-bottom: 1.3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.footer-logo:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 72%;
  background: var(--white);
  left: 0;
  /* top: 0; */
  bottom: 0;
}

.footer-logo:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 72%;
  background: var(--white);
  right: 0;
  /* top: 0; */
  bottom: 0;
}

footer .social-icon {
  display: flex;
  padding-top: 1.3rem;
  gap: 1.9rem;
  justify-content: flex-start;
  margin-bottom: 0.7rem;
}

footer .social-icon li a {
  color: var(--white);
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: 0.2s ease-in;
}

footer .social-icon li a:hover {
  color: #fff;
  background: linear-gradient(90deg, rgba(31, 59, 209, 1) 0%, rgba(33, 199, 247, 1) 49%);
  border-color: transparent;
}

footer .contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .contact-details h4 {
  font-size: 2rem;
  padding-bottom: 1.4rem;
  color: var(--white);
}

footer .contact-details li {
  font-size: 1.1rem;
  display: flex;
}

footer .contact-details li,
footer .contact-details a,
footer .contact-details i {
  display: flex;
  align-items: center;
  padding-right: 0.7rem;
  color: var(--white);
  line-height: 2;
  line-height: 2;
  gap: 0.7rem;
}

footer .contact-details li a:hover,
footer .contact-details li a:hover i {
  color: var(--primary);
}

footer .contact-frm,
footer .contact-details {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.footer-logo p {
  font-size: 1.5rem;
  line-height: 1;
  color: white;
  font-weight: 600;
  padding-top: 1.9rem;
}

.footer-menu ul {
  display: flex;
  gap: 5rem;
  font-size: 1.2rem;
  margin-top: 2rem;
  border-top: 2px solid #ffffff38;
  padding: 1.3rem 0 0rem;
  justify-content: center;
}

.footer-menu ul li a {
  color: var(--white);
}

.footer-menu ul li a:hover {
  color: var(--primary);
}

footer .contact-frm {
  justify-content: center;
  margin-top: 3rem;
  margin-left: 3rem;
}

.contact-frm input {
  width: 80%;
  position: relative;
  padding: 0.6rem;
  border-radius: 5px;
  border: none;
}

.contact-frm input:focus {
  outline: none;
}

.contact-frm input::placeholder {
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
}

.contact-frm button {
  position: absolute;
  padding: 10px 3rem;
  border: none;
  right: 104px;
  background: linear-gradient(90deg, rgba(31, 63, 211, 1) 0%, rgba(33, 199, 247, 1) 51%);
  border-radius: 5px;
  color: white;
}

.copyright {
  padding: 1.7rem 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.copyright p {
  color: var(--white);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* Process Section Styling */
.process-sec {
  background: var(--white);
  padding: 6rem 0;
}

.process-subtitle {
  font-size: 1.3rem;
  font-family: "acumin-font", sans-serif;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1.5rem;
}

.process-sec h2 {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--black);
  max-width: 950px;
  margin: 0 auto 4.5rem;
}

.process-row {
  margin-top: 2rem;
}

.process-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.process-icon {
  color: var(--secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-icon svg {
  width: 100%;
  height: 100%;
}

.process-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  font-family: "acumin-font", sans-serif;
}

.process-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
  font-family: "Poppins", sans-serif;
}

/* Hover effects */
.process-card:hover {
  transform: translateY(-8px);
}

.process-card:hover .process-icon {
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

/* Button & Link layout */
.process-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.discussBtn {
  background-color: #1e2e3d;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1.3rem 3.2rem;
  border-radius: 0px; /* Rectangular as in screenshot */
  display: inline-block;
  letter-spacing: 1px;
  border: 2px solid #1e2e3d;
  transition: all 0.3s ease;
}

.discussBtn:hover {
  background-color: transparent;
  color: #1e2e3d;
}

.packagesLink {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

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

.packagesLink .arrow-symbol {
  transition: transform 0.3s ease;
  display: inline-block;
}

.packagesLink:hover .arrow-symbol {
  transform: translateX(6px);
}

/* AUTH MODAL */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.auth-overlay.show {
  display: flex;
}

.auth-overlay.show .auth-modal {
  animation: authEntrance 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes authEntrance {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.auth-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.auth-panel {
  display: flex;
  min-height: 540px;
}

/* Brand side */
.auth-brand {
  flex: 0 0 380px;
  background: linear-gradient(135deg, #1e08c4 0%, #21c7f7 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.auth-brand::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.auth-brand::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 1.8rem;
  color: #fff;
}

.auth-brand h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.auth-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.auth-brand-quote {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-style: italic;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
}

/* Forms side */
.auth-forms {
  flex: 1;
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.8rem;
  position: relative;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

.auth-tab {
  flex: 1;
  padding: 0.6rem 1rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.auth-tab.active {
  color: #1e08c4;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-forms-wrap {
  position: relative;
  min-height: 280px;
}

.auth-form {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(32px);
}

.auth-form.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}

.auth-form.exit-left {
  opacity: 0;
  transform: translateX(-32px);
}

.auth-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b1d1c;
  margin-bottom: 1.4rem;
  font-family: "acumin-font", sans-serif;
}

/* Input fields */
.auth-field {
  position: relative;
  margin-bottom: 0.95rem;
}

.auth-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b0b0;
  display: flex;
  pointer-events: none;
  transition: color 0.25s;
}

.auth-field:focus-within .auth-field-icon {
  color: #1e08c4;
}

.auth-field input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 1.5px solid #e8e8ec;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #fafafa;
  color: #1b1d1c;
}

.auth-field input:focus {
  border-color: #1e08c4;
  box-shadow: 0 0 0 3px rgba(30, 8, 196, 0.08);
  background: #fff;
}

.auth-field input::placeholder {
  color: #b0b0b0;
}

.auth-pw-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 6px;
  color: #b0b0b0;
  cursor: pointer;
  display: flex;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.auth-pw-toggle:hover {
  color: #666;
  background: #f0f0f0;
}

.auth-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin: 0.4rem 0 0.8rem;
  font-family: "Poppins", sans-serif;
  min-height: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.auth-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e08c4 0%, #21c7f7 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s;
  margin-top: 0.4rem;
}

.auth-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.2rem 0 1rem;
  color: #bbb;
  font-size: 0.78rem;
  font-family: "Poppins", sans-serif;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8ec;
}

.auth-divider span {
  padding: 0 0.8rem;
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e8e8ec;
  border-radius: 12px;
  background: #fff;
  color: #555;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.google-btn:hover {
  border-color: #d0d0d5;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
  .auth-brand {
    display: none;
  }
  .auth-forms {
    padding: 2rem 1.5rem;
  }
  .auth-modal {
    max-width: 420px;
  }
}

/* Auth buttons in header */
.head-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.head-btn .themeBtn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.user-info .user-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .head-btn {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
  }
  .head-btn .themeBtn {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
  .user-info {
    padding: 0.5rem 1.25rem;
    flex-wrap: wrap;
  }
}

/* Forgot password */
.auth-forgot-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.auth-forgot-back {
  margin-top: 1.2rem;
  text-align: center;
}

.auth-forgot-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #888;
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-forgot-back a:hover {
  color: #1e08c4;
}

/* Remember me + forgot row */
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #888;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.auth-remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #1e08c4;
  cursor: pointer;
  margin: 0;
}

.auth-forgot {
  font-size: 0.82rem;
  color: #1e08c4;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-weight: 500;
}

.auth-forgot:hover {
  text-decoration: underline;
}

/* Toast */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
  max-width: 380px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  color: #1b1d1c;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  border-left: 4px solid;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
}

.toast-msg {
  flex: 1;
  line-height: 1.4;
}

.toast-success {
  border-left-color: #22c55e;
}

.toast-success .toast-icon {
  color: #22c55e;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-info {
  border-left-color: #21c7f7;
}

.toast-info .toast-icon {
  color: #21c7f7;
}

@media (max-width: 480px) {
  #toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .toast {
    max-width: none;
  }
}

/* Profile dropdown */
.profile-wrap {
  position: relative;
}
.profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 50px;
  transition: background 0.2s;
  position: relative;
}
.profile-trigger:hover {
  background: rgba(255,255,255,0.12);
}
.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e08c4, #21c7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar-initial {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}
.profile-chevron {
  color: rgba(255,255,255,0.7);
  transition: transform 0.25s ease;
}
.profile-trigger.open .profile-chevron {
  transform: rotate(180deg);
}
.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 6px 20px rgba(0,0,0,0.08);
  padding: 0.6rem;
  opacity: 0;
  transform: scale(0.92) translateY(-6px);
  pointer-events: none;
  transition: none;
  z-index: 9999;
}
.profile-dropdown.show {
  animation: ddIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: auto;
}
.profile-dropdown.hide {
  animation: ddOut 0.2s ease forwards;
  pointer-events: none;
}
@keyframes ddIn {
  0% { opacity: 0; transform: scale(0.92) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ddOut {
  0% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.95) translateY(-4px); }
}
.dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.7rem;
}
.dropdown-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e08c4, #21c7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}
.dropdown-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b1d1c;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
.dropdown-email {
  font-size: 0.78rem;
  color: #999;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  word-break: break-all;
}
.dropdown-divider {
  height: 1px;
  background: #f0f0f2;
  margin: 0.3rem 0;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  color: #444;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  opacity: 0;
  transform: translateX(-8px);
}
.profile-dropdown.show .dropdown-item {
  animation: ddItemIn 0.3s ease forwards;
}
.profile-dropdown.show .dropdown-item:nth-child(1) { animation-delay: 0.02s; }
.profile-dropdown.show .dropdown-item:nth-child(2) { animation-delay: 0.06s; }
.profile-dropdown.show .dropdown-item:nth-child(3) { animation-delay: 0.10s; }
@keyframes ddItemIn {
  0% { opacity: 0; transform: translateX(-8px); }
  100% { opacity: 1; transform: translateX(0); }
}
.dropdown-item:hover {
  background: #f5f5f8;
  color: #1e08c4;
}
.dropdown-logout {
  color: #e74c3c;
}
.dropdown-logout:hover {
  background: #fef2f2;
  color: #c0392b;
}

@media (max-width: 1199px) {
  .profile-dropdown {
    right: auto;
    left: 1.25rem;
  }
}.about-card{background:#fff;border:1px solid #eee;border-radius:12px;padding:28px 24px;height:100%;box-shadow:0 8px 24px rgba(0,0,0,.05);transition:transform .3s ease,box-shadow .3s ease;margin-bottom:24px}
.about-card:hover{transform:translateY(-5px);box-shadow:0 14px 34px rgba(0,0,0,.08)}
.about-card h3{font-size:20px;margin-bottom:12px}
.about-card p{margin:0;color:#555;line-height:1.6}

/* Task A8 – Fix pricing package feature-list scroll */
.section-5 .pkg-content,.section-15 .pkg-content{display:flex;flex-direction:column;max-height:560px}
.pkg-content .pkg-features{flex:1 1 auto;overflow-y:auto;overflow-x:hidden;max-height:300px;margin-bottom:15px;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
.pkg-content .pkg-features::-webkit-scrollbar{width:6px}
.pkg-content .pkg-features::-webkit-scrollbar-thumb{background:rgba(255,255,255,.4);border-radius:3px}
.pkg-content .btn-order-now,.pkg-content .themeBtn{margin-top:auto}

.who-we-are-white .content span.mainHead,.who-we-are-white .content h2,.who-we-are-white .content p{color:#fff}

.eyebrow{display:inline-block;font-size:18px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#1e08c4;margin-bottom:14px;line-height:1.2}
.who-we-are-white .eyebrow{color:#21c7f7}

/* Pricing: show the FULL package (no inner scroll), equal-height cards */
.section-5 .pkg-content,.section-15 .pkg-content{max-height:none;height:100%}
.section-5 .pkg-content .pkg-features,.section-15 .pkg-content .pkg-features{max-height:none;height:auto;overflow:visible}
