@import url("pre.css");

/* ===== MAIN NAVBAR ===== */
header {
  position: relative;
  width: 100%;
}

/* Default Navbar Style */
.navbar {
  transition: all 0.4s ease-in-out;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  width: 100%;
  z-index: 1100;
}

/* Logo */
.navbar-brand img {
  max-height: 30px;
  transition: 0.4s ease;
}

/* Top Bar */
.top-bar {
  width: 100%;
  padding: 12px 0;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Top Right Icons */
.top-nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.top-nav-icons .nav-link,
.top-nav-icons a {
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-nav-icons a:hover {
  opacity: 0.8;
}

/* Navbar Links */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #191919 !important;
  padding: 10px 18px !important;
  transition: color 0.3s ease;
}

/* ===== HOVER UNDERLINE ANIMATION (DESKTOP ONLY) ===== */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 80%;
  }

  .navbar-nav .nav-link.active {
    color: var(--primary-color)!important;
  }
}
@media (max-width: 992px) {
    .navbar{
        padding: 5px 0px;
    }
}
/* ===== DROPDOWN STYLE ===== */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;
  animation: fadeIn 0.3s ease;
  
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #191919;
  font-size: 15px;
}

/* Default state - dropdown hidden */
/* Default state - dropdown hidden */
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
  }

  /* Desktop hover open */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
  }
}

