/*
CSS INDEX
===================

1. Basic & Reset Styles
2. Header One Area
3. Header Two Area
4. Mobile Offcanvas
5. Hero One Area
6. keywords Area
7. About One Area
8. Fact Area
9. Services One Area
10. Process Area
11. Recent Work Area
12. Brand Logos Area
13. Testimonials One Area
14. Faq Area
15. Blog Area
16. Footer One Area
17. Footer Two Area
18. Hero Two Area
19. About Two Area
20. Portfolio Area
21. Services Two Area
22. Brands Area
23. Testimonials Two Area
24. Team One Area
25. Pricing Area
26. Insights Area
27. Hero/About Area
28. About/About Area
29. Why Choose Area
30. Awards Area
31. Breadcrumbs Area
32. Video Area
33. Blog Details
34. Portfolio Details Hero
35. Portfolio Details
36. Services Details Hero
37. Services Details
38. Contact Area
39. Video Slider
40. Error Area
41. Responsive Design

------------------------------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;display=swap');


/* =============================
* 1. Basic & Reset Styles
============================= */

:root {
  --color-primary: #000000;
  --color-secondary:#ffbe00;
  --bg-dark: #101010;  
  --bg-light-gray: #f1f1f1; 
  --bg-white: #ffffff; 
  --font-primary: 'Outfit', sans-serif;
  --gray-base: #999;
  --border-color: rgba(255, 255, 255, 0.10);
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-primary);
  background-color: var(--color-primary);
  color: var(--bg-white);
  overscroll-behavior: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

#root, #__next {
  isolation: isolate;
}

/* Lenis Css */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Basic Style */
.container{
  max-width: 1920px;
  padding-left: 75px;
  padding-top: 7.5rem;
  padding-right: 75px;
  padding-bottom: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-wrap{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.subtitle{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  display: inline-block;
}

.title{
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
  text-indent: 400px;
}

.title-lg{
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bg-white);
}
@media(max-width:667px){
  .title-lg{
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bg-white);
}
}

.title-gradient{
  font-size: 11.5rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #FFFA00, #fff, #FFFA00);
  -webkit-background-clip: text;
  display: inline-block;
}

/* Button Arrow */
.btn-arrow,.btn-arrow__black{
  display: inline-block;
  text-decoration: none;
  position: relative;
  margin-right: 55px;
}

.btn-arrow__text{
  display: grid;
  place-items: center;
  background-color: var(--bg-white);
  color: var(--color-primary);
  padding: 0 35px;
  border-radius: 66px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  height:55px;

}

.btn-arrow::after,.btn-arrow__black::after{
  content: "\f061"; 
  font-family: "Font Awesome 6 Free";  
  font-weight: 800;  
  position: absolute;
  top: 0;
  right: -55px;
  display: grid;
  place-items: center;
  height: 55px;
  width: 55px;
  font-size: 1.2rem;
  color: var(--color-primary);
  background-color: var(--bg-white);
  transform: rotate(-45deg);
  border-radius: 50%;
  overflow: hidden;
  transition: 0.5s ease;
}

.btn-arrow:hover::after, .btn-arrow__black:hover{
  transform: rotate(0);
}

.btn-arrow__black .btn-arrow__text{
  background-color: var(--color-primary);
  color: var(--bg-white);
}

.btn-arrow__black::after{
 background-color: var(--color-primary);
 color: var(--bg-white);
}

/* Button Circle */
.btn-circle__wrapper {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 20px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 5px 15px -2px rgba(255, 251, 31, 0.15) inset;
}

.btn-circle__wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  transform: translate(-30px, 0) scale(1);
  transition: transform 0.5s ease;
  z-index: 1;
}
 
.btn-circle__wrapper:hover::after {
  transform: translate(-30px, 0) scale(15);
}
 
.btn-circle__wrapper:hover a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.btn-circle__wrapper i {
  transition: fill 0.3s ease;
}

.btn-circle__wrapper:hover i {
  color: var(--color-primary);
}

.btn-circle__wrapper a {
  display: flex !important;
  align-items: end;
  gap: 10px;
  width: 70%;
  color: var(--bg-white);
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.btn-circle__wrapper i {
  margin-bottom: 3px !important;
  transform: rotate(-45deg);
}

/* Button With Bluet */
.btn__bluet{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 2rem;
  border-radius: 32px;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  background-color: var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
}

.btn__bluet .bluet {
  font-weight: 600;
  height: 8px;
  width: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.btn__bluet .btn-text {
  width: auto;
  height: auto;
  color: var(--color-primary);
  padding-left: 10px;
}

/* Preloader */
.preloader{
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: var(--bg-dark);
  z-index: 9999;
}

.preloader__img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Title Wrap Flex */
.title-wrap__flex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* =============================
* 2. Header One Area
============================= */

.header {
  position: relative;
  background: transparent;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
  z-index: 888 !important;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  max-height: 96px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}

.header--one .header__container{
  padding-right: 0;
}

.header__logo{
  max-width: 140px;
  max-height: 40px;
  margin-right: 10px;
}

.logo__img{
  width: 100%;
  height: 100%;
  background-size: cover;
  margin-top: -50px;
}

.header__menu-btn{
  margin-top: 10px;
  width: 170px;
  height: 85px;
}
 
.header__menu-btn .menu-btn {
  display: block;
  height: 700%;
  width: 90%;
  background-color: var(--color-secondary);
  padding: 12px 30px;
  padding-right: 45px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  color: var(--color-primary); 
  font-weight: 500;
  cursor: pointer;
  
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.main-menu .menu-item {
  position: relative;
  list-style: none;
}

.main-menu .menu-item > a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bg-white);
  padding: 10px 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Active Menu Color */
.current-menu-item > a,
.current-menu-parent > a,
.current-menu-ancestor > a {
  color: var(--color-secondary) !important;
}


.main-menu .sub-menu .menu-item a {
    font-size: 14px;
}

.menu-item-has-children > a::after {
  /* content: '\f078';    for the doropdown icons */
  content: '';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-dark);
  display: block;
  min-width: 280px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 3px;
  padding: 10px 0;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 4px 6px rgba(0, 0, 0, 0.2);
}

.main-menu .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.main-menu .sub-menu .menu-item {
  position: relative;
  padding: 0 25px;
}

.main-menu .sub-menu a {
  position: relative;
  padding: 0.75rem 0;
  display: block;
  color: var(--bg-white);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
}

.main-menu .sub-menu a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background: var(--color-secondary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-menu .sub-menu a:hover {
  color: var(--color-secondary);
}

.main-menu .sub-menu a:hover::before {
  width: 100%;
}

.sub-menu .menu-item-has-children > .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 5px;
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sub-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-menu .menu-item-has-children > a::after {
  content: '\f054';  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
  position: absolute;
  right: 5px;
}

.sub-menu .menu-item-has-children:hover > a::after {
  transform: rotate(90deg);
}

.main-menu .menu-item > a:hover {
  color: var(--color-secondary);
}

/* =============================
* 3. Header Two Area
============================= */

.header--two.header {
  margin-top: 1.8rem;
  border-bottom:0;
  z-index: 888 !important;
}

.header__content-area{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding-top: 0px;
  position: relative;
  border: 1px solid var(--border-color);
  width: 100%;
  padding: 1.5rem 2rem;
  border-radius: 10px;
}

.header--two .current-menu-item{
  color:var(--color-secondary);
  position: relative;
  padding-left: 20px;
}

.header--two .current-menu-item::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.header--two .sub-menu .current-menu-item::before{
  content: none;
}

.header--two .header__menu-btn{
  width: auto;
  height: auto;
  color: var(--color-primary);
}

.header--two  .menu-btn{
  display: flex;
  align-items: center;
  padding: 12px 2rem;
  border-radius: 32px;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.menu-btn__text {
  white-space: nowrap;
}

.header--two .menu-btn__icon{
  font-weight: 600;
  height: 8px;
  width: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.header__toggle-wrap{
  display: none;
  place-items: center;
  background-color: var(--color-secondary);
  height: 60px;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

/* =============================
* 4. Mobile Offcanvas
============================= */

.main-nav__logo{
  max-width: 150px;
 
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  overflow-y: auto;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  max-width: 500px;
}

.mobile-menu .sub-menu{
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding: 30px 20px;
}

.mobile-menu__close {
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
}

.mobile-menu__list {
  list-style: none;
  flex-direction: column;
  display: flex;
  padding-left: 0;
  display: none;
}

.mobile-menu__list .menu-item:not(:first-child) {
  border-top: 1px solid var(--border-color);
}

.mobile-menu__list .menu-item > a {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--bg-white);
  user-select: none;
  position: relative;
}

.mobile-menu .menu-item-has-children > a::after {
  content: '+';
  font-weight: bold;
  font-size: 1.2rem;
  user-select: none;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.mobile-menu .menu-item-has-children.open > a::after {
  content: '−';
  transform: rotate(0deg);
}

.mobile-menu__list .sub-menu {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--bg-dark);
  transition: max-height 0.4s ease;
  position: static;
  padding-left: 1rem;
  border: none;
}

.mobile-menu__list .menu-item.open > .sub-menu {
  max-height: 1000px;  
}

/* Contact Info */
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  margin-top: 3.5rem;
}

.mobile-menu__contact-link{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}

/* =============================
* 5. Hero One Area
============================= */

.hero--one {
  position: relative;
  z-index: 0;
}

.hero--one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/hero/home-1-hero-bg.png') center center / cover no-repeat;
  z-index: -2;
}

.hero--one .hero__container{
  position: relative;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  z-index: 1;
}

.hero--one .hero__content-area{
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 3.75rem;
  padding-top: 5rem;
  z-index: 2;
}

.hero--one .hero__image--left{
  min-width: 420px;
  max-height: 570px;
  
}

.hero--one .hero__image--left .hero__image{
  width: 100%;
  height: 100%;
  max-width: 420px;
  background-size: cover;
}

@media(max-width:667px){
  .hero--one .hero__image--left .hero__image{
  width: 100%;
  height: 100%;
   max-width: 280px; 
   padding-left: 70px;
   
  /* background-size: cover; */
}


}


.hero--one .hero__title{
  font-size: 11rem;
  line-height: 1;
}

.hero--one .hero__tagline{
  margin-left: 6rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.hero--one .hero__header-group{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hero--one .hero__video-icon-wrap{
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
}

.hero--one .hero__stats{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero--one .hero__stats-number{
  font-size: 3rem;
  font-weight: 500;
  color: var(--bg-white);
  color:rgb(212, 212, 40) ;
}

.hero--one .hero__stats-text{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 175px;
}

.hero--one .hero__bottom{
  margin-top: 3.7rem;
  display: flex;
  gap: 5.8em;
  margin-left: 6rem;
}

.hero--one .hero__text{
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--bg-white);
  font-weight: 400;
}

.hero--one .hero__image--right{
  max-width: 412px;
  max-height: 325px;
  width: 100%;
  height: 100%;
}
 
.hero__arrow{
  margin-top: 3.75rem;
}

.hero.hero--one{
  margin-top: -96px;
}

/* Hero Bg Lines */
.hero__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--border-color);
  z-index: 1;
  pointer-events: none;
}

.hero__line--1 {
  left: 25%;
}

.hero__line--2 {
  left: 50%;
}

.hero__line--3 {
  left: 75%;
}

/* =============================
* 6. keywords Area
============================= */

.keywords {
  background-color: var(--color-secondary);
  overflow: hidden;
  white-space: nowrap;
}

.keywords__container {
  padding: 30px 0 !important;
}

.keywords__wrapper {
  position: relative;
  overflow: hidden;
}

.keywords__track {
  display: flex;
  width: fit-content;
  animation: scroll 20s linear infinite;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin-top: 10px;
  
  
}

.keywords__group {
  display: flex;
  flex-shrink: 0;
  
}

.keywords__item,
.keywords__separator {
  display: inline-block;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 34px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 0.75rem;
  white-space: nowrap;
  margin-left: 50px;
}

.keywords__separator {
  font-size: 20px;
  font-weight: bold;
}

/* Keywords Error Page */
.keywords--error-page .keywords__item{
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: capitalize !important;
  display: block;
}

.keywords--error-page .keywords__wrapper{
  overflow-y: auto;
  height: 45px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================
* 7. About One Area
============================= */
.about--one{
  position: relative;
  overflow: hidden;
}

.about--one .about__subtitle-wrap {
    float: left;
    margin-bottom: 0;
    margin-top: 25px;
}

.about--one .about__content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  color: var(--bg-white);
  margin-top: 7.5rem;
}

.about--one .about__col--left{
  max-width: 850px;
}

.about--one .about__testimonial-wrap {
  display: flex;
  gap: 7.5rem;
  max-width: 965px;
  margin-bottom: 7.25rem;
}

.about--one .about__desc{
  max-width: 424px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-base);
}

.about--one .about__image-wrap{
  width: 100%;
  max-height: 910px;
  border-radius: 5px;
  overflow: hidden;
}

.about--one .about__col--right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  max-width: 600px;
}

.about--one .about__image-wrap--right{
  max-width: 600px;
  max-height: 690px;
  overflow: hidden;
}


.about--one .about__image{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about--one .about__link {
  color: #f9e506;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.about--one .about__description {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about--one .about__testimonial {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about__testimonial-avatar-wrap{
  min-width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.about--one .about__testimonial-avatar {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about--one .about__testimonial-rating {
  font-weight: bold;
  color: var(--color-secondary);
}

.about--one .about__testimonial-quote {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
  color: var(--gray-base);
  margin-top: 10px;
}

.about--one .about__testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--bg-white);
}

.about--one .about__images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
}

.about--one .about__image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about--one .about__hand {
  position: absolute;
  width: 322px !important;
  height: 335px;
  right: -40px;
  bottom: -100px;
  width: 60px;
}

/* =============================
* 8. Fact Area
============================= */

.fact {
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

@media(max-width:667px){
  .fact {
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
  margin-top: 240px;
}
}
.fact__container{
  padding-top: 0;
  padding-bottom: 0;
}

.fact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
}

.fact__item {
  border-left: 2px solid var(--color-primary);
  padding: 7.5rem 30px;
  position: relative;
}

.fact__item:last-child {
  border-right: 2px solid var(--color-primary);
}

.fact__item::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: -6px;
}

.fact__item:nth-child(even){
  padding-top: 15rem;
}

.fact__item:nth-child(odd)::before {
  top: 130px;
}

.fact__item:nth-child(even)::before {
  top: 250px;
}

.fact__year,
.fact__number {
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1;
}

.fact__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  color: var(--color-primary);
}

.fact__subtitle {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}

.fact__avatars,
.fact__icons {
  display: flex;
  margin-top: 2.5rem;
}

.fact__avatar,
.fact__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--bg-white);
}

.fact__icon{
  border-radius: 10px;
}

.fact__avatar:not(:first-child),
.fact__icon:not(:first-child) {
  margin-left: -20px;
}


/* =============================
* 9. Services One Area
============================= */

.services--one .services__subtitle-wrap{
  margin-bottom: 0;
}

/* Services Item */
.services__list{
  margin-top: 7.5rem;
}

.services--one .services__item{
  border-top: 2px solid rgba(255, 255, 255, 0.10);
}

.services--one .services__item-header{
  display: flex;
  align-items: center;
  row-gap: 10px;
  padding: 2rem 0;
}

.services--one .services__item-title-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

span.services__item-index {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  width: 100%;
  max-width: 30%;
  display: inline-block !important;
}

.services--one .services__item-title{
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
}

/* Services Toggle */
.services--one .services__item-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 60px;
  min-width: 60px;
  width: 60px;
  height: 60px;
}

.services--one .services__item-toggle-icon {
  font-size: 1.5rem; 
  color: var(--bg-white);
  background-color: transparent;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease ;
}

.services__item--active .services__item-toggle-icon {
  background-color: var(--color-secondary) !important;
  color: var(--color-primary) !important;
}

.services__item-toggle-icon.rotate {
  transform: rotate(180deg);
}

.services--one .services__desc {
  margin: 7.5rem 0;
}

.services--one .services__image {
  max-height: 700px;
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* Services Content */
.services--one .services__item-content {
  display: flex;
  transform: scaleY(0);
  transform-origin: top;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    height 0.5s ease,
    padding 0.5s ease,
    margin-bottom 0.5s ease;
  opacity: 0;
  height: 0;
  padding: 0 2rem;
  margin-bottom: 0;
  overflow: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-radius: 10px;
  background-color: var(--bg-dark);
  margin-left: 30%;
  visibility: hidden;
}

.services--one .services__item--active .services__item-content {
  transform: scaleY(1);
  opacity: 1;
  height: auto;
  padding: 2rem;
  visibility: visible;
}

.services--one .services__item-text{
  max-width: 450px;
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: space-between;
}

.services--one .services__item-desc{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-base);
}

.services--one .services__item-tags{
  display: flex;
  align-items: center;
  column-gap:40px;
  row-gap: 1rem;
  width: fit-content;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg-white);
  padding: 20px 0;
  padding-left: 20px;
  list-style: square;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.services--one .services__item-tags:first-child {
  margin-left: 20px;
  display: block;
}

.services--one .services__item-images{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.services__item-image-wrap{
  max-width: 263px;
  max-height: 286px;
  border-radius: 10px;
  overflow: hidden;
}

.services--one .services__item-image{
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* Services Page */
.services--services .services__container{
  padding-top: 0 !important;
}

.services__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 7.5rem 3.75rem;
  align-items: center;
  border-radius: 10px;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.services__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  background-blend-mode: multiply;  
  border-radius: 10px;
  z-index: 0;
}

.services__tab {
  display: inline-block;
  background: transparent;
  border: none;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
  padding: 0;
  text-decoration: none;
  outline: none;
}

.services__tab.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.services__contents {
  position: relative;
  border-left: 1px solid var(--color-primary);
}

.services__content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  background-color: var(--bg-white);
  max-width: 690px;
  margin-left: auto;
  margin-right: 0;
  padding: 3.75rem;
  border-radius: 10px;
  height: 100%;
  margin-left: 6rem;
}

.services__content.active {
  display: block;
}

.services__content img {
  width: 100%;
  max-height: 375px;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 2.2rem;
}


 
/* =============================
* 10. Process Area
============================= */

.process{
  background-color: var(--bg-white);
}

.process__content-area {
  display: grid;
  grid-template-columns: 35fr 65fr; 
  gap: 5rem;
  width: 100%;
  box-sizing: border-box;
}

.process__intro {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.process__subtitle {
  color: var(--color-primary);
}

.process__title {
  color: var(--color-primary);
}

.process__btn {
  margin-top: 3rem;
}
 
/* Process Step */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  row-gap: 7rem;
}

.process__step {
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0, 0, 0, 0.10);
  position: relative;
}

.process__step-label {
  writing-mode: vertical-rl;
  position: absolute;
  transform: rotate(180deg);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
  left: 20px;
  bottom: 0;
}

.process__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process__step-side-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--bg-dark);
}

.process__step-image{
  width: 100%;
  height: 100%;
  max-width: 316px;
  max-height: 320px;
}

.process__step-image img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.process__step-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #565656;
  max-width: 242px;
  padding-left: 45px;
 margin-top: 30px;
  text-align: left;
}

/* =============================
* 11. Recent Work Area
============================= */

.recent-works {
  color: var(--bg-white);
  text-align: center;
}
@media(max-width:667px){
  .recent-works {
  color: var(--bg-white);
  text-align: center;
  margin-top: -200px;
}
}

.recent-works__title-wrap {
  margin-bottom: 6rem;
}

.recent-work__filters{
  margin-bottom: 4rem;
}

.recent-work__filter-list{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 10px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.recent-work__filter-item{
  list-style: none;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bg-white);
  cursor: pointer;
}

.filter-active{
  color: var(--color-secondary);
}

.recent-works__grid {
  display: grid;
  gap: 1.875rem;
  grid-template-columns:  repeat(3,1fr);
  margin: 0 auto;
}


.work-card {
  background: rgba(18, 18, 18, 0.00);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: left;
  padding: 2rem;
}

.work-card__image-wrapper {
  position: relative;
  max-width: 810px;
  max-height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.work-card__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  display: block;
}

.work-card__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  color: black;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  display: grid;
  place-items: center;
  height: 120px;
  width: 120px;
  cursor: pointer;
  opacity: 0;
  font-size: 20px;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
}

.work-card:hover .work-card__button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  cursor: pointer;
}

.work-card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 1rem;
  margin-top: 2rem;
}

.work-card__tags {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--bg-white);
  padding: 6px 1.5rem;
  margin-bottom: 0.5rem;
  border-radius: 32px;
}

.work-card__title-link{
  text-decoration: none;
  color: var(--bg-white);
}

.work-card__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  color: var(--bg-white);
}

.work-card__year {
  display: inline-block;
  background: #f8ff00;
  color: var(--color-primary);
  padding: 6px 25px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 5px;
  font-weight: bold;
}

/* Recent Work Cta */
.recent-works__cta{
  display: flex;
  justify-content: center;
  margin-top: 3.75em;
}
 
/* =============================
* 12. Brand Logos Area
============================= */

.brand-logos {
  background-color: var(--bg-dark);
  text-align: center;
}

@media(max-width:667px){
  .brand-logos {
  background-color: var(--bg-dark);
  text-align: center;
  margin-top: 250px;
}
}

.brand-logos__title {
  color: var(--bg-white);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 5rem;
  line-height: 1.3;
}