/* Jab open ho */
.navbar-nav .dropdown.show .dropdown-menu {
    max-height: 500px;      /* aap content ke hisab se bada sakte ho */
    opacity: 1;
    padding: 10px 0;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CUSTOM ARROW ===== */
.dropdown-toggle::after {
  display: none !important;
}

.nav-link .arrow {
  display: inline-block;
  margin-left: 6px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #191919;
  border-bottom: 2px solid #191919;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
}

/* ===== CUSTOM HAMBURGER ===== */
.navbar-toggler {
  border: none;
  padding: 0;
  position: relative;
  z-index: 1200 !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #191919;
  transition: all 0.3s ease;
}

.navbar-toggler.open .line1 {
  transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler.open .line2 {
  opacity: 0;
}

.navbar-toggler.open .line3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== OVERLAY EFFECT ===== */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE MENU (RIGHT TO LEFT SLIDE) ===== */
@media (max-width: 991px) {

  .top-bar {
    display: none !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fcf3f0;
    padding-top: 70px;
    transition: all 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: block !important;
    z-index: 1050;
    overflow-y: auto;
  }

  .navbar-collapse.open {
    right: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar-nav {
    flex-direction: column;
  }

.navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #bfb4b4;
}


  .navbar-nav .nav-link {
    padding: 12px 20px !important;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    display: none;
    background: #fcf3f0;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .nav-link .arrow {
    float: right;
    margin-top: 6px;
  }

  .dropdown.show .arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .mobile-social {
    display: block;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .social-icons a:hover {
    background: var(--primary-color);
  }

  .navbar-toggler.open {
    position: fixed;
    right: 20px;
    top: 20px;
  }
}

/* Hide Mobile Social on Desktop */
@media (min-width: 992px) {
  .mobile-social {
    display: none !important;
  }
}

/* ===== SCROLL EFFECT ===== */
.top-bar.scrolled {
  display: none !important;
}

.navbar.scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f1e9d3 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar.scrolled .navbar-brand img {
  transform: scale(0.9);
}

body.scrolled {
  padding-top: 70px;
}

/* Jab mobile navbar open ho */
body.nav-open {
  overflow: hidden;
}

/* Background dim effect */
body.nav-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}



/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
    width: 100%;
    min-height: 90vh;
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    margin: auto;
}

.hero .tag {
    width: fit-content;
    padding: 8px 20px;
    margin: 0 auto 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
}

.hero h1 {
    margin-bottom: 20px;
}

.typing-container {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.net{
    margin: auto!important;
}
/************************************/
/***       06. About Us css       ***/
/************************************/

.about-us {
    position: relative;
    padding: 100px 0 80px;
}

@keyframes circlerotate {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(-100%) rotate(360deg);
    }
}

.about-us-box {
    position: relative;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.about-us-image,
.about-us-content {
    width: calc(50% - 30px);
}

.about-us-img figure {
    display: block;
    border-radius: 30px;
}

.about-us-img img {
    width: 100%;
    aspect-ratio: 1 / 1.029;
    object-fit: cover;
    border-radius: 30px;
}

.about-experience-box {
    max-width: 320px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 25px 30px;
}

.about-experience-counter h2 {
    font-size: 60px;
    color: var(--accent-color);
}

.about-experience-content p {
    margin-bottom: 0;
}

.about-experience-content p span {
    display: block;
    color: var(--accent-color);
}

.about-us-body {
    position: relative;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    overflow: hidden;
}

.about-us-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.about-us-body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 100%;
    width: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.about-us-body:hover::after {
    width: 100%;
    right: 100%;
}

.about-us-body p {
    font-size: 18px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.about-us-body:hover p {
    color: var(--dark-color);
}

.about-us-footer {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.about-author-info {
    display: flex;
}

.about-author-image {
    margin-right: 20px;
}

.about-author-image figure {
    display: block;
    border-radius: 50%;
}

.about-author-image img {
    max-width: 54px;
}

.about-author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.about-author-content p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.about-list-item {
    position: relative;
    width: calc(33.33% - 53.33px);
}

.about-list-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background: var(--divider-color);
    height: 100%;
    width: 1px;
}

.about-list-item:last-child:before {
    display: none;
}

.about-list-item .icon-box {
    margin-bottom: 25px;
}

.about-list-item .icon-box img {
    max-width: 40px;
}

.about-list-content h3 {
    font-size: 22px;
    text-transform: capitalize;
}

/************************************/
/***     06. About Agency css	  ***/
/************************************/

.about-agency {
    position: relative;
    padding: 80px 0px;
    background-color: var(--background-color);
}

.about-agency-content {
    position: sticky;
    top: 100px;
    padding-right: 35px;
}

.about-agency-list {
    border-left: 1px solid var(--divider-color);
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
}

.about-agency-item {
    width: 100%;
}

.about-agency-item .icon-box {
    margin-bottom: 20px;
}

.about-agency-item .icon-box img {
    max-width: 40px;
}

.agency-item-content h3 {
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.agency-item-content h3:after {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    background: url("../images/dot-green-icon.svg") no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.agency-item-content p:last-child {
    margin: 0;
}

/*about logos*/

.brand_logos {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    align-items: center;
    width: calc(200px * 12); /* 12 items (6 original + 6 duplicate) */
    animation: scroll 25s linear infinite;
}

.item {
    flex-shrink: 0;
    padding: 0 30px;
}

.item img {
    width: 160px;
    height: auto;
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

/* Smooth animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
    position: relative;
    padding: 80px 0;
}

@keyframes circlezoomrotate {
    from {
        transform: translateY(0) rotate(0deg) scale(0.7);
    }
    to {
        transform: translateY(-100%) rotate(360deg) scale(1);
    }
}

.our-service-image figure {
    display: block;
    border-radius: 30px;
}

.our-service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
    border-radius: 30px;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    position: relative;
    width: calc(50% - 15px);
    background: url(../images/service-item-bg-shape.svg) no-repeat;
    background-position: top center;
    background-size: auto;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    display: flex;
    padding: 40px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
    opacity: 100%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.service-item .icon-box {
    margin-right: 30px;
}

.service-item .icon-box img {
    max-width: 70px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.service-item-content {
    width: calc(100% - 70px);
}

.service-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.service-item-content p {
    margin-bottom: 25px;
}

.service-footer {
    text-align: center;
    margin-top: 60px;
}

.service-footer p {
    color: var(--white-color);
    margin: 0;
}

.service-footer p span {
    background-color: var(--accent-color);
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 100px;
    padding: 1px 10px;
    margin-right: 10px;
}

.service-footer a {
    font-weight: 700;
    text-decoration: underline;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.service-footer a:hover {
    color: var(--primary-color);
}

/************************************/
/***     09. Why Choose Us css    ***/
/************************************/
/* Section spacing */
.why-choose-us {
    position: relative;
    padding: 80px 0;
}

/* List items */
.why-choose-list-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.why-choose-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-list-item h3 {
    position: relative;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-choose-list-item h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background: url(../images/icon-sub-heading.svg) no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.why-choose-list-item p {
    margin-bottom: 0;
}

/* Center image wrapper */
.why-choose-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Rotating circle */
.why-choose-circle {
    position: relative;
    z-index: 1;
}

.why-choose-circle img {
    width: 100%;
    display: block;
    animation: rotateCircle 30s linear infinite;
}

/* Center girl image */
.why-choose-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    z-index: 2;
}

.why-choose-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animation */
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/************************************/
/***      10. Our Feature css     ***/
/************************************/

.our-feature {
    width: 100%;
    height: auto;
    padding: 100px 0px;
}
.our-feature-body-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    background: var(--accent-color);
    height: 100%;
    width: 2px;
}

.our-feature-body-item:last-child::before,
.our-feature-body-item:nth-of-type(2n + 2):before {
    display: none;
}

.our-feature-body-item img {
    max-width: 60px;
    margin-right: 20px;
}

.our-feature-body-item h3 {
    font-size: 22px;
}

.our-feature-body-content {
    width: calc(50% - 25px);
}

.our-feature-body-content p {
    margin-bottom: 0;
}

.our-feature-btn {
    margin-top: 40px;
}

.our-feature-images {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 30px;
}

.our-feature-img-1,
.our-feature-img-2 {
    width: calc(50% - 15px);
}

.our-feature-image figure {
    display: block;
    border-radius: 30px;
}

.our-feature-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.our-feature-img-1.our-feature-image img {
    aspect-ratio: 1 / 1.822;
}

.our-feature-img-2 .our-feature-image {
    margin-bottom: 30px;
}

.our-feature-img-2 .our-feature-image:last-child {
    margin-bottom: 0;
}

.our-feature-img-2 .our-feature-image img {
    aspect-ratio: 1 / 0.858;
}


@keyframes clientboxmove {
    50% {
        left: 40px;
    }
}

.client-box-content {
    position: relative;
    width: calc(100% - 50px);
    z-index: 1;
}

.client-box-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.client-box-content p {
    color: var(--dark-color);
    margin-bottom: 0;
}

/************************************/
/***      13. How It Work css     ***/
/************************************/

.how-it-works {
    position: relative;
    padding: 80px 0;
    background-color: var(--background-color);
}

@keyframes circlemoverotate {
    0% {
        transform: translateY(5%) rotate(0deg);
    }
    100% {
        transform: translateY(100%) rotate(360deg);
    }
}

.how-it-work-content {
    position: relative;
}

.our-agency-circle a {
    position: relative;
    display: inline-flex;
    z-index: 2;
}

.our-agency-circle a figure img {
    max-width: 200px;
    animation: agencycirclerotate 25s infinite linear;
}

@keyframes agencycirclerotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.our-agency-circle .agency-circle-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90px;
    width: 90px;
    background: var(--accent-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.our-agency-circle a:hover .agency-circle-arrow {
    background: #fffdfe;
}

.our-agency-circle .agency-circle-arrow img {
    max-width: 38px;
    transition: all 0.4s ease-in-out;
}

.our-agency-circle a:hover .agency-circle-arrow img {
    transform: rotate(45deg);
}

.how-work-list-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.how-work-list-image {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 0;
    transition: all 0.6s ease-in-out;
}

.how-work-list-item.active .how-work-list-image,
.how-work-list-item:hover .how-work-list-image {
    left: 0;
    width: 100%;
}

.how-work-list-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.how-work-list-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 100%;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.how-work-list-item:last-child {
    margin-bottom: 0;
}

.how-work-list-content,
.how-work-list-no {
    position: relative;
    z-index: 1;
}

.how-work-list-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.how-work-list-content p {
    margin-bottom: 0;
}

.how-work-list-no h2 {
    font-size: 60px;
    transition: all 0.4s ease-in-out;
}

.how-work-list-item:hover .how-work-list-no h2,
.how-work-list-item.active .how-work-list-no h2 {
    color: var(--accent-color);
}

/************************************/
/***    14. Our Testimonial css   ***/
/************************************/

.our-testimonial {
    position: relative;
    padding: 80px 0;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    position: relative;
    background: url("../images/testimonial-item-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    overflow: hidden;
}

.testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial-header {
    width: 100%;
    height: 400px;
    border-bottom: 1px solid var(--divider-color);
    padding: 35px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-image {
    margin-right: 20px;
}

.author-image figure {
    border-radius: 50%;
}

.author-image img {
    max-width: 50px;
    border-radius: 100%;
}

.author-content {
    width: calc(100% - 70px);
}

.author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-body {
    display: flex;
    align-items: center;
    padding: 35px;
}

.testimonial-counter {
    width: calc(100% - 50px);
}

.testimonial-counter h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

.testimonial-counter p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-quote {
    margin-left: 20px;
}

.testimonial-quote img {
    max-width: 30px;
}

.testimonial-slider .testimonial-pagination {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 8px;
    width: 8px;
    background: var(--accent-color);
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 20px;
    width: 20px;
}

/************************************/
/***       15. Our FAQs css       ***/
/************************************/

.our-faqs {
    padding: 80px 0;
}

.faqs-review-box {
    position: relative;
    width: 100%;
    max-width: 525px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 30px;
    overflow: hidden;
}

.faqs-review-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.review-rating-box {
    position: relative;
    width: calc(40% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.review-rating-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--divider-color);
    height: 100%;
    width: 1px;
}

.review-rating-box h2 {
    font-size: 50px;
    font-weight: 600;
}

.review-rating-box i {
    font-size: 34px;
    color: var(--accent-color);
}

.review-client-box {
    width: calc(60% - 30px);
}

.satisfy-client-images {
    margin-bottom: 10px;
}

.satisfy-client-img {
    display: inline-block;
    margin-left: -14px;
    border-radius: 50%;
    overflow: hidden;
}

.satisfy-client-img:first-child {
    margin: 0;
}

.satisfy-client-img figure {
    display: block;
}

.satisfy-client-img img {
    max-width: 40px;
}

.satisfy-client-content p {
    margin-bottom: 0;
}

.faq-accordion .accordion-item {
    position: relative;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-accordion .accordion-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 26.48%, rgba(0, 0, 0, 0) 155.74%);
    height: 100%;
    width: 100%;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    background: transparent;
    color: var(--primary-color);
    padding: 17px 50px 17px 20px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    background: var(--background-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f068";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    width: 24px;
    height: 24px;
    color: var(--dark-color);
    background-color: #fffdfe;
    border-radius: 50%;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\2b";
    background-color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
    padding: 0 50px 17px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--primary-color);
    margin: 0;
}

/************************************/
/***       16. Our Blog css       ***/
/************************************/

.our-blog {
    position: relative;
    padding: 80px 0 50px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image a {
    display: block;
    cursor: none;
}

.post-featured-image figure {
    border-radius: 30px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.744;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 30px;
}

.post-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.post-item-content h3 a {
    color: inherit;
}

/************************************/
/***        17. Footer css        ***/
/************************************/

.footer-work-together {
    position: relative;
    padding: 80px 0;
}

.work-together-content {
    position: relative;
    background: url("../images/work-together-bg.png") no-repeat;
    background-position: center center;
    background-size: auto;
    text-align: center;
}

.work-together-content::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/work-together-bg-gradient.png) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-work-together {
    margin-bottom: 0;
}

.footer-work-together h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-work-together h2 {
    font-size: 180px;
    font-weight: 800;
    text-transform: uppercase;
}

.work-together-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-work-together .work-together-btn a {
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover {
    background-color: var(--secondary-color);
}

.footer-work-together .work-together-btn a img {
    width: 100%;
    max-width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

.footer-work-together .work-together-btn a span {
    width: 100%;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover span {
    color: var(--primary-color);
}

.footer-main {
    border-top: 1px solid var(--divider-color);
    padding: 60px 0px 20px 0px;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
}

.footer-main-contact a {
    color: #000000;
}
.footer-main-contact u {
    margin-left: 6px;
}
.footer-main-contact p {
    margin-bottom: 8px;
}
.footer-main-social-link {
    padding: 20px 0px;
}
.footer-main-social-link img {
    width: 15%;
    padding: 0px 10px;
}
.bottom_bar p {
    margin-bottom: 0px;
    padding: 10px 0px;
    text-align: center;
    border-top: 1px solid #4b4b4b;
}
.newsletter-form .form-group {
    display: flex;
}

.newsletter-form .form-group .form-control {
    width: calc(100% - 60px);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 15px;
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn {
    background-color: var(--accent-color);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px 0 0;
    transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
    background-color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn i {
    font-size: 30px;
}

.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    text-transform: capitalize;
    line-height: 1.7em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
    color: var(--accent-color);
}

.footer-cta-box {
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 30px;
    margin-top: 60px;
    padding: 50px 60px;
    overflow: hidden;
}

.footer-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 180px;
}

.footer-contact-box {
    width: calc(100% - 200px);
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px 0px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--divider-color);
    padding-right: 40px;
    margin-right: 40px;
}

.footer-contact-item:last-child {
    border: none;
    padding-right: 0;
    margin-right: 0;
}

.footer-contact-item .icon-box {
    margin-right: 15px;
}

.footer-contact-item .icon-box i {
    font-size: 24px;
    color: var(--accent-color);
}

.footer-contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-contact-item h3 a {
    color: inherit;
}

.footer-copyright {
    padding: 60px 0;
}

.footer-copyright-text {
    text-align: left;
}

.footer-copyright-text p {
    margin: 0;
}

.footer-social-links {
    text-align: end;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    color: var(--primary-color);
    line-height: 1.2em;
    text-transform: capitalize;
    padding: 11px 15px;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 8px;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover i {
    color: var(--accent-color);
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/
.about_us_sec {
    width: 100%;
    height: auto;
    padding: 100px 0px;
}

.page-header {
    position: relative;
    background: linear-gradient(135deg, #fdf5f9, #f5e7bc);
    padding: 251px 0 150px;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1em;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 20px;
    cursor: none;
}

.page-header-box h1 span {
    font-weight: 700;
    color: var(--accent-color);
}

.page-header-box ol {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    content: "\2a";
    color: var(--primary-color);
    font-size: 30px;
    padding-top: 6px;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--accent-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker {
    padding: 20px 0;
}

.about-us.page-about-us::before {
    left: auto;
    right: -70px;
    background-position: right bottom;
}

.our-approach {
    padding: 80px 0;
}

.our-approach-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.our-approach-item {
    position: relative;
    width: calc(50% - 15px);
    background: url("../images/approach-item-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 30px;
    overflow: hidden;
}

.our-approach-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.our-approach-item .icon-box {
    margin-bottom: 40px;
}

.our-approach-item .icon-box img {
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.our-approach-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.approach-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.approach-item-content p {
    margin: 0;
}

.our-approach-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 30px;
}

.approach-image-box-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-image-box-1 .our-approach-img {
    width: calc(50% - 15px);
}

.our-approach-img figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.our-approach-img img {
    width: 100%;
    aspect-ratio: 1 / 0.993;
    object-fit: cover;
    border-radius: 30px;
}

.approach-image-box-2 {
    width: 100%;
}

.approach-image-box-2 .our-approach-img img {
    aspect-ratio: 1 / 0.473;
}

.approach-image-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.approach-image-circle img {
    max-width: 150px;
    animation: infiniterotate 30s infinite linear;
}

.what-we-do {
    padding: 80px 0;
}

.what-we-do-content {
    margin-right: 20px;
}

.what-we-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.what-we-review-image {
    width: calc(65% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.satisfy-client-image {
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    overflow: hidden;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.satisfy-client-image figure {
    display: block;
    width: 40px;
    height: 40px;
}

.satisfy-client-image img {
    width: 100%;
}

.satisfy-client-content p {
    line-height: normal;
    margin: 0;
}

.what-we-btn {
    width: calc(35% - 10px);
}

.what-we-social-box {
    position: relative;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    display: flex;

    overflow: hidden;
}

.what-we-social-image {
    max-width: 170px;
    margin-right: 30px;
}

.what-we-social-image figure {
    display: block;
    border-radius: 20px;
}

.what-we-social-image img {
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 20px;
}



.what-we-social-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.what-we-social-tags a {
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    color: var(--primary-color);
    line-height: 1.2em;
    text-transform: capitalize;
    padding: 11px 15px;
    transition: all 0.4s ease-in-out;
}

.what-we-social-tags a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.what-we-social-tags a i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 8px;
    transition: all 0.4s ease-in-out;
}

.what-we-social-tags a:hover i {
    color: var(--accent-color);
}

.what-we-images {
    position: relative;
    padding-left: 60px;
}

.what-we-img figure {
    display: block;
    border-radius: 30px;
}

.what-we-img img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
    border-radius: 30px;
}

.what-we-images .our-agency-circle {
    position: absolute;
    bottom: 80px;
    left: 0;
}

.what-we-images .our-agency-circle a {
    display: block;
}

.what-we-images .our-agency-circle img {
    max-width: 150px;
    animation: infiniterotate 30s infinite linear;
}

.our-team {
    position: relative;
    padding: 80px 0 50px;
}

.team-item {
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.091;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 20px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    overflow: hidden;
    padding: 15px 20px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}
.team-body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    z-index: 0;
    color: #ddd;
}

.team-body::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.team-item:hover .team-body::after {
    top: 0;
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-content p,
.team-item:hover .team-content h3 {
    color: var(--dark-color);
}

.team-social-list {
    position: relative;
    display: flex;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list {
    height: 35px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.team-social-list ul li {
    display: inline-block;
    margin-right: 10px;
}

.team-social-list ul li:last-child {
    margin: 0;
}

.team-social-list ul li a i {
    color: var(--dark-color);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li:hover a i {
    color: var(--primary-color);
}

.our-soultion {
    padding: 80px 0;
}

.our-soultion-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.our-soultion-item {
    position: relative;
    width: calc(50% - 15px);
    height: 120px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    overflow: hidden;
}

.our-soultion-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.our-soultion-item::after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.our-soultion-item:hover:after {
    bottom: 0;
    height: 100%;
}

.our-soultion-item .icon-box {
    margin-right: 20px;
}

.our-soultion-item .icon-box img {
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.our-soultion-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.soultion-item-content {
    width: calc(100% - 60px);
}

.soultion-item-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
}

.soultion-item-content p {
    text-transform: capitalize;
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-soultion-item:hover .soultion-item-content p,
.our-soultion-item:hover .soultion-item-content h3 {
    color: var(--dark-color);
}

.soultion-image-box {
    position: relative;
    padding-left: 75px;
    margin-left: 20px;
}

.our-soultion-image figure {
    display: block;
    border-radius: 30px;
}

.our-soultion-image img {
    width: 100%;
    aspect-ratio: 1 / 1.2202;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***     19. Services Page css    ***/
/************************************/

.page-services {
    position: relative;
    padding: 50px 0px;
}

.page-services::before {
    content: "";
    display: block;
    position: absolute;
    left: -70px;
    bottom: 0;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left top;
    background-size: contain;
    width: 285px;
    height: 285px;
    opacity: 50%;
    animation: roundrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-services .service-item {
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***     20. Service Single css   ***/
/************************************/

.page-service-single {
    position: relative;
    padding: 160px 0 80px;
}

.service-single-content {
    margin-right: 30px;
}
.section-title .space{
    width: 100%;
}
.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
    border-radius: 30px;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry {
    margin-bottom: 40px;
}

.service-entry p {
    margin-bottom: 20px;
    font-size: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span {
    color: var(--accent-color);
    font-weight: 700;
}

.service-entry-list-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.service-entry-list {
    width: 100%;
}

.service-entry-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-entry-list ul li {
    position: relative;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 27px;
    font-size: 18px;
    line-height: 22px;
}

.service-entry-list ul li:last-child {
    margin-bottom: 0;
}

.service-entry-list ul li::before {
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.service-entry-image {
    width: calc(45% - 20px);
}

.service-entry-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.service-entry-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.89;
    border-radius: 30px;
}

.service-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 40px;
}
.our-website-faq-section {
    padding: 50px 0px;
}
.process-step-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.process-step-content {
    position: relative;
    background: url(../images/service-single-step-bg.svg) no-repeat;
    background-size: auto;
    background-position: top left;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    width: calc(50% - 15px);
    padding: 40px;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
}

.process-step-content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    border-radius: 30px;
}

.process-step-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.process-step-header .icon-box img {
    max-width: 60px;
}

.process-step-no h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.process-step-no h3 span {
    color: var(--accent-color);
    display: block;
}

.process-step-body {
    position: relative;
}

.process-step-body h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.process-step-body p {
    margin-bottom: 0;
}

.process-step-image {
    width: calc(50% - 15px);
}

.process-step-image figure {
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.9;
    border-radius: 30px;
}

.service-sidebar {
    position: sticky;
    top: 20px;
}

.service-catagery-list {
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
    overflow: hidden;
}

.service-catagery-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.service-catagery-list h3 {
    font-size: 22px;
    text-transform: capitalize;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px 40px 40px;
}

.service-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.service-catagery-list ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-dark.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
    transform: rotate(45deg);
}

.sidebar-cta-box {
    position: relative;
    background: url(../images/sidebar-cta-bg.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

.sidebar-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.sidebar-cta-box .icon-box {
    position: relative;
    margin-bottom: 40px;
}

.sidebar-cta-box .icon-box img {
    max-width: 60px;
}

.cta-contact-content {
    position: relative;
    margin-bottom: 20px;
}

.cta-contact-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-contact-content p {
    margin-bottom: 0;
}

.cta-contact-btn {
    position: relative;
}

.cta-contact-btn a {
    display: inline-block;
    font-weight: 700;
    color: var(--dark-color);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 12px 35px;
    transition: all 0.4s ease-in-out;
}

.cta-contact-btn a:hover {
    background-color: var(--dark-divider-color);
    color: var(--primary-color);
}

.cta-contact-btn a img {
    margin-right: 12px;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
}

.cta-contact-btn a:hover img {
    filter: brightness(1) invert(1);
}

/************************************/
/*** 	 21. Blog Archive Css	  ***/
/************************************/

.page-blog {
    position: relative;
    padding: 160px 0 80px;
}

.post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/************************************/
/***      22. Blog Single css	  ***/
/************************************/

.page-single-post {
    position: relative;
    padding: 160px 0 80px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}



.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: "";
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 300;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
    font-weight: 800;
}

.post-entry h1 {
    font-size: 80px;
}

.post-entry h2 {
    font-size: 50px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    position: relative;
    background: url(../images/icon-blockquote.svg) no-repeat;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
    overflow: hidden;
}

.post-entry blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    background-size: 200% auto;
    color: var(--dark-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     23. Projects Page css    ***/
/************************************/

 /* Portfolio */
.portfolio-filters {
    text-align: center;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 30px; /* Fully rounded left & right */
    cursor: pointer;
    background: #ffffff; /* Default white */
    color: var(--accent-color); /* Pink text */
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px; /* Minimum width for small screens */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: #ffffff; /* White text */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}
.portfolio-img-wrapper {
    width: 100%;
    height: 250px; /* Uniform height for all images */
    overflow: hidden;
    border-radius: 12px;
}
.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without stretching */
    transition: transform 0.3s ease;
}
.portfolio-img-wrapper img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
} 

.portfolio-item img {
    width: 100%;
    border-radius: 8px;}

/************************************/
/***     24. Project Single css   ***/
/************************************/

.page-project-single {
    position: relative;
    padding: 160px 0 80px;
}

.page-project-single::before {
    content: "";
    display: block;
    position: absolute;
    right: -80px;
    top: 150px;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 280px;
    height: 288px;
    animation: circlemoverotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-project-single::after {
    content: "";
    display: block;
    position: absolute;
    top: 60%;
    left: -80px;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 264px;
    height: 274px;
    transform: translateY(-50%);
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.project-single-content {
    margin-right: 30px;
}

.project-single-image {
    margin-bottom: 40px;
}

.project-single-image figure {
    display: block;
    border-radius: 30px;
}

.project-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 30px;
}

.project-challenges,
.project-info,
.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry h2 {
    font-size: 50px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.project-entry h2 span {
    color: var(--accent-color);
    font-weight: 700;
}

.project-entry ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-entry ul li {
    position: relative;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 24px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.project-solution-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.project-rating-content {
    width: calc(70% - 30px);
}

.project-rating-counter {
    width: calc(30% - 30px);
    display: flex;
    align-items: center;
}

.project-rating-counter .icon-box {
    margin-right: 20px;
}

.project-rating-counter .icon-box i {
    font-size: 48px;
    color: var(--accent-color);
}

.project-counter-content {
    width: calc(100% - 68px);
}

.project-counter-content h3 {
    font-size: 40px;
}

.project-sidebar {
    position: sticky;
    top: 20px;
}

.project-catagery-list {
    position: relative;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    margin-bottom: 60px;
    overflow: hidden;
}
/* Video container */
.video-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

/* Video full height, no cut */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NO CROP */
    display: block;
}

.project-catagery-list::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.category-item-list {
    padding: 40px 40px 30px;
}

.category-list-item {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.category-list-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.category-list-item h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.category-list-item p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.category-social-link {
    border-top: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    padding: 30px 40px 40px;
}

.category-social-link span {
    font-size: 22px;
    font-weight: 700;
    margin-right: 15px;
}

.category-social-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-social-link ul li {
    display: inline-block;
    margin-right: 5px;
}

.category-social-link ul li:last-child {
    margin-right: 0;
}

.category-social-link ul li a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover {
    border-color: var(--primary-color);
}

.category-social-link ul li a i {
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li a:hover i {
    color: var(--primary-color);
}
/************************************/
/*** 	 21. Blog Archive Css	  ***/
/************************************/

.page-blog {
    position: relative;
    padding: 160px 0 80px;
}

.post-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}
.page-single-post {
    position: relative;
    padding: 160px 0 80px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Tags */
.tag-links {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

/* Social Sharing */
.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
}

/************************************/
/***      25. Team Page css       ***/
/************************************/

.page-team {
    position: relative;
    padding: 160px 0 50px;
}

.page-team::before {
    content: "";
    display: block;
    position: absolute;
    left: -70px;
    top: 15%;
    background: url(../images/section-bg-shape-1.png) no-repeat;
    background-position: left top;
    background-size: contain;
    width: 285px;
    height: 285px;
    opacity: 50%;
    animation: circlemoverotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

/************************************/
/***      26. Team Single css     ***/
/************************************/

.page-team-single {
    position: relative;
    padding: 160px 0 80px;
}

.page-team-single::before {
    content: "";
    display: block;
    position: absolute;
    left: -70px;
    bottom: 30%;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 325px;
    height: 325px;
    animation: squrerotate 10s infinite linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: -1;
}

.team-single-content {
    margin-right: 30px;
}

.team-single-content h2 {
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-single-content h2 span {
    color: var(--accent-color);
    font-weight: 700;
}

.team-single-content p {
    margin-bottom: 20px;
}

.team-single-content p:last-child {
    margin-bottom: 0;
}

.team-info-box {
    margin-bottom: 60px;
}

.team-info-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.team-info-title {
    width: calc(75% - 15px);
}

.team-info-title p {
    color: var(--accent-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-info-title h2 {
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

.team-info-social-list {
    width: calc(25% - 15px);
}

.team-info-social-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: end;
}

.team-info-social-list ul li {
    display: inline-block;
    margin-right: 10px;
}

.team-info-social-list ul li:last-child {
    margin: 0;
}

.team-info-social-list ul li a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a {
    background-color: var(--accent-color);
}

.team-info-social-list ul li a i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.team-info-social-list ul li:hover a i {
    color: var(--dark-color);
}

.team-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.team-contact-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-contact-box .icon-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-right: 30px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
}

.team-contact-box .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 30%;
    z-index: -1;
}

.team-contact-box .icon-box img {
    max-width: 36px;
}

.team-contact-content {
    width: calc(100% - 110px);
}

.team-contact-content h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-contact-content p {
    margin: 0;
}

.team-personal-info {
    margin-bottom: 60px;
}

.team-career-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-career-list ul li {
    position: relative;
    width: calc(50% - 15px);
    line-height: normal;
    text-transform: capitalize;
    padding-left: 30px;
}

.team-career-list ul li::before {
    content: "\f192";
    font-family: "FontAwesome";
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.team-single-sidebar {
    position: sticky;
    top: 30px;
}

.team-single-image {
    margin-bottom: 60px;
}

.team-single-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    visibility: visible;
}

.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 30px;
}

.team-single-contact-form {
    position: relative;
    border-radius: 30px;
    border: 1px solid var(--divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow: hidden;
}

.team-single-contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.team-single-contact-form h3 {
    position: relative;
    font-size: 34px;
    font-weight: 300;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--divider-color);
}

.team-single-contact-form h3 span {
    font-weight: 700;
    color: var(--accent-color);
}

.team-single-contact-form form {
    position: relative;
    padding: 40px;
}

.team-single-contact-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.team-single-contact-form form .form-control::placeholder {
    color: var(--text-color);
}

.contact-form-btn .btn-highlighted {
    width: 100%;
    text-align: center;
}

/************************************/
/***     27. Pricing Page css     ***/
/************************************/

.page-pricing {
    position: relative;
    padding: 160px 0 50px;
}

.page-pricing::before {
    content: "";
    display: block;
    position: absolute;
    left: -80px;
    bottom: 0;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 280px;
    height: 288px;
    animation: roundrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-pricing .pricing-item {
    width: 100%;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***   28. Testimonial Page css   ***/
/************************************/

.page-testimonial {
    position: relative;
    padding: 160px 0 80px;
}

.page-testimonial::before {
    content: "";
    display: block;
    position: absolute;
    right: -80px;
    top: 150px;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 280px;
    height: 288px;
    animation: circlemoverotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-testimonial::after {
    content: "";
    display: block;
    position: absolute;
    top: 60%;
    left: -80px;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 264px;
    height: 274px;
    transform: translateY(-50%);
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.testimonial-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.testimonial-box-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    padding: 80px;
    overflow: hidden;
}

.testimonial-box-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.client-author-image {
    width: calc(27% - 25px);
}

.client-author-image figure {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.client-author-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.client-testimonial-content {
    width: calc(73% - 25px);
}

.client-testimonial-rating {
    margin-bottom: 20px;
}

.client-testimonial-rating ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.client-testimonial-rating ul li {
    display: inline-block;
}

.client-testimonial-rating ul li i {
    font-size: 12px;
    color: var(--accent-color);
    margin-right: 2px;
}

.client-testimonial-rating ul li:last-child i {
    margin: 0;
}

.client-testimonial-info {
    margin-bottom: 20px;
}

.client-testimonial-info p {
    font-size: 20px;
}

.client-testimonial-info p:last-child {
    margin: 0;
}

.client-author-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.client-author-title {
    width: calc(65% - 15px);
}

.client-author-title h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.client-author-title p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.client-author-logo {
    width: calc(35% - 15px);
    text-align: end;
}

.client-author-logo img {
    max-width: 125px;
    max-height: 30px;
}

/************************************/
/***     29. Image Gallery css    ***/
/************************************/

.page-gallery {
    position: relative;
    padding: 160px 0 50px;
}

.page-gallery::before {
    content: "";
    display: block;
    position: absolute;
    left: -70px;
    top: 40%;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: left top;
    background-size: contain;
    opacity: 50%;
    width: 325px;
    height: 325px;
    animation: squrerotate 10s infinite linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: -1;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 20px;
}

/*terms and condition css*/ /* ===== Terms & Conditions Styling ===== */

.terms {
    padding: 60px 0;
    background: #ffffff;
}

.terms .container {
    max-width: 900px;
    margin: 0 auto;
}

.terms .row h3 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: left;
}

.terms .row p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
}

/* Content Section */
.terms-content {
    text-align: left;
}

.terms-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #333;
}

.terms-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 18px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

/* Smooth spacing between last sections */
.terms-content p:last-child {
    margin-bottom: 0;
}



/*privacy policy css*/
/* Policy Container */
.policy {
    color: #333;
    line-height: 1.7;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

/* Inner Container */
.policy .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Headline Section */
.policy .row h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: left;
}

.policy .row p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* Policy Content Headings */
.policy .policy-content h4 {
    font-weight: 600;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs */
.policy .policy-content p {
    color: #555;
    margin-bottom: 15px;
}

/* Lists */
.policy .policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy .policy-content ul li {
    margin-bottom: 10px;
}

/* Links */
.policy .policy-content a {
    color: #ff9100;
    text-decoration: none;
}

.policy .policy-content a:hover {
    text-decoration: underline;
}



/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery {
    position: relative;
    padding: 160px 0 50px;
}

.page-video-gallery::before {
    content: "";
    display: block;
    position: absolute;
    left: -80px;
    top: 40%;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 264px;
    height: 274px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.video-gallery-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: "\f04b";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs {
    position: relative;
    padding: 160px 0 80px;
}

.page-faqs::before {
    content: "";
    display: block;
    position: absolute;
    right: -80px;
    top: 150px;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 50%;
    width: 280px;
    height: 288px;
    animation: circlemoverotate 12s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-faqs::after {
    content: "";
    display: block;
    position: absolute;
    top: 60%;
    left: -80px;
    background: url(../images/section-bg-shape-7.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 264px;
    height: 274px;
    transform: translateY(-50%);
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.page-faqs-catagery {
    margin-right: 30px;
}

.page-faq-accordion {
    margin-bottom: 80px;
}

.page-faq-accordion:last-child {
    margin-bottom: 0;
}

.faq-sidebar {
    position: sticky;
    top: 20px;
}

.faq-catagery-list {
    position: relative;
    border-radius: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    margin-bottom: 60px;
    overflow: hidden;
}

.faq-catagery-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 40%;
    z-index: -1;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 40px;
}

.faq-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.faq-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--accent-color);
}

.faq-catagery-list ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/arrow-accent.svg) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
    transform: rotate(45deg);
}
.reveal {
    visibility: visible;
}
/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

.contact-information {
    position: relative;
    padding: 160px 0 80px;
}

.contact-information::before {
    content: "";
    display: block;
    position: absolute;
    right: -90px;
    bottom: 0%;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 264px;
    height: 274px;
    animation: circlezoomrotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.contact-info-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 30px;
    padding: 0 80px 80px;
    overflow: hidden;
}

.contact-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-color);
    opacity: 100%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.contact-info-item {
    position: relative;
    width: calc(33.33% - 20px);
    border-radius: 0 0 30px 30px;
    text-align: center;
    overflow: hidden;
    padding: 40px;
}

.contact-info-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid var(--divider-color);
    border-top: none;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 0 0 30px 30px;
    opacity: 100%;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: -1;
}

.contact-info-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/contact-info-bg-shape.svg) no-repeat;
    background-position: top left;
    background-size: auto;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.contact-info-item:hover::before,
.contact-info-item.active::before,
.contact-info-item.active::after,
.contact-info-item:hover::after {
    height: 100%;
}

.contact-info-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    height: 100px;
    width: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-info-item .icon-box img {
    max-width: 50px;
}

.contact-info-contant p {
    margin-bottom: 20px;
}

.contact-info-contant h3 {
    font-size: 22px;
    text-decoration: underline;
}

.contact-info-contant h3 a {
    color: inherit;
}














.contact-us-form{
    padding: 100px 0px!important;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  padding: 100px 0;
  background: #f8f9fb;
}

/* ===============================
   MAP
================================ */
.map-box {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===============================
   FORM BOX
================================ */
.form-box {
  background: var(--background-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.form-box h3 {
  margin-bottom: 30px;
  font-weight: 600;
}

/* ===============================
   FLOATING FORM FIELDS
================================ */
.form-floating-custom {
  position: relative;
  margin-bottom: 22px;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
  width: 100%;
  height: 52px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #e2e2e2;
  background: #f9f9f9;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

/* TEXTAREA */
.form-floating-custom textarea {
  height: auto;
  min-height: 120px;
  resize: none;
}

/* REMOVE DROPDOWN ICON COMPLETELY */
.form-floating-custom select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  cursor: pointer;
}

/* LABEL */
.form-floating-custom label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  padding: 0 6px;
  color: #999;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* FOCUS STATE */
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
  border-color: #555555;
  background: #ffffff;
}

/* FLOAT ACTIVE */
.form-floating-custom input:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label,
.form-floating-custom textarea:focus + label,
.form-floating-custom textarea:not(:placeholder-shown) + label,
.form-floating-custom select:focus + label,
.form-floating-custom select:valid + label {
  top: -9px;
  font-size: 12px;
  color: var(--text-color);
}

/* ===============================
   SUBMIT BUTTON
================================ */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: #0d6efd;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}
















/* ================================
   SCROLL LOCK – FINAL
================================ */
html.popup-open,
body.popup-open {
  overflow: hidden !important;
  height: 100% !important;
}

body.popup-open {
  position: fixed !important;
  width: 100%;
  left: 0;
}

/* ================================
   POPUP OVERLAY
================================ */
#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 99999;

  /* FLEX CENTER */
  justify-content: center;
  align-items: center;
}

/* ================================
   POPUP BOX (CENTER FALLBACK)
================================ */
.popupForm {
  background: var(--background-color);
  width: 92%;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: popupFade 0.35s ease;

  /* 🔥 CENTER SAFETY (VERY IMPORTANT) */
  margin: auto;
}

/* Popup animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================
   CLOSE BUTTON
================================ */
.closeBtn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.closeBtn:hover {
  color: #000;
}

/* ================================
   HEADINGS
================================ */
.popupForm h2 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #000;
}

.popupForm p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* ================================
   FORM FIELDS
================================ */
.popupForm input,
.popupForm select,
.popupForm textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.popupForm textarea {
  resize: none;
  min-height: 80px;
}

/* Focus state */
.popupForm input:focus,
.popupForm select:focus,
.popupForm textarea:focus {
  border-color: #000;
  outline: none;
}

/* ================================
   SUBMIT BUTTON
================================ */
.popupForm button {
  width: 100%;
  padding: 13px;
  margin-top: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popupForm button:hover {
  background: #222;
}

/* ================================
   THANK YOU MESSAGE
================================ */
.thanksMsg {
  display: none;
  margin-top: 14px;
  color: #1c9c3a;
  font-size: 14px;
  font-weight: 600;
}

/* ================================
   MOBILE FIX
================================ */
@media (max-width: 480px) {
  .popupForm {
    padding: 25px 20px;
  }
}