.brand-logos__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
}

.brand-logos__item {
  width: 100%;
  height: 150px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logos__item:hover {
  transform: translateY(-5px);
}

.brand-logos__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logos__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.brand-logos__item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.brand-logos__item:nth-child(3) {
  grid-column: 5;
  grid-row: 1;
}

.brand-logos__item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.brand-logos__item:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}

.brand-logos__item:nth-child(6) {
  grid-column: 6;
  grid-row: 2;
}

/* =============================
* 13. Testimonials One Area
============================= */

.testimonials {
  background-color: var(--color-primary);
}

.testimonials__title-wrap{
  gap: 2rem;
  margin-bottom: 15rem;

}
 
/* Cards grid */
.testimonials--one .testimonials__list  {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}

/* Testimonial Card */
.testimonial-card {
  background:rgba(217, 217, 217, 0.00);
  padding: 2.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: height 0.6s ease;
}

.testimonial-card:hover .testimonial-card__img-wrap{
  transform: scaleY(1);
  max-height: 130px;
}

.testimonial-card__text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--bg-white);
  margin: 5.6rem 0;
}
 
.testimonial-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  margin-top: 20px;
}

.testimonial-card__position {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-base);
  margin-top: 8px;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-card__img-wrap {
  max-width: 130px;
  max-height: 0;
  transform: scaleY(0);
  transition: transform 0.6s ease, max-height 0.6s ease;
  overflow: hidden;
}

.testimonial-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Last card - shifted down */
.testimonial-card:last-child {
  transform: translateY(-150px);
  transition: 0.6s ease;
}

/* =============================
* 14. Faq Area
============================= */

.faq{
  background-color: var(--bg-dark);
}

.faq__container {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.faq__sidebar {
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.75rem 2rem;
  flex: 1 1 300px;
  border-radius: 10px;
  height:4 0px;
}

.faq__title {
  text-transform: uppercase;
  color: var(--color-primary);
}

.faq__subtitle {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

.faq__button {
  margin-top: 2.2rem;
}

.faq__button-icon {
  margin-left: 0.5rem;
}

.faq__content {
  flex: 2 1 600px;
}

.faq__item {
  border-bottom: 1px solid #333;
  padding: 2rem 0;
  overflow: hidden;
  transition: padding 0.6s ease;
}

.faq__item--active{
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 2rem;
  border-bottom: none;
}

.faq__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  margin-top: 0;  
  transition: height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  font-size: 1rem;
  color: #ccc;
}

.faq__item--active .faq__answer {
  height: auto;  
  opacity: 1;
  margin-top: 2rem;  
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-base);
  -webkit-text-stroke-color: var(--border-color);
}

.faq__question-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: calc(100% - 50px);
}

.faq__question {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.faq__number {
  font-weight: bold;
  color: #fff;
  min-width: 50px;
}

.faq__question-text {
  flex: 1;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg-white);
  -webkit-text-stroke-color: var(--border-color);
}

.faq__toggle {
  background: var(--bg-white);
  color: var(--color-primary);
  font-size: 1rem;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.faq__item--active .faq__toggle{
  background-color: var(--color-secondary);
}

/* =============================
* 15. Blog Area
============================= */

.blog__heading{
  color: var(--color-primary);
}

.blog__subtitle-wrap{
  margin-bottom: 0;
}

.blog__subtitle{
  color: var(--bg-dark);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  row-gap: 1rem;
  margin-top: 7.5rem;
}

.blog__item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 1.8rem;
  border-radius: 10px;
}

.blog__item:last-child {
  grid-column: span 2;
}

.blog__item:hover {
  transform: translateY(-5px);
}

.blog__image-wrapper {
  max-width: calc(100% - 60px);
  max-height: 280px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.blog__image {
  width: 100%;
  height: 100% ;
  background-size: cover;
  height: auto;
  display: block;
}

.blog .blog__link{
  color: var(--color-primary);
  text-decoration: none;
  display: block;
}

.blog__icon {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--bg-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.blog .blog__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.7rem;
}

.blog__meta {
  max-width: 760px;
  display: flex;
  justify-content: start;
  column-gap: 1rem;
  row-gap: 5px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.blog__meta-date{
  position: relative;
  padding-left: 2rem;
  margin-left: 3rem;
}

.blog__meta-date::before{
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background-color: var(--color-primary);
  top: 50%;
  left: calc(-36px - 1rem);
  transform: translateY(-50%);
}

.blog__meta-reading-time{
  position: relative;
  padding-left: 1rem;
}

.blog__meta-reading-time::before{
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

.blog .blog__text{
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: stretch;
  height: 100%;
}

.blog__text .blog__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

.blog .blog__excerpt {
  font-size: 18px;
  font-weight: 400;
  color: #565656;
}


/* =============================
* 16. Footer One Area
============================= */
 
.footer__contact {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: space-between;
  gap: 2rem;
}

.footer__text {
  flex: 1;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  padding: 20px;
 
  color: white;
  text-align: center;
}

.footer__title {
  text-indent: 0;
  max-width: 690px;
  text-indent: 0 !important;
}

.footer__email.title {
  display: block;
  text-indent: 0;
  color: var(--color-secondary);
  text-decoration: underline;
  margin: 7rem 0;
 font-size: 30px;
 margin-left:-260px;
 margin-top: 70px;
 text-decoration: none
}

.footer__email.title1 {
  display: block;
  text-indent: 0;
  color: var(--color-secondary);
  text-decoration: underline;
  margin: 7rem 0;
 font-size: 25px;
 margin-left:-570px;
 margin-top: -100px;
 text-decoration: none
}

@media(max-width:667px){
  .footer__email.title1 {
  display: block;
  text-indent: 0;
  color: var(--color-secondary);
  text-decoration: underline;
  margin: 7rem 0;
 font-size: 20px;
 margin-left:-px;
 margin-top: -60px;
 text-decoration: none
}
}





.footer__email.title {
  display: block;
  text-indent: 0;
  color: var(--color-secondary);
  text-decoration: underline;
  margin: 7rem 0;
 font-size: 30px;
 margin-left:-260px;
 margin-top: 70px;
 text-decoration: none
}

@media(max-width:667px){
  .footer__email.title {
  display: block;
  text-indent: 0;
  color: var(--color-secondary);
  text-decoration: underline;
  margin: 7rem 0;
 font-size: 22px;
 margin-left:-260px;
 margin-top: 70px;
 text-decoration: none
}
}

.footer__socials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: -90px;
}

.footer__social {
  font-size: 1rem;
  padding: 0.5rem 1.8rem;
  background: var(--bg-white);
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.5;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  transition: 0.6s;
}

.footer__social::before{
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--color-primary);
}

.footer__social:hover {
  background-color: var(--color-secondary);
}

.footer__form {
  flex: 1;
  background-color:#111111;
  padding: 3.5rem;
  border-radius: 10px;
  margin-top:50px;
  
}

.footer__form-subtitle{
  font-size: 18px;
  color:white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__form-title {
  font-size: 3rem;
  font-weight: 600;
  color:white;
  text-indent: 0 !important;
  margin-bottom: 3.5rem;
}

.footer__input,
.footer__textarea {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  padding: 1.2rem 1.8rem;
  margin-bottom: 1.8rem;
  border: none;
  border-radius: 10px;
  background: #F1F1F1;
  font-size: 1rem;
  color:white;
}

input{
	color:white;
	font-size: 18px;
	font-weight:bold;
}

.footer__input::placeholder,.footer__textarea{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.footer__textarea {
  height: 140px;
  resize: none;
}
 
.footer__submit{
  border: none;
  padding: 0;
  background:none;
  cursor: pointer;
}

.footer__bottom {
  text-align: center;
  position: relative;
}

.footer__bottom::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
  background-color: var(--border-color);
}

.footer__brand-text{
  font-size: 11.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(230deg, #FFFB1F 30%, #ffffff 50%, #FFFB1F 75%) !important;
  -webkit-background-clip: text !important;
  display: inline-block;
  margin-top: -2rem;
}

.footer--one .footer__brand-text{
  margin-top: 7.5rem;
}

.footer__scroll-top {
  background: var(--color-secondary);
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  margin: 1rem auto;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.footer__copyright {
  font-size: 18px;
  color: var(--bg-white);
  font-weight: 400;
  line-height: 1.5;
  /* height:0px; */
  justify-content: center;
  text-align: center;
  
  
}

/* =============================
* 17. Footer Two Area
============================= */

.footer--two .footer__top{
  display: flex;
  flex-wrap: wrap;
  column-gap: 10rem;
  row-gap: 6rem;
  position: relative;
}

.footer--two .footer__shape-top{
  width: 100%;
  height: 20px;
}

.footer--two .footer__brand-info{
  max-width: 350px;
}

.footer__brand-info .logo {
    max-width: 208px;
    max-height: 46px;
    display: block;
}

.footer__brand-info .logo__img{
  width: 100%;
  height: 100%;

 
}

.footer--two .footer__columns{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  /* column-gap: 2rem; */
  row-gap: 6rem;
}

.footer--two .footer__heading{
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 3.5rem;
}

.footer--two  .footer__desc{
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray-base);
  margin-top: 2.8rem;
}

.footer--two .footer__list{
  list-style: none;
  padding-left: 0;
}

input:focus {
    outline: none; /* Default focus outline remove */
    border: none;  /* जर border नको असेल तर */
}

textarea:focus {
    outline: none; /* Default focus outline remove */
    border: none;  /* जर border नको असेल तर */
}
.footer--two  .footer__link ,.footer--two .footer__text{
  text-decoration: none;
  color: var(--gray-base);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}

/* =============================
* 18. Hero Two Area
============================= */

.hero--two {
  color: var(--bg-white);
}

.hero--two .hero__title-wrap {
 display: flex;
 align-items: center;
 gap: 5rem;
 flex-wrap: wrap;
}

.hero--two .hero__title {
  font-size: 12rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
  max-width: 1130px;
}

.hero--two .hero__title span{
  display: block;
}

.hero--two .hero__title-text-small{
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: end;
  display: block;
  margin-top: 1.8rem;
}

.hero--two .hero__image-wrap {
  max-width: 340px;
  max-height: 340px;
}

.hero--two .hero__image{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.hero--two .hero__subtitle-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1.8rem;
}

.hero--two .hero__video-thumb {
  max-width: 480px;
  position: relative;
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 300px;
}

.hero--two .hero__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--two .hero__video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hero--two .hero__subtitle {
  font-size: 12rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
}

.hero__container-custom{
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.hero--two .hero__photo-wrap{
  width: 100%;
  border-radius: 10px;
}

.hero--two .hero__photo{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.hero--two .hero__card,.avatar-card {
  position: absolute;
  bottom: 20px;
  right: 75px;
  background: var(--bg-dark);
  padding: 3.75rem;
  text-align: left;
  max-width: 415px;
}

.hero--two .hero__avatars, .avatars {
  display: flex;
  margin-bottom: 30px;
}

.hero--two .hero__avatar, .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid var(--bg-white);
}

.avatar:not(:first-child) {
  margin-left: -20px;
}

.hero__avatar:not(:first-child), .avatars.avatar:not(:first-child) {
  margin-left: -20px;
}

.hero--two .hero__stat, .avatar-stat {
  display: block;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.8rem;
  margin-bottom: 10px;
  color: var(--bg-white);
}

.hero--two .hero__text, .avatar-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 30px;
  display: block;
  color: var(--bg-white);
}

.hero--two .hero__btn, .avatar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 2rem;
  border-radius: 32px;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  background-color: var(--color-secondary);
  cursor: pointer;
}

.hero--two .hero__btn-icon, .avatar-btn-icon{
  font-weight: 600;
  height: 8px;
  width: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.hero--two .hero__btn-text, .avatar-btn-text{
  width: auto;
  height: auto;
  color: var(--color-primary);
  padding-left: 10px;
}

/* =============================
* 19. About Two Area
============================= */

.about--two {
  background-color: var(--bg-white);
}

.about--two .about__container{
  position: relative;
}

.about--two .about__title-wrap {
  max-width: 1400px;
  text-align: left;
  margin-bottom: 3.5rem;
}

.about--two .about__title {
  text-indent: 0 !important;
  color: var(--color-primary);
}

.about--two .about__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.about__item-area{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__item{
  width: 650px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5rem;
  row-gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #222222;
}

.about__item-wrap{
  display: flex;
  width: 100%;
}

.about__item-wrap:nth-child(1){
  justify-content: start;
}

.about__item-wrap:nth-child(2){
  justify-content: center;
}

.about__item-wrap:nth-child(3){
  justify-content: end;
}

.about__item-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #222222;
}

.about__item-text {
  font-size: 18px;
  color: #222222;
  max-width: 400px;
  max-width: 320px;
}

.about--two .about__image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 200px;
  right: 30px;
}

/* =============================
* 20. Portfolio Area
============================= */

.portfolio__container{
  padding-bottom: 0 !important;
}

.portfolio__container-custom{
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

.portfolio__grid{
  margin-top: 7.5rem;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.portfolio__item{
  padding: 4rem;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio__thumb-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio__thumb-wrap:hover .portfolio__link-arrow{
  opacity: 1;
}

.portfolio__link-arrow{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio__thumb{
  width: 100%;
  height: 100%;
}

.portfolio__tag {
  position: absolute;
  top: 88%;
  left: 12%;
  transform: rotate(-90deg) translateY(calc(-50% - 12%));
  transform-origin: left;
  background: var(--bg-white);
  color: var(--color-primary);
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  line-height: .5;
}

.portfolio__content-wrap{
  position: relative;
  margin-top: 2rem;
}

.portfolio__item-title-wrap{
  display: flex; 
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio__index{
  font-size: 18px;
  line-height: 1.5;
  color: var(--bg-white);
}

.portfolio__item-link{
  text-decoration: none;
}

.portfolio__item-title{
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bg-white);
}

.portfolio__year-tag {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid var(--bg-white);
  padding: 5px 16px;
  border-radius: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-30deg);
  width: fit-content;
  display: flex; align-items: center;
}

.portfolio__year-tag span{
  display: block;
}

.portfolio__year-tag-text{
  padding-left: 10px;
}

.portfolio__btn-wrap{
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}

.portfolio__btn{
  background-color: var(--bg-white) !important;
  color: var(--color-primary) !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio--one .portfolio__title{
  text-indent: 0 !important;
  max-width: 860px;
  margin-bottom: 7.5rem;
}

.portfolio--one .portfolio__year{
  text-align: end;
  display: block;
}

.portfolio--one .portfolio__year{
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg,var(--bg-white) 45%, var(--color-secondary) 50%, var(--bg-white) 100%);
  -webkit-background-clip: text;
}

/* =============================
* 21. Services Two Area
============================= */

.services--two .services__text{
  text-indent: 0 !important;
  max-width: 1024px;
}

.services--two .services__title{
  text-align: right;
  display: block;
  margin: 7.5rem 0;
}


.services--two .services__tabs {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.services--two .services__details-text {
  font-size: 18px;
  font-weight: 400;
  color: #565656;
  margin-bottom: 1.8rem;
}

.services--two .services__tags{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 10px 0;
  column-gap: 20px;
  row-gap: 12px;
}

.services--two .services__tag{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
}

.services--two .services__tag:not(:first-child)  {
  padding-left: 30px;
}

.services--two .services__tag:not(:first-child)::before {
  content: "//";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
* 22. Brands Area
============================= */

.brands {
  text-align: center;
  background-color: var(--bg-white);
}

.brands__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 3.75rem;
  color: var(--color-primary);
}
.brands__list {
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  overflow: hidden;
}

.brands__item {
  padding: 2rem;
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
}
.brands__image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =============================
* 23. Testimonials Two Area
============================= */

.testimonials--two .testimonials__subtitle-wrap{
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.testimonials--two .testimonials__title {
  display: block;
  text-align: right;
  text-transform: uppercase;
  line-height: 1;
}

.testimonials--two .testimonials__list{
  margin-top: 7.5rem;
}

.testimonials--two .testimonials__item{
  border-top: 2px solid rgba(255, 255, 255, 0.10);
}

.testimonials--two .testimonials__item-header{
  display: flex;
  align-items: start;
  row-gap: 10px;
  padding: 2rem 0;
}

.testimonials--two .testimonials__item-title-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.testimonials--two .testimonials__title-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonials--two .testimonials__item-role{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-base);
}

span.testimonials__item-index {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  width: 100%;
  max-width: 30%;
  display: inline-block !important;
}

.testimonials--two .testimonials__item-title{
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
}

.testimonials--two .testimonials__item-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 60px;
  min-width: 60px;
  width: 60px;
  height: 60px;
}

.testimonials--two .testimonials__item-toggle-icon {
  font-size: 1.5rem; 
  color: var(--bg-white);
  background-color: transparent;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease ;
}

.testimonials__item--active .testimonials__item-toggle-icon {
  background-color: var(--color-secondary) !important;
  color: var(--color-primary) !important;
}

.testimonials__item-toggle-icon {
  transform: rotate(230deg);
}
.testimonials__item-toggle-icon.rotate {
  transform: rotate(300deg);
}

.testimonials--two .testimonials__desc {
  margin: 7.5rem 0;
}

.testimonials--two .testimonials__item-content {
  display: flex;
  transform: scaleY(0);
  transform-origin: top;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    height 0.5s ease,
    padding 0.5s ease,
    margin-bottom 0.5s ease;
  opacity: 0;
  height: 0;
  padding: 0 2rem;
  margin-bottom: 0;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 2rem;
  border-radius: 10px;
  background-color: var(--bg-white);
  margin-left: 30%;
  visibility: hidden;
}

.testimonials--two .testimonials__item--active .testimonials__item-content {
  transform: scaleY(1);
  opacity: 1;
  height: auto;
  padding: 2rem;
  visibility: visible;
}

.testimonials--two .testimonials__item-img-wrap{
  max-width: 222px;
  min-height: 267px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.testimonials--two .testimonials__item-image{
  width: 100%;
  height: 267px;
  object-fit: cover;
}

.testimonials--two .testimonials__item-text{
  max-width: 450px;
  display: flex;
  gap: 2.2rem;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials--two .testimonials__item-desc{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
}

.testimonials--two .testimonials__item-tags{
  display: flex;
  align-items: center;
  column-gap:40px;
  row-gap: 1rem;
  width: fit-content;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg-white);
  padding: 20px 0;
  padding-left: 20px;
  list-style: square;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.testimonials--two .testimonials__item-tags:first-child {
  margin-left: 20px;
  display: block;
}

.testimonials--two .testimonials__item-images{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================
* 24. Team One Area
============================= */

.team__content{
  position: relative;
}

.team__content::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.6;
}

.team__content-wrap{
  max-width: 1015px;
  margin: 0 auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
  z-index: 2;
}

.team__btn{
  background-color: var(--bg-white);
  text-transform: uppercase;
  margin-top: 2rem;
}

.team__title{
  text-indent: 0 !important;
  font-weight: 600;
  font-size: 3.875rem;
}

.team__desc{
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
  color: var(--bg-white);
}

.team__text-group{
  margin-left: auto;
  margin-right: 0;
  max-width: 445px;
  margin-top: 7.5rem;
}

.team__container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.8rem;
  justify-content: center;
}

.team__member {
  position: relative;
  max-height: 520px;
  overflow: hidden;
  background-color: var(--bg-white);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team__photo-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.team__overlay {
  position: relative;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 2.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team__overlay::before{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 15px;
  background: transparent;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
}

.team__overlay::after{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 15px;
  left: 15px;
  background: transparent;
  border-bottom: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
}

.team__member:hover .team__overlay {
  opacity: 1;
  transform: translateY(0);
}

.team__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.team__name {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-primary);
}

.team__role {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-primary);
}

.team__socials {
  display: flex;
  gap: 15px;
}

.team__social {
  color: var(--color-primary);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
}

.team__social:hover {
  background-color: var(--color-primary);
}
.team__social:hover i{
  color: var(--bg-white);
}

/* Team Member Page */
.team--member-page .team__container{
  padding-top: 0 !important;
}

/* =============================
* 25. Pricing Area
============================= */

.pricing {
  background: var(--bg-white);
  text-align: center;
}

.pricing__title {
  color: var(--color-primary);
  text-indent: 0 !important;
  font-weight: 600;
  margin-bottom: 3.75rem;
}

.pricing__toggle {
  display: inline-flex;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 3.75rem;
  padding: 8px;
  border: 1px solid  rgba(0, 0, 0, 0.10);
}

.pricing__toggle-btn {
  padding: 8px 25px;
  background-color: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.pricing__toggle-btn--active {
  background-color: var(--color-primary);
  color: var(--bg-white);
  border-radius: 30px;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  row-gap: 20px;
  justify-content: center;
  background-color: #F1F1F1;
  padding: 3.75rem;
}

.pricing__card {
  padding: 3.75rem 2.8rem;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s ease;
}

.pricing__card--featured {
  background-color: var(--bg-white);
}

.pricing__plan-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.pricing__price {
  text-indent: 0 !important;
  font-weight: 600;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid  rgba(0, 0, 0, 0.10);
  color: var(--color-primary);
}

.pricing__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #565656;
  margin-bottom: 20px;
  margin-top: 1.5rem;
}

.pricing__btn {
  display: block;
  font-size: 20px;
  text-align: center;
  padding: 12px 20px;
  background-color: transparent;
  color: var(--color-primary);
  background-color: var(--bg-white);
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  margin: 2.5rem 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pricing__btn:hover {
  background-color:var(--color-primary);
  color: var(--bg-white);
}

.pricing__btn--featured {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #565656;
}

.pricing__feature {
  padding-left: 20px;
  margin-bottom: 18px;
  position: relative;
}

.pricing__feature::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 12px;
}


/* =============================
* 26. Insights Area
============================= */

.insights__subtitle-wrap{
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
}

.insights__title {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg,var(--bg-white) 45%, var(--color-secondary) 50%, var(--bg-white) 100%);
  -webkit-background-clip: text;
  text-align: right;
  display: block;
}

.insights__articles{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin-top: 5rem;
  gap: 2rem;
}

.insights__articles_influencers{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 5rem;
  gap: 2rem;
  
}


.insight-card {
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 110px; 
  border-radius: 10px;
 
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-card__image{
  position: relative;
  overflow: hidden;
  margin-top: -12px;
 justify-content: center;
 justify-items: center;
}

.insight-card__image:hover .insight-card__link-arrow{
  opacity: 1;
}

.insight-card__image img {
  width: 50%;
  margin-top: 10px;
  height: auto;
  display: block;
  background-size: cover;
}

.insight-card__link-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.insight-card__content {
  
  padding-top: 20px;
  align-content: center;
  text-align: center;
  align-items: center;
 
  
}

@media(max-width:667px){
  .insight-card__content {
  /* padding: 0.5rem; */
  padding-top: 20px;
  align-content: center;
  text-align: center;
  align-items: center;
  /* background-color: red; */
  
}

.insights__articles_influencers{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  margin-top: 5rem;
  gap: 2rem;
  
}

}


.insight-card__meta {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bg-white);
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  display: block;
}

.insight-card__meta::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--bg-white);
  border-radius: 50%;
}

.insight-card__title-link{
  text-decoration: none;
}

.insight-card__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--bg-white);
  margin-top: -15px;
}

.insight-card__separator{
  width: 100%;
  height: 9px;
}

.insight-card__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -1.5rem;
  margin-left: 150px;
}

@media(max-width:667px){
  .insight-card__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: -1.5rem;
  margin-left: 10px;
}
}

.insight-card__author-img-wrap {
  width: 40px;
  height: 40px;
  background-size: cover;
  overflow: hidden;
  display: inline; 
}


.insight-card__avatar {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background-size: cover;
  
}

.insight-card__name {
  font-size: 18px;
  font-weight: normal;
  color: var(--bg-white);
  font-weight: 600;
  display: block;
}

.insight-card__readtime {
  font-size: 1rem;
  color: var(--gray-base);
  line-height: 1.5;
  font-weight: 500;
} 

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3.7rem;
}

.pagination__list {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.pagination__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--bg-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  background-color: var(--bg-dark); 
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: background 0.3s, color 0.3s;
}

.pagination__link--active {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  pointer-events: none;
}

.pagination__link:hover{
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.pagination__link--arrow svg {
  width: 16px;
  height: 16px;
}

.pagination__link--arrow:hover svg path {
  stroke: var(--color-primary);
  fill: var(--color-primary);
}

/* Blog page */
.insights--blog .insights__articles{
  margin-top: 0;
}

/* =============================
* 27. Hero/About Area
============================= */
.hero__container-custom{
  padding: 0 !important;
}

.hero--about .hero__title{
  text-indent: 400px;
}

.hero--about .hero__actions{
  display: flex;
  justify-content: space-between;
  align-items: center; 
  column-gap: 4rem;
  row-gap: 2rem;
  flex-wrap: wrap;
  margin-top: 7.5rem;
}

.hero--about .hero__desc{
  max-width: 436px;
}

.hero--about .hero__btn--image{
  max-width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.hero--about .hero__btn-img{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.hero--about .hero__img-wrap{
  max-width: 100%;
  max-height: 700px;
}

.hero--about .hero__img{
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* =============================
* 28. About/About Area
============================= */

.about__header{
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  column-gap: 3rem;
}

.about--about .about__title-wrap{
  max-width: 1130px;
}

.about--about .about__images{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin: 7.5rem 0;
}

.about--about .about__image-wrap{
  max-width: 100% !important;
  max-width: 580px;
}

.about--about .about__image-wrap img{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about--about .about__item-title {
  color: var(--bg-white);
}

.about--about .about__item-text {
  color: var(--gray-base);
}

.about--about .about__rating{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3.75rem;
}

.about__avatars{
  display: flex;
  align-items: center;
}

.about--about .avatar:not(:first-child) {
  margin-left: -20px;
}

.about--about .about__rating-text{
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

/* =============================
* 29. Why Choose Area
============================= */

.why-choose__header {
  margin-bottom: 6rem;
}

.why-choose__content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.why-choose__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.why-choose__item {
  padding: 3.75rem 6rem;
}

.why-choose__item:not(:last-child){
  border-bottom:  1px solid var(--border-color);
}

.why-choose__item-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bg-white);
  position: relative;
}

.why-choose__item-title::before{
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  transform: translate(-130%, 0);
}

.why-choose__item-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray-base);
  margin-top: 1.5rem;
  max-width: 850px;
}

.why-choose__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.why-choose__image img {
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
* 30. Awards Area
============================= */

.awards__title {
  text-align: center;
  margin: 0 auto;
}

.awards__table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bg-white);
  margin-top: 7.5rem;
}

.awards__row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 2fr 80px;
  align-items: center;
  border-bottom: 1px solid var(--bg-white);
  padding:2rem 0;
  cursor: pointer;
}

.awards__col {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  z-index: 1;
}

.awards__row:hover .awards__col {
  color: var(--color-secondary);
}

.awards__image {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  z-index: 2;
}

.awards__image {
  max-width: 290px;
  max-height: 370px;
  border-radius: 10px;
  object-fit: cover;
}

.awards__image img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.awards__row:hover .awards__image {
  display: block;
}

/* =============================
* 31. Breadcrumbs Area
============================= */

.breadcrumbs{
  overflow: hidden;
}

.breadcrumbs__nav{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

@media(max-width:667px){
  
.breadcrumbs__nav{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin-left: 65px;
}

}

.separator{
  margin-left: 10px;
}

.events-sec{
  margin-left: 0px;
}
@media(max-width:667px){
  .events-sec{
    margin-left: -22px;
  }
}

.portfolio-sec{
  margin-left: 0px;
}
@media(max-width:667px){
  .portfolio-sec .breadcrumbs__nav{
    margin-left: -10px;
  }
}

@media(max-width:667px){
  .separator{
  margin-left: 80px;
}
}

.breadcrumbs__item{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  text-decoration: none;
}

@media(max-width:667px){
   .breadcrumbs__item{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  /* margin-left: 46px; */
  color: var(--bg-white);
  text-decoration: none;
}
}

.breadcrumbs__item--active{
  color: var(--color-secondary);
}

.breadcrumbs__title{
  text-align: center;
  margin-top: 1.5rem;
}

.breadcrumbs__container-custom{
  min-height: 550px !important;
  position: relative;
}

.breadcrumbs__card .avatar-card{
  bottom: 0;
}

.avatar-btn{
  text-decoration: none;
  color: var(--color-primary);
}

/* =============================
* 32. Video Area
============================= */

.video-area__container{
  padding: 0 !important;
}

.video-area__thumb-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.video-area__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.video-area__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}

.video-area__play-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* =============================
* 33. Blog Details
============================= */

.blog--details .blog__header {
  text-align: center;
  margin-bottom: 40px;
}

.blog--details .blog__category {
  font-size: 18px;
  display: inline-block;
  padding: 10px 30px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.blog--details .blog__info {
  margin-top: 1.5rem;
  color: var(--bg-white);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.blog--details .blog__info span:not(:first-child)::before {
  content: "//";
  margin-right: 15px;
  color: var(--bg-white); 
}

.blog--details .blog__title {
  font-size: 5.6rem;
  font-weight: 600;
  color: var(--bg-white);
  line-height: 1;
  max-width: 1450px;
  margin: 2.2rem 0 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.blog--details .blog__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin: 0 auto;
}

.blog--details .blog__author-img-wrapper {
  display: flex;
  align-items: center;
  width: 66px;
  height: 66px;
}

.blog--details .blog__author-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.blog--details .blog__author-name, .blog__date {
  font-size: 18px;
  color: var(--bg-white);
  font-weight: 600;
}

.blog--details .blog__meta-label {
  display: block;
  font-size: 18px;
  text-align: left;
  color: var(--gray-base);
  margin-bottom: 5px;
  font-weight: 400;
}

.blog--details .blog__image img,
.blog--details .blog__gallery img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 3.75rem;
}

.blog--details .blog__content-area{
  max-width: 920px;
  margin: 0 auto;
}

.blog--details .blog__text {
  margin-bottom:2.2rem;
  line-height: 1.8;
  color: var(--gray-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.blog--details .blog__subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 1.5rem 0;
  color: var(--bg-white);
}
 
.blog--details .blog__gallery {
  display: flex;
  gap: 20px;
}

.blog__gallery--two .blog__gallery-item {
  flex: 1;
}

.blog__gallery--wide img {
  width: 100%;
  display: block;
}

.blog--details .blog__quote {
  background: var(--bg-dark);
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
  margin: 2rem 0;
}

.blog--details .blog__quote-text {
  color: var(--bg-white);
  font-size: 1.5rem;
  line-height: 1.4;
}

.blog--details .blog__tags-share {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.8rem 0;
}

.blog--details .blog__tags-group,
.blog--details .blog__share-group{
  display: flex; 
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog--details .blog__tags-title, 
.blog--details .blog__share-title{
  color: var(--bg-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.blog--details .blog__tags, .blog--details .blog__share{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}


.blog--details .blog__share-icon {
  margin-right: 5px;
  text-decoration: none;
}
 
.blog__share-icon svg circle,
.blog__share-icon svg path {
  transition: all 0.3s ease;
}

.blog__share-icon:hover svg circle {
  fill: var(--color-secondary);
  stroke: var(--color-secondary);
}

.blog--details .blog__tag {
  background: #F4ECEA;
  color: var(--bg-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.blog--details .blog__author-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #282828;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  padding: 3rem 2.6rem;
}

.blog--details .blog__author-img-wrap{
  max-width: 130px;
  max-height: 130px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.blog--details .blog__author-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog--details .blog__author-box-content {
  flex: 1;
}

.blog--details .blog__author-name{
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.blog--details .blog__author-bio{
  color: var(--bg-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}

.blog--details .blog__navigation {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #282828;
  padding: 1.8rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  margin-top: 3.75rem;
}

.blog--details .blog__nav{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-white);
  text-transform: uppercase;
  text-decoration: none;
}

.blog--details .blog__nav--next{
  color: var(--color-secondary);
}

.blog__nav--next svg path {
  stroke: var(--color-secondary);
  fill: var(--color-secondary);
}

.blog__comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 3.75rem !important;
  max-width: 920px;
  margin: 0 auto;
}

.blog--details .blog__input-group {
  display: flex;
  gap: 1.8rem;
}

.blog__input-group .blog__input {
  flex: 1;
  min-width: calc(50% - 10px);  
} 

.blog--details .blog__form-subtitle{
  color: var(--bg-white);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 6px;
}

.blog--details .blog__input,
.blog--details .blog__textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #282828;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  color: var(--bg-white);
}

.blog__input::placeholder,
.blog__textarea::placeholder{
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  color: #AAA;
}

.blog--details .blog__submit{
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* =============================
* 34. Portfolio Details Hero
============================= */

.portfolio-hero--details .portfolio-hero__title{
  text-align: center;
}

.portfolio-hero--details .portfolio-hero__text-content{
  max-width: 1120px;
  margin: 0 auto;
}

.portfolio-hero--details .portfolio-hero__desc {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.portfolio-hero--details .portfolio-hero__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.portfolio-hero--details .portfolio-hero__info-item {
  display: flex;
  justify-content: end;
  border-bottom: 1px solid var(--border-color);
  padding: 1.8rem 0;
}

.portfolio-hero--details .portfolio-hero__info-item:first-child {
  border-top: 1px solid var(--border-color);
}

.portfolio-hero--details .portfolio-hero__info-text{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1.2rem;
  max-width: 900px;
  width: 100%;
}

.portfolio-hero--details .portfolio-hero__info-label {
  font-weight: 400;
  text-align: right;
  font-size:20px;
  color:var(--bg-white);
}

.portfolio-hero--details .portfolio-hero__info-value {
  font-weight: 400;
  text-align: right;
  font-size:20px;
  color:var(--bg-white);
}

.portfolio-hero--details .portfolio-hero__separator {
  margin: 0 0.5rem;
  opacity: 0.5;
  font-size:20px;
  color:var(--bg-white);
  font-weight: 400;
}

.portfolio-hero--details .portfolio-hero__image-wrap {
  display: flex;
  justify-content: center;
  margin-top: 7.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-hero--details .portfolio-hero__image {
  max-width: 100%;
  height: auto;
}

/* =============================
* 35. Portfolio Details
============================= */

.portfolio-details__container{
  padding-top: 0;
}

.portfolio-details__content-wrap, 
.portfolio-details__text-block{
  display: flex;
  justify-content: space-between;
  column-gap: 4rem;
  row-gap: 2rem;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 6rem;
}

.portfolio-details__author-info {
  max-width: 440px;
}

.portfolio-details__author-desc {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray-base);
  margin-bottom: 2rem;
}

.portfolio-details__author-img-wrap{
  max-width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
}

.portfolio-details__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.portfolio-details__author-avatar {
  width: 100%;
  height: 100%;
}

.portfolio-details__author-meta {
  display: flex;
  flex-direction: column;
}

.portfolio-details__author-name {
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details__author-role {
  font-size: 14px;
  color: #777;
}

.portfolio-details__summary {
  margin-bottom: 30px;
}

.portfolio-details__summary-text ,
.portfolio-details__title,
.portfolio-details__text-wrap{
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bg-white);
  max-width: 1000px;
}

.portfolio-details__text{
  color: var(--gray-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2rem;
}

.portfolio-details__cover-image {
  margin-top: 20px;
}

.portfolio-details__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.portfolio-details__section {
  margin-top: 60px;
}

.portfolio-details__text p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.7;
}

.portfolio-details__image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.portfolio-details__image-group img:nth-child(1) {
  grid-column: span 2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =============================
* 36. Services Details Hero
============================= */

.hero--services-details .hero__container{
  padding-bottom: 0 !important;
}

.hero--services-details .hero__title {
  text-align: center;
}

.hero--services-details .hero__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero--services-details .hero__tag {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bg-white);
  padding-left: 20px;
  position: relative;
}

.hero--services-details .hero__tag:not(:first-child)::before {
  position: absolute;
  content: "//";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hero--services-details .hero__slider {
  margin-top: 7.5rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.hero--services-details .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero--services-details .hero__slider .swiper-slide img {
  max-width: 100%;
  min-height: 400px;
  display: block;
  background-size: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
  content: none;
}

.hero__slider-button-prev,
.hero__slider-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero__slider-button-prev {
  left: 10px;
}

.hero__slider-button-next {
  right: 10px;
}

.swiper-button-prev i, .swiper-button-next i{
  font-size: 1.3rem;
  color: var(--color-primary);
}

/* =============================
* 37. Services Details
============================= */

.service-details__container {
  max-width: 920px;
  padding-top: 3.75rem !important;
}

.service-details__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}
 
.service-details__title:not(:first-child){
  margin-top: 3.75rem;
}

.service-details__desc,
.service-details__list {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--gray-base);
}

.service-details__list {
  list-style: decimal;
  padding-left: 15px;
}

.service-details__list-item {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 1em;
}

/* =============================
* 38. Contact Area
============================= */

.contact-info__container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  justify-content: space-between;
  gap: 1.8rem;
  
}

.contact-info__item {
  background:var(--bg-white);
  padding: 2.2rem;
  border-radius: 10px;
}

.contact-info__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.contact-info__text {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-info__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-info__social svg circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.contact-info__social svg circle:hover{
  fill: var(--color-secondary);
  transition: 0.05s ease;
} 

/* Google Map */
.map__container{
  padding-top: 0 !important;
}

.map__location iframe{
  width: 100%;
  min-height: 650px;
  border-radius: 10px;
  filter: grayscale(160%) brightness(100%) contrast(100%);
}

/* =============================
* 39. Video Slider
============================= */
.video-slider {
  max-width: 100%;
}

.video-slider .swiper {
  width: 100%;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}

.video-slider__wrapper,
.video-slider__slide {
  width: 100%;
}

.video-slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-slider__inner {
  width: 100%;
  max-height: 700px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-slider__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button */
.video-slider__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: none;
  cursor: pointer;
  user-select: none;
  background: transparent;
}

.video-slider__nav {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  gap: 30px;
  z-index: 5;
}

.video-slider__nav-btn {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
  transition: 0.3s ease-in;
}

.video-slider__nav-btn--prev {
  color: var(--bg-white);
  background-color: transparent;
  border: 1px solid var(--bg-white);
}

.video-slider__nav-btn--next {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.video-slider__nav-btn:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
}

.video-slider__nav-btn:hover svg path {
  stroke: var(--color-primary);
}

/* =============================
* 40. Error Area
============================= */

.error__container{
  display: grid;
  place-items: center;
  gap: 2rem;
}


/* =============================
 * 41. Responsive Design
============================= */

@media (max-width:1730px) {
  /* Hero Home One */
  .hero--one .hero__content-area{
    flex-wrap: wrap;
  }
}

@media (max-width:1710px) {

  /* Hero / Home Two */
  .hero--two .hero__title,.hero--two .hero__subtitle{
    font-size: 9rem;
  }

  .hero--two .hero__title-text-small{
    font-size: 4rem;
  }

  .hero--two .hero__image-wrap{
    max-width: 300px;
    max-height: 300px;
  }

  /* Services / Home One */
  .services--one .services__item-text,.services--one .services__item-tags {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width:1600px) {
  /* Hero / Home Two */
  .hero--two .hero__title,.hero--two .hero__subtitle{
    font-size: 7rem;
  }

  .hero--two .hero__title-text-small{
    font-size: 3.5rem;
  }

  .hero--two .hero__image-wrap{
    max-width: 250px;
    max-height: 250px;
  }

  .hero--two .hero__video-thumb{
    max-width: 360px;
  }

  /* Hero / Home Two */
  .about--two .about__image {
    z-index: 1;
    opacity: 0.4;
  }

  .about--one .about__testimonial-wrap{
    flex-wrap: wrap;
  }

  /* Process */
  .process__content-area{
    grid-template-columns: 1fr;
    gap: 7rem;
  }

  /* Recent Work / Home One */
  .title-gradient,.footer__brand-text{
    font-size: 8rem;
  }

  .recent-works__title-wrap {
    margin-bottom: 4rem;
  }

  .blog__grid{
    grid-template-columns: repeat(2,1fr);
  }

  .blog__item:last-child {
    grid-column: auto;
  }

  /* Portfolio / Home Two */
  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing__card{
    padding: 2.5rem 2rem ;
  }

  /* Why Choose */
  .why-choose__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1350px) {
   /* Title Wrap Flex */
  .title-wrap__flex{
    flex-direction: column;
    align-items: start;
  }
  
  .title-wrap__flex .btn-arrow{
    margin-top: 1rem;
  }

  /* Blog */
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5rem;
  }

  .blog__item:last-child {
    grid-column: span 2; 
  }

  /* Pricing */
  .pricing__cards{
    grid-template-columns: repeat(2,1fr);
  }

  /* Services Two */
  .services__tab{
    font-size: 3rem;
  }

  .services--two .services__tabs {
    gap: 2.5rem;
  }

  .services--two .services__content{
    margin-left: 2rem;
  }

  .services--two .services__content{
    padding: 2rem;
  }
}

@media (max-width:1250px) {
  /* TItle */
  .title {
    text-indent: 300px;
  }

  /* Title Lg */
  .title-lg{
    font-size: 4.5rem;
  }

  /* Header Area */
  .header--two .header__menu-btn{
    display: none;
  }

  /* Hero Home One */
  .hero--one .hero__tagline, .hero--one .hero__bottom{
    margin-left: 0;
  }

  .hero--one .hero__title{
    font-size: 8rem;
  }

  .hero--two .hero__title-wrap{
    gap: 3rem;
  }

  .hero__video-icon-wrap{
    width: 130px;
    height: 130px;
  }

  .hero--one .hero__bottom {
    gap: 3rem;
  }

  /* Hero / Home Two */
  .hero--two .hero__title, 
  .hero--two .hero__subtitle{
      font-size: 6rem;
  }

  .hero--two .hero__image-wrap {
    max-width: 200px;
    max-height: 200px;
  }

  .hero--two .hero__subtitle-wrap {
    margin-top: 3rem;
  }

  /* Services / Home One */
  .services--one .services__item-title {
    font-size: 4rem;
  }

  .services--one .services__item-toggle-wrap {
    font-size: 1rem;
    padding: 12px;
  }

  .services--one .services__item-toggle-icon{
    font-size: 1.5rem;
  }

  /* Services Two */
  .services--two .services__box{
    grid-template-columns: 1fr;
  }

  .services--two .services__contents {
    border-top: 1px solid var(--color-primary);
    margin-top: 4rem;
    padding-top: 4rem;
  }

  .services--two .services__contents{
    border-left: none;
  }

  .services--two .services__content{
    margin-left: auto;
    margin-right: auto;
  }

  /* Recent Work / Home One */
  .title-gradient, .footer__brand-text{
    font-size: 6rem;
  }

  .work-card__tags{
    display: none;
  }

  /* Brand Logos / Home One */
  .brand-logos__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .brand-logos__item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .brand-logos__item:nth-child(2) { grid-column: 3; grid-row: 1; }
  .brand-logos__item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .brand-logos__item:nth-child(4) { grid-column: 4; grid-row: 2; }
  .brand-logos__item:nth-child(5) { grid-column: 1; grid-row: 3; }
  .brand-logos__item:nth-child(6) { grid-column: 3; grid-row: 3; }

  /* Faq */
  .faq__question-text {
    font-size: 1.5rem;
  }

  /* Insights Articles */
  .insights__articles{
    grid-template-columns: repeat(2,1fr);
  }

  /* Team */
  .team__overlay {
    padding: 1.5rem !important;
  }

  .team__socials{
    gap: 10px;
  }

  .team__social {
    width: 30px;
    height: 30px;
  }

  /* Testimonials Two */
  .testimonials--two .testimonials__item-toggle-wrap {
    font-size: 1rem;
    padding: 12px;
  }

  .testimonials--two .testimonials__item-toggle-icon{
    font-size: 1.5rem;
  }

  /* Hero / About */
  .hero--about .hero__title{
    text-indent: 300px;
  }

  /* Footer */
  .footer__contact{
    grid-template-columns: 1fr;
  }
}

@media (max-width:1190px) {
  /* Header One */
  .header__logo {
    max-width: 170px;
  }

  .menu {
    gap: 20px;
  }

  /* Testimonials Area One */
  .testimonials__title-wrap{
    margin-bottom: 10rem;
  }

  .testimonials--one .testimonials__list{
    grid-template-columns: repeat(3,1fr);
  }
  
  /* Last card - shifted down */
  .testimonial-card:last-child {
    transform: translateY(0px);
  }

  /* Contact */
  .contact-info__container{
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .awards__image img {
    width: 150px;
  }

  /* Video Slider */
  .video-slider .swiper {
    max-height: 400px;
  }

  .custom-nav button {
    width: 120px;
    height: 120px;
  }
}

@media (max-width:992px) {
  /* Container */
  .container{
    padding-left: 40px;
    padding-top: 3.75rem;
    padding-right: 40px;
    padding-bottom: 3.75rem;
  }

  /* TItle */
  .title {
    text-indent: 200px;
    font-size: 2.5rem;
  }

  /* Header Home One */
  .header__container {
    max-height: 70px;
    min-height: 70px;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__nav{
    display: none;
  }

  .header__menu-btn{
    width: 150px;
    height: 70px;
    
  }

  .menu{
    display: none;
  }

  /* Responsive Menu */
  .mobile-menu__list{
    display: block;
  }

  .mobile-menu .menu-item-has-children > a::after:not(:empty) {
    content: '+';
  }

  /* Header / Home Two */
  .header--two .header__container{
    padding-right: 40px;
  }

  .header--two .header__toggle-wrap{
    display: grid;
  }

  /* Hero Home One */
  .hero--one .hero__bottom {
    flex-wrap: wrap;
  }

  /* Hero / Home Two */
  .hero--two .hero__title, .hero--two .hero__subtitle {
    font-size: 5rem;
  }

  .hero--two .hero__container-custom{
    min-height: 600px;
  }

  /* About / Home One */
  .about--one .about__subtitle-wrap {
    width: 300px;
  }

  .about--one .about__testimonial-wrap {
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }

  .about--one .about__content-wrap {
   flex-wrap: wrap;
  }

  /* Fact */
  .fact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact__item{
    padding: 3.5rem;
  }

  .fact__item:nth-child(even) {
    padding-top: 7rem;
  }

  .fact__item:nth-child(odd)::before {
    top: 75px;
  }

  .fact__item:nth-child(even)::before {
    top: 135px;
  }

  .fact__year, .fact__number{
    font-size: 3rem;
  }

  .fact__item:last-child {
    border-right: none;
}

  /* Services / Home One */
  .services--one .services__item-title {
    font-size: 3rem;
  }

  .services--one .services__item-index {
    max-width: 20%;
  }

  .services--one .services__item-content{
    margin-left: 20%;
  }

  /* Process */
  .process__steps {
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  
  /* Recent Work / Home One */
  .title-gradient,.footer__brand-text{
    font-size: 5rem;
  }

  .recent-works__title-wrap {
    margin-bottom: 3rem;
  }

  .work-card__title{
    font-size: 1.5rem;
  }

  .work-card{
    padding: 1.5rem;
  }

  .work-card__year {
    padding: 4px 16px;
  }

  /* Brand Logos / Home One */
  .brand-logos__title{
    font-size: 1.5rem;
  }

  .brand-logos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-logos__item {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* Testimonials One */
  .testimonials--one .testimonials__list {
    grid-template-columns: repeat(2,1fr);
  }

  .testimonial-card{
    padding: 1.8rem;
  }

  .testimonial-card:last-child {
    transform: translateY(0);
  }
  
  /* Testimonials Two */
  .testimonials--two .testimonials__item-title {
    font-size: 3rem;
  }

  .testimonials--two .testimonials__item-index {
    max-width: 20%;
  }

  .testimonials--two .testimonials__item-content{
    margin-left: 20%;
  }

  .testimonials--two .testimonials__item-text{
    max-width: 100%;
  }


  /* Faq */
  .faq__question-inner{
    width: 100%;
  }

  .faq__question {
    flex-direction: column;
    align-items: start;
  }

  /* Blog */
  .blog__item{
    padding: 1rem;
  }

  .blog__image-wrapper{
    max-width: 100%;
  }

  .blog__title{
    font-size: 2rem;
  }

  /* Insights Articles */
  .insight-card__title{
    font-size: 1.5rem;
  }

  /* Team */
  .team__text-group{
    margin-top: 3.5rem;
  }
  
  .team__container {
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }

  .team__name {
    font-size: 1.5rem;
  }

  /* Pricing */
  .pricing__cards {
    padding: 3.75rem 1rem;
  }

  /* Hero / About */
  .hero--about .hero__title{
    text-indent: 200px;
  }

  /* About / About page */
  .about--about .about__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 4.5rem 0;
  }

  /* Why Choose */
  .why-choose__item {
    padding: 2.5rem 4rem;
  }

  .why-choose__item-title{
    font-size: 1.8rem;
  }

  /* Portfolio Hero Details */
   .portfolio-hero--details .portfolio-hero__title {
    font-size: 2.5rem;
  }

  .portfolio-hero--details .portfolio-hero__info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .portfolio-hero--details .portfolio-hero__info-value {
    text-align: left;
  }

  /* Portfolio Details */
  .portfolio-details__summary-text ,
  .portfolio-details__title,
  .portfolio-details__text-wrap{
    font-size: 1.5rem;
  }

  .portfolio-details__content-wrap, .portfolio-details__text-block {
    margin-bottom: 3rem;
  }

  .portfolio-details__image-group {
    gap: 10px;
  }

  /* Services Details */
  .service-details__title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
    
  .service-details__title:not(:first-child){
    margin-top: 2.5rem;
  }

  .service-details__desc,
  .service-details__list {
    font-size: 16px;
  }

  .hero--services-details .hero__slider{
    margin-top: 3.5rem;
  }

  /* Blog Details */
  .blog--details .blog__title{
    font-size: 4rem;
  }

  /* Contact */
  .contact-info__container{
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }

  /* Footer */
  .footer__email.title{
    margin: 4rem 0;
  }

  /* Footer / Home Two */
  .footer--two .footer__top{
    row-gap: 4rem;
  }

  .footer--two .footer__columns {
    grid-template-columns: repeat(3,1fr);
    width: 100%;
    row-gap: 4rem;
  }

  .footer--two .footer__heading{
    margin-bottom: 2.5rem;
  }
}

@media (max-width:768px) {
  /* Container */
  .container{
    padding-left: 20px;
    padding-top: 5rem;
    padding-right: 20px;
    padding-bottom: 5rem;
  }

  /* Title */
  .title{
    font-size: 2rem;
    text-indent: 50px;
  }

  /* Title Lg */
  .title-lg{
    font-size: 3rem;
  }

  /* Header Home One */
  .header__container {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__logo {
    max-width: 130px;
  }

  /* Header / Two */
  .header--two .header__container{
    padding-right: 20px;
  }

  .header__content-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 1rem;
  }

  /* Hero / One */
  .hero--one .hero__header-group {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .hero--one .hero__video-icon-wrap {
    max-width: 120px;
    max-height: 120px;
  }

  .hero--one .hero__title {
    font-size: 6rem;
  }

  .hero--one .hero__image--left {
    min-width: 100%;
    max-width: 420px;
  }
  .hero--one .hero__tagline{
    margin-top: 1rem;
  }

  /* Hero / Two */
  .hero--two .hero__container-custom{
    min-height: 500px;
  }

  .hero--two .hero__image-wrap{
    display: none;
  }

  .hero--two .hero__card, .avatar-card {
      padding: 2rem;
      text-align: left;
  }

  .hero--two .hero__stat, .avatar-stat {
    font-size: 2rem;
  }

  .hero--two .hero__card,.avatar-card {
    right: 20px;
  }

  .hero--two .hero__title-text-small{
    text-align: left;
  }

  /* About / Home One */
  .about--one .about__subtitle-wrap {
    float: none;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .about--one .about__hand {
    right: -120px;
    bottom: -180px;
  }

   /* Fact */
  .fact__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Services / Home One */
  .services--one .services__item-title {
    font-size: 2rem;
  }

  .services--one .services__item-toggle-wrap {
    height: 40px;
    width: 40px;
    font-size: 10px;
  }

  .services--one .services__item-header {
    flex-wrap: wrap;
  }

  .services--one .services__item-content{
    margin-left: 0;
  }

  /* Service Two */
  .services--two .services__title{
    margin: 4.5rem 0;
  }

  /* Testimonial One */
  .about--one .about__testimonial {
    flex-wrap: wrap;
  }

  .services__box{
    padding: 6rem 2rem;
  }

   .services--two .services__tabs {
    gap: 2rem;
  }

  /* Recent Work / Home One */
  .recent-works__grid {
    grid-template-columns: 1fr;
  }

  .title-gradient{
    font-size: 4rem;
    background: linear-gradient(160deg, #FFFA00, #fff, #fff, #FFFA00);
    -webkit-background-clip: text;
  }

  .recent-work__filters{
    margin-bottom: 2rem;
  }

  .recent-work__filter-item{
    font-size: 1.5rem;
  }

  .work-card{
    padding: 1rem;
  }

  .work-card__content {
    margin-top: 1rem;
  }

  /* Portfolio Hero Details */
  .portfolio-hero--details .portfolio-hero {
      padding: 4rem 0;
    }

  .portfolio-hero--details .portfolio-hero__title {
    font-size: 2rem;
  }

  .portfolio-hero--details .portfolio-hero__image-wrap {
    padding: 3rem 1.5rem;
  }

  .portfolio-details__author {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
    
  /* Portfolio / Home Two */
  .portfolio--one .portfolio__title{
    margin-bottom: 4.5rem;
  }

  .portfolio__grid{
    margin-top: 4.5rem;
  }

  .portfolio__item {
    padding: 2rem;
  }

  .portfolio__item-title{
    font-size: 1.5rem;
  }

  .portfolio__tag{
    display: none;
  }

  
  /* Brand Logos / Home One */
  .brand-logos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logos__item {
    height: 100px;
    padding: 2rem;
  }

  /* Testimonials Area One */
  .testimonials__list {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card:last-child {
    transform: none;
    height: auto;
  }

  /* Testimonials Two */
  .testimonials--two .testimonials__item-title {
    font-size: 2rem;
  }

  .testimonials--two .testimonials__list{
    margin-top: 4.5rem;
  }

  .testimonials--two .testimonials__item-toggle-wrap {
    height: 40px;
    width: 40px;
    font-size: 10px;
  }

  .testimonials--two .testimonials__item-header {
    flex-wrap: wrap;
  }

  .testimonials--two .testimonials__item-content{
    margin-left: 0;
  }

  .testimonials--two .testimonials__item-desc{
    font-size: 1.3rem;
  }

  /* Faq */
  .faq__container {
    flex-direction: column;
  }

  .faq__item--active{
    padding: 1.5rem;
  }

  .faq__question-text {
    font-size: 1.4rem;
  }

  .faq__sidebar,
  .faq__content {
    flex: 1 1 100%;
  }

  /* Faq */
  .blog__grid {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .blog__item:last-child {
    grid-column: span 1; /* Only one column exists */
  }

  .blog__title{
    font-size: 1.5rem;
  }

  .blog__content {
    gap: 1rem;
    margin-top: 1.7rem;
  }

  /* Insights Articles */
  .insights__articles{
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  /* Team */
  .team__container {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing__cards{
    grid-template-columns: 1fr;
  }

  /* Hero / About */
  .hero--about .hero__title{
    text-indent: 0;
  }

  .hero--about .hero__actions{
    margin-top: 4.5rem;
  }

  /* About / About Page */
  .about--about .about__images{
    grid-template-columns: 1fr;
  }

  /* Why Choose */
  .why-choose__header{
    margin-bottom: 5rem;
  }

  .why-choose__item {
    padding-right: 1rem;
  }

  .why-choose__item-title{
    font-size: 1.5rem;
  }

  /* Awards */
  .awards__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .awards__image {
    position: static;
    transform: none;
    display: none;
    margin-top: 1rem;
    text-align: center;
  }

  .awards__row:hover .awards__image {
    display: block;
  }

  .awards__image img {
    width: 100%;
    max-width: 300px;
  }

  /* Blog Details */
  .blog--details .blog__title{
    font-size: 3rem;
  }

  .blog--details .blog__gallery {
    flex-direction: column;
    align-items: center;
  }

  .blog--details .blog__navigation {
    gap: 10px;
    flex-wrap: wrap;
  }

  .blog--details .blog__tags-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog--details .blog__author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.6rem;
  }

  .blog__input-group {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .blog__input-group .blog__input {
    min-width: 100%;
  }

  /* Contact */
  .contact-info__container{
    grid-template-columns: 1fr;
  }

  .contact-info__item {
    padding: 1.5rem;
  }

  /* Video Slider */
  .video-slider .swiper {
    max-height: 400px;
  }

  .video-slider__nav-btn {
    width: 100px;
    height: 100px;
    font-size: 10px;
  }

  /* Footer */
  .footer__form{
    padding: 2rem;
  }

  /* Footer / Home Two */
  .footer--two .footer__columns {
    grid-template-columns: repeat(2,1fr);
  }

  .footer__brand-text{
    font-size: 4rem;
  }
}

@media (max-width:600px) {
  .btn-circle__wrapper {
    width: 200px;
    height: 200px;
  }

  .btn-circle__wrapper a {
    width: 70%;
    font-size: 14px;
  }

  .btn-arrow__text {
    padding: 0 30px;
    font-size: 14px;
    line-height: 1.5;
    height: 45px;
  }

  .btn-arrow::after, .btn-arrow__black::after {
    right: -45px;
    display: grid;
    height: 45px;
    width: 45px;
    font-size: 1.2rem;
  }

  /* Hero / Home Two */
  .hero--two  .hero__title {
    font-size: 4rem;
  }

  .hero--two .hero__subtitle, 
  .hero--two .hero__title-text-small {
    font-size: 2rem;
  }

  .hero--two  .hero__title-text-small {
    text-align: left;
    margin-top: 10px;
  }

  .hero--two .hero__subtitle-wrap{
    gap: 1rem;
  }

  .hero--two .hero__subtitle-wrap {
    margin-top: 2rem;
  } 

  .hero--two .hero__subtitle-wrap {
    gap: 1rem;
  }

  .hero--two .hero__card{
    padding: 1rem;
  }

  .hero--two .hero__avatar {
    width: 36px;
    height: 36px;
  }

  .hero--two .hero__stat {
    font-size: 1.5rem;
  }

  .hero--two .hero__text{
    font-size: 14px;
  }

  .hero--two .hero__btn {
    padding: 9px 1.2rem;
  }

  .hero--two .hero__video-thumb {
    max-width: 280px;
  }

  /* Portfolio / Home Two */
  .portfolio__year-tag{
    position: unset;
    transform: none;
    margin-top: 10px;
  }

   /* Process */
  .process__steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* Recent Work / Home One */
  .brand-logos__title{
    margin-bottom: 3rem;
  }

  .title-gradient{
    font-size: 3rem;
  }

  .work-card__button{
    width: 90px;
    height: 90px;
  }

  /* Testimonials / Home One */
  .testimonials--one .testimonials__list {
    grid-template-columns: 1fr;
  }

  /* Services Two */
  .services--two .services__content{
    padding: 20px;
  }

  /* Portfolio Details */
  .portfolio-details__image-group {
    grid-template-columns: 1fr;
  }

  .portfolio-details__image-group img:nth-child(1) {
    grid-column: auto;
  }

  /* Video Area */
  .video-area__play-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  /* Services Details */
  .hero--services-details .hero__slider .swiper-slide img {
    min-height: 350px;
  }

  .hero__slider-button-prev, .hero__slider-button-next{
    top: 50%;
    height: 40px;
    width: 40px;
  }

  .swiper-button-prev i, .swiper-button-next i{
    font-size: 16px;
  }

  /* Footer */
  /* .footer__form{
    padding: 2rem 1.2rem;
  }

  .footer__input, .footer__textarea {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
  }

  .footer__brand-text{
    margin-bottom: 1rem;
    font-size: 3rem;
  } */

  /* Footer / Home Two */
  /* .footer--two .footer__columns {
    grid-template-columns: 1fr;
  }
} */




@media (max-width: 768px) {
  /* Footer form padding stays */
  .footer__form {
    padding: 2rem 1.2rem;
  }

  /* Inputs & textarea spacing */
  .footer__input, 
  .footer__textarea {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  /* Brand text / email adjustments */
  .footer__brand-text,
  .footer__email {
    font-size: clamp(16px, 5vw, 24px); /* Responsive font size */
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }

  /* Footer layout for mobile */
  .footer__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }

  /* Social links wrap */
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Footer / Home Two columns */
  .footer--two .footer__columns {
    grid-template-columns: 1fr;
  }
   .footer__subtitle-wrap {
        margin-top: 45px;
    }
}

@media (max-width: 480px) {
  .portfolio-hero--details .portfolio-hero__desc {
    font-size: 0.95rem;
  }

  .portfolio-hero--details .portfolio-hero__title {
    font-size: 1.75rem;
  }

  .portfolio-hero--details .portfolio-hero__image-wrap {
    padding: 2rem 1rem;
  }

  /* Video Slider */
  .video-slider__nav-btn {
    width: 90px;
    height: 90px;
    font-size: 10px;
  }
}

@media (max-width:430px) {
  /* Hero / Home Two */
  .hero--two .hero__title{
    font-size: 3rem;
  }

  /* Services Two */
  .services--two .services__tabs{
    gap: 1.5rem;
  }
  .services--two .services__tab{
    font-size: 2rem;
  }

  /* Testimonials Two */
  .testimonials--two .testimonials__item-img-wrap{
    min-height: 220px;
  }

  .testimonials--two .testimonials__item-image{
    height: 220px;
  }

  /* Pricing */
  .pricing__btn {
    font-size: 16px;
    padding: 8px 20px;
  }
}

.influencer-card{
  background: var(--bg-dark);
 
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 92px; 
  width: 360px;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #ffbe00;
  cursor: pointer;
 
}

.influencer-card:hover {
  transform: scale(1.05);
  background-color: #1f1f1f;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); 
  border-color: #ffdd57;
} 

@media ( max-width :667px) {
	.logo__img {
		max-width: 100px;
		
		height: auto;
	}
	.header__logo {
		margin-left: -25px;
		margin-top: 20px;
		
	}
}

}






/* Custom styles for the page */
         /* body {
            font-family: 'Inter', sans-serif;
            background-color: #111827; A dark gray instead of pure black for better aesthetics
        }  */

        /* Animation classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom focus style for inputs */
        .form-input {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #4b5563; /* gray-600 */
            color: #ffffff; /* Changed to white */
            padding: 0.5rem 0;
            transition: border-color 0.3s ease-in-out;
            width: 100%;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: #f97316; /* orange-500 */
        }

        .form-input::placeholder {
            color: #6b7280; /* gray-500 */
        }

        .about1{
          margin-top: 0px;
        }

        @media(max-width:667px){
          .about1{
            margin-top:300px;
          }
        }

        .services-sec{
          margin-left: 0px;
        }
        .influencer-sec{
          margin-left: 0px;
        }
        .influencer-s{
          margin-top: -100px;
        }
        .event-s{
          margin-left: 0px;
        }
        .contact-s{
          margin-left: 0px;
        }
        .brands-s{
          margin-left: 0px;
        }
        .img1{
          margin-top: 0px;
        }
        
        @media(max-width:667px){
          .service-sec{
            margin-left:-20px;
          }
           .influencer-sec{
          margin-left: -10px;
        }
        .event-s{
          margin-left: 7px;
        }
       .brands-s{
          margin-left: 170px;
        }
      }
      @media(max-width:667px){
        .img1{
          margin-top: 0px;
        }
      }
      @media (min-width: 992px) {
  .btn-w {
    display: none !important;
  }
}
        
        
        