:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-primary-dark: #051622;
  --color-secondary-dark: #072031;
  --color-light-blue: #ddebf9;
  --color-light-blue-transparent: rgba(221, 235, 249, 0.5);
  --color-text-light: rgba(255, 255, 255, 0.6);
  --color-text-medium: rgba(0, 0, 0, 0.5);
  --border-color-light: rgba(255, 255, 255, 0.5);
  --border-color-dark: rgba(0, 0, 0, 0.3);
  --font-main: "Instrument Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-black);
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 60px;
}

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

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeZoom 0.7s ease-out forwards;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

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

.btn-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}

.btn-dark:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--color-white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn-outline-dark:hover {
  background-color: var(--color-black);
  color: var(--color-white) !important;
}

.hamburger_dark span {
  background: #000 !important;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.section-subtitle {
  font-size: 16px !important;
  font-weight: 100;
  line-height: 1.2 !important;
}

.section-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .profile-container {
    padding: 0 58px !important;
}
.ProfileHeading p {
    font-size: 16px !important;
}
.profile-image {
    height: 540px !important;
}

.Team_Detail ul li {
    font-size: 16px !important;
}

}
@media (max-width: 1200px) {
  .section-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .btn {
    padding: 18px;
    font-size: 18px;
    height: auto;
  }
}

/* CSS for section section:Hero */
.hero-section {
  background-image: url("../images/Frame\ 340.png");
  background-size: cover;
  background-position: top;
  min-height: 102vh;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hero-container {
    justify-content: center;
  }
}

.main-header .dark a {
  color: #000;
}

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

  .search-container input,
  .search-btn {
    font-size: 14px !important;
  }
  .stats-container {
  align-items: center !important;
}
}

/* YOUR ORIGINAL CSS (unchanged) */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -190px;
  padding: 20px 0 100px;
  position: relative;
  z-index: 99;
}

.logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 60px;
  color: #fff;
}

.nav-links a {
  font-size: 16px;
  font-weight: 400;
}

.nav-links img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* Hamburger (right side) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 5px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;
  background: #000;
  padding: 40px 25px;
  transition: 0.35s ease;
  z-index: 99999;
}

.mobile-menu.active {
  left: 0;
}

.close-mobile {
  font-size: 50px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.dark .nav-links a::after {
  background: #000;
}

/* Underline Element */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover Effect */
.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE CLASS (Laravel optimized) */
.nav-links a.active::after {
  width: 100%;
}

/* Optional: Active color */
.nav-links a.active {
  color: #fff !important;
}

.mobile-nav .mobile-links a {
  position: relative;
  display: block;
  padding: 12px 0;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

/* Mobile underline element */
.mobile-nav .mobile-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover + Active for mobile */
.mobile-nav .mobile-links a:hover::after,
.mobile-nav .mobile-links a.active::after {
  width: 100%;
}

/* Search Popup â€” zoom animation */
.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition: 0.45s ease;
  z-index: 9999;
}

.search-popup.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.close-search {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}

.search-container {
  width: 90%;
  max-width: 900px;
  /* Bigger search bar */
  display: flex;
  align-items: end;
  gap: 20px;
}

.search-container input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid #ffffff70;
  padding: 25px 10px;
  font-size: 48px;
  /* Bigger text */
  color: white;
  outline: none;
}

.search-btn {
  background: transparent;
  border-bottom: 1px solid #fff;
  padding: 16px 34px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

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

/* Responsive */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .logo img {
    width: 320px;
    height: auto;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .main-header .row{
      align-items: center;
  }
}


@media screen and (max-width: 1024px) and (min-width: 951px){
    .industry-card h3{
        font-size: 25px !important;
    }
}

@media screen and (max-width: 1200px){
    .section-subtitle{
        font-size: 20px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 768px){
    .footer_three{
        margin-top: -200px;
    }
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
}

.hero-content {
  /* y: 1004 - (680+74) */
  max-width: 1750px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hero-container{
    justify-content: center;
}

.hero-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeInSimple 1s ease-out forwards;
}

.hero-subtitle {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInSimple 1.8s ease-out forwards;
  /* slight delay */
}

@keyframes fadeInSimple {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

.scroll-down {
  position: absolute;
  bottom: 24px;
  /* y: 1680 - 1656 */
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

.dark .nav-links a.active{
    color: #000 !important;
}

.scroll-down img {
  width: 22px;
  height: 24px;
  transform: rotate(0deg);
}

@media (max-width: 1200px) {

  .main-nav,
  .nav-links {
    gap: 30px;
  }

  .hero-content {
    margin-top: 150px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    margin-top: 100px;
    gap: 30px;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
  
  .container {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
  
  .main-header{
      padding: 20px 0 !important;
  }
  
  .industry-card h3{
      font-size: 24px !important;
  }
  
  .logo img {
    width: 200px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .main-header {
    gap: 20px;
    padding: 20px;
  }

  .main-nav {
    flex-direction: row;
  }
}

/* CSS for section section:Intro */
.intro-section {
  padding: 100px 0;
}

.container {
  max-width: 1750px;
  margin: auto;
}

.intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.intro-text-block {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 850px;
  flex-shrink: 0;
}

.intro-buttons {
  display: flex;
  gap: 40px;
  /* margin-top: 54px; 2103 - (1914+154) - 35 */
}

.intro-description {
  /* margin-top: 15px; */
  max-width: 635px;
  /* padding-top: 61.5px; 1921.5 - 1860 */
  /* font-size: 30px; */
  margin-right: 150px;
}

.intro-description p {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
}

.intro-text-block h1,
.intro-text-block h2,
.intro-text-block h3 {
  opacity: 0;
  animation: fadeLeft 0.8s ease-out forwards;
}

.intro-description p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  animation: fadeRight 0.9s ease-out forwards;
}

.intro-buttons .btn {
  opacity: 0;
  animation: fadeZoom 0.7s ease-out forwards;
  animation-delay: 0.3s;
  /* small delay looks nice */
}

/* Fade from left */
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

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

/* Fade from right */
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* Fade + Zoom */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

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

@media (max-width: 1200px) {
  .intro-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .intro-text-block {
    align-items: center;
  }

  .intro-description {
    padding-top: 0;
    max-width: 80%;
  }

  .intro-description p {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 80px 0;
  }

  .intro-buttons {
    flex-direction: row;
    gap: 20px;
  }
  .stats-section {
  padding: 85px 10px !important;
}
}

/* CSS for section section:Stats */
.stats-section {
  background-color: var(--color-light-blue);
  padding: 85px 60px;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  /* gap: 30px; */
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
    gap: 50px;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-label {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .stats-container {
    flex-direction: column;
    gap: 50px;
    align-items: center !important;
  }
  .container{
      padding-left: 40px;
      padding-right: 40px;
  }
}

/* CSS for section section:WhomWeAdvise */
.whom-we-advise-section {
  padding: 140px 0;
}

.advise-container {
  max-width: 1750px;
  margin: auto;
}

.whom-we-advise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 71px;
}

.whom-we-advise-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 977px;
}

.whom-we-advise-text .description {
  font-size: 20px;
  line-height: 1.5;
  max-width: 705px;
  font-weight: 450;
}

.whom-we-advise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.client-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 42px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.client-card h3 {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .whom-we-advise-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
  }

  .whom-we-advise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .whom-we-advise-section {
    padding: 80px 0;
  }
}

/* CSS for section section:Industries */
/* .industries-section {
    padding: 140px 0;
} */
.industries-container {
  max-width: 1750px;
  margin: auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.industry-card {
  background-color: var(--color-light-blue-transparent);
  padding: 53px 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.industry-card h3 {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.industry-card p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 450;
}

.industries-footer {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 80px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Services
.services-section {
    padding: 140px 0;
} */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-color-dark);
  width: 90%;
  margin: 110px auto 140px;
}

.services-container {
  display: flex;
  gap: 20px;
  margin: auto;
  margin-top: 120px;
  justify-content: space-between;
}

.services-info {
  flex: 1;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin: 16px 0;
}

.services-info p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 705px;
}

.accordion {
  flex: 1;
  max-width: 756px;
  display: flex;
  flex-direction: column;
  margin-top: -25px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-black);
  transition: .4s all ease-in-out !important;
}

/* .accordion-item:first-of-type {
    border-top: 1px solid var(--color-black);
} */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 37px 0;
  /* (79-38)/2 + some adjustment */
  cursor: pointer;
  list-style: none;
  font-size: 32px;
  font-weight: 500;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.toggle-icon {
  width: 12px;
  height: 22px;
  transition: transform 0.3s ease;
  transition: .4s all ease-in-out !important;
}

.accordion-item[open] .toggle-icon {
  transform: rotate(-90deg);
  transition: .4s all ease-in-out !important;
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}

details[open] .accordion-content {
    max-height: 200px; /* adjust based on content */
}


.accordion-content p {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 43px;
}

@media (max-width: 1200px) {
  .services-container {
    flex-direction: column;
    gap: 50px;
  }

  .services-info {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .accordion {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0 !important;
  }

  .section-divider {
    margin-bottom: 80px;
  }

  .accordion-header {
    font-size: 24px;
  }
  .team-section{
      background-position: 550px !important;
  }
  .step-number{
      line-height: 0 !important;
  }
}

/* CSS for section section:Team */
.team-section {
  background-image: linear-gradient(to right,
      rgba(36, 36, 36, 0.7),
      rgba(0, 0, 0, 0)),
    url("../images/copy.png");
  background-size: cover;
  background-position: center;
  padding: 144px 0;
  color: var(--color-white);
  /*margin-top: 150px;*/
}

.team-container {
  display: flex;
  max-width: 1750px;
  margin: auto;
}

.team-content {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.team-content .section-title {
  color: var(--color-white);
}

.team-content p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 705px;
}

@media (max-width: 992px) {
  .team-section {
    padding: 100px 0;
    background-image: linear-gradient(to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4)),
      url("../images/c0432029cece49164c998f7bbe7552ae8d80699c.png");
  }

  .team-content {
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
}

/* CSS for section section:Process */
.process-section {
  padding: 0px 0 100px;
}

.process-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1750px;
  margin: auto;
}

.process-info {
  flex: 1;
  max-width: 805px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.process-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 41px;
  margin: 0;
  /* â† safety */
  /* max-height: 450px; */
  /* margin-top: -50px; */
}

.step-number {
  font-size: 100px;
  font-weight: 500;
  color: var(--color-black);
  min-width: 102px;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8.5px;
  /* 6643.5 - 6635 */
}

.step-text h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
}

.step-text p {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 1699px) {
    .process-steps{
        margin: 0!important;
    }
}
@media (max-width: 1200px) {
  .process-container {
    flex-direction: column;
    gap: 60px;
  }

  .process-info {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }

  .step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
            margin-top: 80px;
  }
  .process-steps{
      margin-bottom: 0 !important;
  }

  .step-number {
    font-size: 60px;
  }
  
  .process-container{
      gap: 20px;
  }

  .step-text h3 {
    font-size: 28px;
  }
  .blog-container{
      padding: 0 !important;
  }
  .blog-grid{
      gap: 60px !important;
  }
}

/* CSS for section section:Cooperations */
.cooperations-section {
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
  padding: 120px 20px;
}

.cooperations-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
}

.cooperations-info {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.cooperations-info .section-title {
  color: var(--color-white);
}

.cooperations-logos {
  display: flex;
  align-items: center;
  gap: 130px;
  /* 1511 - (1100+261) */
}

.cooperations-logos img:first-child {
  width: 261px;
  height: 105px;
}

.cooperations-logos img:last-child {
  width: 308px;
  height: 121px;
}

@media (max-width: 1200px) {
  .cooperations-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .cooperations-info {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .cooperations-logos {
    flex-direction: row;
    gap: 40px;
  }
}

/* -----------  BASE DESKTOP STYLES ------------- */
.faq-section {
  padding: 0px 0 100px;
}

.faq-container {
  display: flex;
  gap: 20px;
  max-width: 1750px;
  margin: auto;
  align-items: flex-start;
}

.faq-info {
  flex: 1;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.faq-info p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 705px;
}

/* -----------  LARGE LAPTOP / SMALL DESKTOP  < 1400px ------------- */
@media (max-width: 1400px) {
  .faq-container {
    padding: 0 40px;
  }

  .faq-info p {
    font-size: 18px;
  }
}

/* -----------  TABLET  < 1200px ------------- */
@media (max-width: 1200px) {
  .faq-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 40px;
  }

  .faq-info {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .faq-info p {
    max-width: 100%;
  }
}

/* -----------  TABLET PORTRAIT  < 992px ------------- */
@media (max-width: 992px) {
  .faq-section {
    padding: 90px 0;
  }

  .faq-info p {
    font-size: 17px;
  }
}

/* -----------  MOBILE  < 768px ------------- */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-container {
    padding: 0 25px;
  }

  .faq-info {
    gap: 25px;
  }

  .faq-info p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* -----------  SMALL MOBILE  < 480px ------------- */
@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-info p {
    font-size: 15px;
  }
}

/* CSS for section section:Blog */
/* .blog-section {
    padding: 90px 0;
} */
.blog-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 35px;
  margin-top: 55px;
}

#blog{
    padding: 0 0px 100px;
}

.blog-container {
  max-width: 1750px;
  margin: auto;
  padding: 0 40px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card-content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-category {
  font-size: 20px;
  color: var(--color-text-medium);
}

.blog-card h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.blog-excerpt {
  font-size: 20px;
  line-height: 1.2;
}

.blog-link {
  font-size: 20px;
  line-height: 1.2;
  text-decoration: underline;
  margin-top: 40px;
}

.blog-footer {
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 20px;
  }
  .blog-footer{
    text-align: center;
  }
  .search-container input{
    width: 200px;
  }
  .search-container button{
    width: 100px !important;
  }
}
.search-container input{
    width: 80%;
  }
  .search-container button{
    width: 20%;
  }
/* CSS for section section:CTA */
.cta-section {
  background-image: url("../images/Frame\ 280.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--color-white);
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
  max-width: 984px;
}

.cta-container .section-title {
  color: var(--color-white);
}

.cta-container p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 705px;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }
}

/* CSS for section section:Footer */
.main-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 37px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 38px;
}

.footer-logo img {
  width: 247px;
  height: 38px;
}

.footer-tagline {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text-light);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-color-light);
}

.footer-main {
  display: flex;
  /* justify-content: space-between; */
  padding: 70px 0px;
  gap: 190px;
  font-weight: 200;
}

.footer-column {
  font-size: 20px;
  line-height: 1.5;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-column address {
  font-style: normal;
  font-size: 16px;
}

.footer-column ul li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-column ul li p {
  /* font-weight: 500; */
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 45px;
}

.footer-social img {
  width: 36px;
  height: 36px;
}

.footer-credits {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-credits a {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .footer-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-credits {
    text-align: center;
  }
}

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

  .footer-social {
    flex-direction: column;
    gap: 20px;
  }
}

.animate-item {
  opacity: 0;
}

/* fade-left */
.fade-left {
  transform: translateX(-40px);
  transition: all 0.3s ease-out;
}

/* fade-right */
.fade-right {
  transform: translateX(40px);
  transition: all 0.3s ease-out;
}

/* zoom */
.fade-zoom {
  transform: scale(0.7);
  transition: all 0.3s ease-out;
}

/* when visible */
.animate-item.show {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease-out;
}

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

/* ================= ABOUT SECTION ================= */
.center-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 0px;
}

.center-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1750px;
}

.center-section h5 {
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 18px;
}

.center-section h1 {
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 500;
}

.center-section p {
  line-height: 1.6;
  font-size: 20px;
  max-width: 700px;
}

/* ================= TEAMS SECTION ================= */
.teams-section {
  text-align: center;
  padding: 100px 40px;
}

.teams-section h2 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 50px;
}

/* GRID */
.teams-container {
  max-width: 1750px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  justify-items: center;
}

/* Team Card */
.teams-member {
  text-align: center;
  width: 100%;
  max-width: 454px;
}

.teams-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  /* border-radius: 8px; */
}

.teams-member h3 {
  margin: 10px 0 5px;
  font-size: 32px;
  text-align: left;
  font-weight: 500;
}

.teams-member p {
  font-size: 22px;
  color: #000;
  margin: 10px 0;
  font-weight: 500;
  text-align: left;
}

.teams-member-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* Contact icons container */
.contact-icons {
  display: flex;
  gap: 15px;
  font-size: 22px;
  color: #000;
}

/* Style for the "Mehr erfahren" link */
.info {
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  font-size: 22px;
  position: relative;
}

/* On mobile: stack icons and link vertically */
@media (max-width: 768px) {
  .teams-member-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .info {
    align-self: flex-start;
    /* aligns the link to left */
  }
}

/* ================= RESPONSIVE ================= */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .teams-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {

  /* ABOUT SECTION */
  .center-section {
    padding: 60px 20px;
  }

  .center-section h1 {
    font-size: 34px;
  }

  .center-section p {
    font-size: 16px;
    max-width: 95%;
  }

  /* TEAMS GRID */
  .teams-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teams-member img {
    height: auto;
    max-height: 100%;
  }
}

/* Small Phones - 480px and below */
@media (max-width: 480px) {
  .center-section h1 {
    font-size: 22px;
  }

  .center-section p {
    font-size: 15px;
  }

  .teams-section h2 {
    font-size: 20px;
  }

  .teams-member img {
    max-height: 300px;
  }
}

/* Extra small phones - 360px and below */
@media (max-width: 360px) {
  .center-section h1 {
    font-size: 20px;
  }

  .center-section p {
    font-size: 14px;
  }

  .teams-section h2 {
    font-size: 40px;
  }

  .teams-member h3 {
    font-size: 22px;
  }

  .teams-member p {
    font-size: 16px;
  }
}

/* About Us Css End */

/* Leistungen */
/* MAIN SECTION */
.halfs-section {
  display: flex;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
}

/* LEFT SIDE */
.left-sides {
  flex: 1;
  background: #ecf4fc;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 107px;
  text-align: left;
  max-width: 50%;
}

.left-sides h1,
.left-sides h2,
.left-sides p {
  max-width: 800px;
  /* prevents long line cutting on mobile */
  /* line-height: 1.5; */
}

/* RIGHT SIDE */
.right-sides {
  flex: 1;
}

.right-sides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- LARGE LAPTOP (max-width: 1400px) ---------- */
@media (max-width: 1400px) {
  .left-sides {
    padding: 90px 40px;
  }
}

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
  .half-section {
    min-height: 45vh;
  }

  .left-side {
    padding: 70px 45px;
  }

  .left-side h1 {
    font-size: 34px;
  }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .halfs-section {
    flex-direction: row;
    min-height: auto;
  }
  
  .right-sides img{
      height: 100% !important;
  }
  
  .LeistungenPadding{
      padding: 100px 20px 80px 20px !important;
  }

  .left-sides {
    padding: 50px 25px;
    text-align: left;
  }

  .left-sides h1 {
    font-size: 30px;
    max-width: 100%;
  }

  .left-sides p {
    font-size: 16px;
    max-width: 100%;
  }

  .right-sides img {
    height: 300px;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .lefts-side {
    padding: 40px 20px;
  }

  .lefts-side h1 {
    font-size: 26px;
  }

  .lefts-side p {
    font-size: 15px;
  }

  .rights-side img {
    height: 250px;
  }
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-color-dark);
  width: 94%;
  margin: 30px auto 30px;
}

.services-section {
  padding: 150px 20px;
}

.services-containers {
  max-width: 1700px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 80px;
}

.services-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-box h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 50px;
}

.services-box p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

/* Push link to bottom */
.learn-more {
  margin-top: auto;
  font-size: 18px;
  color: #777;
  text-decoration: underline;
  cursor: pointer;
}

/* Tablet (2 per row) */
@media (max-width: 1024px) {
  .services-containers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 650px) {
  .services-section {
    padding: 80px 20px;
  }

  .services-containers {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-box h2 {
    font-size: 26px;
  }

  .services-box p {
    font-size: 16px;
  }

  .learn-more {
    font-size: 16px;
  }
}

/* Leistungen end */

.profile-section {
  padding: 100px 0;
  margin-top: 120px;
  display: flex;
  justify-content: center;
}

/* Keep content centered */
.profile-container {
  max-width: 1750px;
  margin: 0 auto;
  display: flex;
  gap: 150px;
  padding: 0 80px;
}

/* Left column */
.left-column {
  width: 50%;
  min-width: 280px;
}

.profile-image {
  width: 806px;
  height: 780px;
  /* border-radius: 8px; */
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* MAIN SECTION */
.contactus-section {
  max-width: 1700px;
  margin: auto;
  padding: 140px 0;
}

.d-flex{
    display: flex;
}
#contact .row{
    gap: 60px
}

.contactus-left{
    max-width: 45%;
}
.contactus-right{
    max-width: 55%;
}

/* LEFT SIDE */
.contactus-label {
  color: #0f0f0f;
  font-size: 16px;
}

.contactus-left h1 {
  font-size: 59px;
  line-height: 1.3;
  margin: 35px 0 20px;
  font-weight: 500;
}

.contactus-desc {
  max-width: 700px;
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
}

.contactus-left h3 {
  margin-top: 100px;
  font-size: 32px;
  font-weight: 500;
}

.contactus-address {
  line-height: 1.5;
  margin-top: 10px;
  font-size: 20px;
}

/* PERSONS */
.contactus-persons {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}

.contactus-person h4 {
  font-size: 32px;
  margin-bottom: 22px;
  font-weight: 500;
}

.contactus-role {
  font-size: 20px;
  color: #000000;
  margin-bottom: 26px;
  line-height: 150%;
  font-weight: 400;
}

.contactus-item {
  font-size: 20px;
  margin: 0 0 22px 0;
}

.contactus-item a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  margin-left: 26px;
}

/* RIGHT SIDE FORM */
.contactus-form-box {
  border: 1px solid #e7e7e7;
  padding: 78px 70px;
  border-radius: 4px;
}

.contactus-form-box h2 {
  margin: 0 0 30px;
  font-size: 45px;
  font-weight: 500;
}

.contactus-form-box form label {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  color: #000;
  font-weight: 400;
}

.contactus-form-box input,.contactus-form-box select,
.contactus-form-box textarea {
  width: 100%;
  padding: 19px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-top: 12px;
  font-size: 24px;
  outline: none;
}

.contactus-form-box input::placeholder,
.contactus-form-box textarea::placeholder {
  font-weight: 300;
  color: #999;
}

.contactus-form-box textarea {
  height: 234px;
  resize: none;
  border: 1px solid #0720313a;
  padding-left: 22px;
}

.contactus-check {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 29px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  max-width: 550px;
}

.contactus-check input {
  width: 17px;
  height: 17px;
  margin: 5px 0 0 0;
}

.contactus-check input[type="checkbox"] {
  background-color: #ddebf9;
  appearance: none;
  /* Remove default browser styling */
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  padding: 18px 20px;
}

/* Tick mark when checked */
.contactus-check input[type="checkbox"]:checked::after {
  content: "âœ”";
  font-size: 20px;
  color: #071f2d;
  position: absolute;
  top: 2px;
  left: 6px;
}

.contactus-form-box button {
  margin-top: 40px;
  width: 100%;
  padding: 16px;
  background: #071f2d;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: 300;
  line-height: 150%;
}

.contactus-form-box button:hover {
  background: #051823;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contactus-section {
    grid-template-columns: 1fr;
  }

  .contactus-persons {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contactus-section {
    padding: 40px 20px;
  }

  .contactus-left h1 {
    font-size: 34px;
  }

  .contactus-form-box {
    padding: 35px 25px;
  }
}

/* ===========================
   BASE (DESKTOP)
=========================== */
.faqs-section {
  text-align: center;
  padding: 100px 20px;
  font-family: var(--font-main);
}

.faqs-label {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faqs-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faqs-subtitle {
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #000;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

/* Buttons Row */
.faq-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* makes it responsive */
  gap: 20px;
  margin-bottom: 20px;
}

.faq-row button {
  padding: 16px 21px;
  border: 1px solid #d3dbe3;
  background: #f8fbff;
  color: #a7a7a7;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.faq-row button:hover {
  background: #ddebf9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #000;
}

/* Author Section */
.author-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
  /* makes it responsive */
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info p {
  margin: 0;
  font-size: 14px;
font-family: var(--font-main) !important;
line-height: 1.3em;
}

/* ===========================
   LARGE LAPTOP < 1400px
=========================== */
@media (max-width: 1400px) {
  .faqs-title {
    font-size: 52px;
  }

  .faqs-subtitle {
    font-size: 19px;
  }
}

/* ===========================
   TABLET LANDSCAPE < 1024px
=========================== */
@media (max-width: 1024px) {
  .faqs-title {
    font-size: 46px;
  }

  .faqs-subtitle {
    max-width: 750px;
    font-size: 18px;
  }

  .faq-row button {
    font-size: 18px;
    padding: 14px 18px;
  }
}

/* ===========================
   TABLET PORTRAIT < 768px
=========================== */
@media (max-width: 768px) {
  .faqs-section {
    padding: 80px 20px;
  }

  .faqs-title {
    font-size: 38px;
  }

  .faqs-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .faq-row {
    gap: 15px;
  }

  .faq-row button {
    font-size: 16px;
    padding: 12px 16px;
  }

  .author-img {
    width: 60px;
    height: 60px;
  }
}

/* ===========================
   SMALL MOBILE < 480px
=========================== */
@media (max-width: 480px) {
  .faqs-section {
    padding: 60px 15px;
  }

  .faqs-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .faqs-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .faq-row button {
    width: 100%;
    /* Full width on mobile */
    text-align: center;
    font-size: 15px;
    padding: 12px 0;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-info p {
    font-size: 13px;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 80px;
  gap: 60px;
  max-width: 1750px;
  margin: auto;
}

/* LEFT SIDE */
.label {
  color: #888;
  font-size: 13px;
}

.left h1 {
  font-size: 64px;
  line-height: 1.3;
  margin: 10px 0 20px;
}

.desc {
  max-width: 500px;
  color: #555;
  line-height: 1.5;
}

h3 {
  margin-top: 20px;
  font-weight: 200;
  font-size: 24px;
}

.address {
  line-height: 1.5;
  margin-top: 10px;
}

.persons {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.person h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.role {
  font-size: 14px;
  color: #666;
  margin: 5px 0 10px;
}

.item {
  font-size: 14px;
  margin: 6px 0;
}

.item a {
  color: #000000;
  text-decoration: underline;
}

/* RIGHT SIDE FORM */
.form-box {
  border: 1px solid #e7e7e7;
  padding: 50px 60px;
  border-radius: 4px;
}

.form-box h2 {
  margin: 0 0 30px;
}

form label {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

input,
textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-top: 5px;
  font-size: 15px;
  outline: none;
}

textarea {
  height: 120px;
  resize: none;
}

.check {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

.check input {
  width: 17px;
  height: 17px;
}

button {
  margin-top: 15px;
  width: 100%;
  padding: 14px;
  background: #071f2d;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #051823;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .hero-container {
    justify-content: center;
  }
}

@media screen and (min-width: 1400px) {
  .main-header {
    margin-bottom: -230px;
    padding: 0 0 100px;
  }
}

@media screen and (max-width: 768px){
  .intro-description{
    margin: 50px 0;
    max-width: 100%;
  }
  .blog-header{
    text-align: center;
  }
}

@media screen and (min-width: 991px) and (max-width: 1400px) {
  .main-header {
    margin-bottom: -240px;
  }
}
.detailBlog .blog-card img{
        height: 700px !important;
    }

@media screen and (max-height: 768px){
    
    .profile_heading h3{
        font-size: 18px !important;
    }
    
    .profile-container{
        gap: 90px !important;
        max-width: 1200px !important
    }
    .Team_Detail ul li{
        font-size: 16px !important;
    }
    .Team_Detail p{
        font-size: 16px !important;
        
    }
    .ProfileHeading p{
        font-size: 18px !important;
    }
    
    .detailBlog .blog-card img{
        height: 500px !important;
    }
    
    .profile-image{
        height: 500px !important;
    }
    
    .main-header{
        padding: 20px 0;
        margin-bottom: -160px;
    }
    .hero-title{
        font-size: 60px;
    }
    .hero-subtitle{
        font-size: 24px;
    }
    .intro-description p{
        font-size: 24px;
    }
    .section-title{
        font-size: 50px;
    }
    .intro-description, .intro-text-block{
        margin: 0px;
        max-width: 40%;
        width: 50%;
        margin-right: 100px;
    }    
    .intro-content{
        align-items: center;
    }
    .hero-title{
        max-width: 80%;
        font-size: 55px;
    }
    .stat-label{
        font-size: 20px;
    }
    .services-section{
        padding-top: 80px;
    }
    .services-container{
        gap: 100px;
    }
    .accordion-header{
        font-size: 25px;
    }
    .accordion-content p{
        font-size: 16px;
    }
    .services-info p{
        font-size: 18px;
    }
    .section-title{
        font-size: 45px;
    }
    .accordion-header{
        padding: 30px 0;
    }
    .team-content p{
        font-size: 18px;
    }
    .team-section{
        padding: 100px 0;
    }
    .step-number{
        font-size: 60px;
        line-height: 1;
        min-width: 50px;
    }
    .process-steps h3{
        margin-top: 0;
    }
    .step-text{
        padding: 0;
        gap: 10px;
    }
    .step-text h3{
        font-size: 30px;
    }
    .step-text p{
        font-size: 18px;
    }
    .process-steps{
        gap: 25px;
    }
    .process-container{
        align-items: center !important;
    }
    .step-item{
        margin-top: 0px !important;
    }
    .cooperations-section{
        padding: 80px 0;
    }
    .container{
        padding: 0 40px;
    }
    .cooperations-logos, .cooperations-info{
        width: 50%;
        max-width: 50%;
        gap: 50px;
    }
    .cooperations-logos img{
        height: 80px !important;
        width: 100% !important;
    }
    .faq-container{
        gap: 40px
    }
    .blog-category{
        font-size: 16px;
    }
    .blog-card h3{
        font-size: 26px;
        margin: 0 !important;
        
    }
    .blog-excerpt{
        font-size: 16px;
    }
    .blog-link{
        margin-top: 20px;
    }
    .blog-card{
        justify-content: space-between;
    }
    .contactus-section{
        padding: 100px 0;
    }
    .contactus-left h1, .contactus-form-box h2{
        font-size: 45px;
    }
    .contactus-form-box{
        padding: 50px 50px;
    }
    .contactus-desc{
        font-size: 18px;
    }
    .contactus-form-box input, .contactus-form-box textarea, .contactus-form-box form label{
        font-size: 18px;
    }
    .contactus-form-box input, .contactus-form-box textarea{
        margin-top: 12px !important;
    }
    .contactus-form-box form label{
        margin-top: 35px;
    }
    .contactus-form-box textarea{
        height: 150px;
    }
    .contactus-check{
        font-size: 15px;
    }
    .contactus-check input[type="checkbox"]{
        padding: 14px 15px;
    }
    .process-section{
        padding: 100px 0 200px;
    }
    .blog-card img{
        height: 240px !important;
    }
    #blog{
        padding: 50px 0 100px 0 !important;
    }
    .footer-column {
    font-size: 16px;
}
.contactus-address, .contactus-role{
    font-size: 16px;
}

.contactus-left h3{
    font-size: 24px;
    margin-top: 50px;
}
.contactus-person h4{
    font-size: 24px;
}
.contactus-persons{
    margin-top: 50px;
}
.contactus-item a{
    margin-left: 10px;
    font-size: 16px;
}
.contactus-persons{
    gap: 30px
}
.center-section h1{
    font-size: 45px;
}
.center-section{
    padding: 100px 20px;
}

.left-sides{
    padding: 80px 40px;
}

}
.left-sides{
    gap: 20px;
}
.left-sides p{
    font-size: 20px;
    line-height: 150%;
}
@media screen and (max-width: 1400px){
    
    .blog-category{
        font-size: 16px !important;
    }
    .nav-links a{
        font-size: 18px;
    }
    .nav-links{
        gap: 30px;
    }
    
    .blog-card h3{
        font-size: 23px !important;
    }
    .blog-excerpt{
        font-size: 18px!important;
    }
    
    .blog-link{
            margin-top: 20px !important;
    }
    
    .footer-main{
        gap: 80px;
        justify-content: space-between;
    }
    .services-box h2{
    font-size: 22px;
}
.services-box p{
    font-size: 18px;
}
.services-containers{
    gap: 90px 80px;
}
.whom-we-advise-section, #industries, .LeistungenPadding{
    padding: 40px;
}
.services-section{
    padding: 60px 0 100px;
}
.services-box h2{
    margin-bottom: 30px;
}
.industry-card h3{
    font-size: 25px;
}
#blog{
    padding: 100px 0;
}
.blog-header{
    margin-top: 0;
}

.faq-row button {
    padding: 15px 21px;
    font-size: 16px;
    margin-top: 0px;
}

.faqs-section{
    padding: 80px 40px 40px ;
}

.faq-section{
     padding: 40px 0px 40px ;
}

}
.LeistungenPadding{
    padding: 100px 110px;
}

    .hero-content{
        margin-top: 160px !important;
    }

.uberStats .container{
    gap: 40px;
}

.uberStats{
    padding: 80px 0;
}


.whom-we-advise-section, #industries{
    padding: 100px 0px !important;
}
@media screen and (max-width: 1240px){
    .nav-links a{
        font-size: 18px;
    }
}
.teams-member{
        display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.processFaqs{
    align-items: center !important;
}

.step-text{
    gap: 20px !important;
}


.Team_Detail{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.Team_Detail p{
    /* margin-left: -30px; */
}
.Team_Detail ul li{
    list-style: outside;
    line-height: 180%;
    font-size: 20px ;
    color: #1E1E1E !important;
}
.Team_Detail h3{
    font-size: 22px;
    color: #000 !important;
    margin-top: -10px !important;
}
.Team_Detail h1{
    font-size: 30px;
    font-weight: 500;
}
.profile-image{
    height: 600px;
}
.Team_Detail p{
    font-size: 20px;
}

.ProfileHeading h2{
    font-size: 36px !important;
}
.ProfileHeading p{
    font-size: 20px;
    margin-bottom: 60px;
}
.ProfileHeading p span{
    font-size: 18px !important;
}
.ProfileHeading .contact-lines{
    margin: 0 !important;
}
.ProfileHeading{
    gap: 0 !important;
    display: flex;
    flex-direction: column;
    padding: 40px 0 !important;
}
.profile-section{
    padding: 140px 0 0 0 !important;
}


        .blog-header {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 35px;
            margin-top: 55px;
        }

        .blog-container {
            max-width: 1750px;
            margin: auto;
        }

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

        .blog-card {
            display: flex;
            flex-direction: column;
        }

        .blog-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .blog-card-content {
            padding-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .blog-category {
            font-size: 20px;
            color: var(--color-text-medium);
        }

        .blog-card h3 {
            font-size: 32px;
            font-weight: 500;
            line-height: 1.2;
        }

        .blog-excerpt {
            font-size: 20px;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-link {
            font-size: 20px;
            line-height: 1.2;
            text-decoration: underline;
            margin-top: 0px;
        }

        .blog-footer {
            margin-top: 30px;
        }

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

        @media (max-width: 768px) {
            .blog-section {
                padding: 80px 0;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 100px 0;
            }
        }

        .animate-item {
            opacity: 0;
        }

        .fade-left {
            transform: translateX(-40px);
            transition: all .3 ease-out;
        }

        .fade-right {
            transform: translateX(40px);
            transition: all .3 ease-out;
        }

        .fade-zoom {
            transform: scale(0.7);
            transition: all .3 ease-out;
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease-out;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-zoom {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.3s ease-out;
        }

        @media (max-width: 768px) {}

        .profile-section {
            padding: 100px 0;
            margin-top: 120px;
            display: flex;
            justify-content: center;
        }

        .profile-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            gap: 150px;
            padding: 0 20px;
        }

        .left-column {
            width: 62%;
            min-width: 280px;
        }

        .profile-image {
            width: 100%;

            object-fit: cover;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-section {
            margin-top: 30px;
        }

        .contact-section h2 {
            margin-bottom: 10px;
            font-size: 32px;
            font-weight: 500;

        }

        .contact-section p {}

        .right-column {
            width: 65%;
        }

        .right-column h1 {
            margin-bottom: 5px;
            font-size: 36px;
        }

        .right-column h3 {
            margin-top: 0;
            font-weight: 400;
            color: #555;
        }

        .contact-lines i {
            margin-right: 30px;
            font-size: 18px;

        }

        .contact-lines {
            font-size: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;

        }

        @media (max-width: 900px) {
            .profile-container {
                flex-direction: column;
            }

            .left-column,
            .right-column {
                width: 100%;
            }
        }

        .contact-section {

            grid-template-columns: 1fr 1fr;

            gap: 60px;
            max-width: 1600px;
            margin: auto;
        }

        h3 {
            margin-top: 40px;
        }


.profile_heading h3{
    font-size: 20px;
    color: #000 !important;
    
}
.profile_heading h1{
    font-weight: 500 !important;
    
}.blog-card h3{
        font-size: 26px;
        margin: 0 !important;
        
    }
    
    
    
    .detail_mt{
        margin-top: 120px;
        overflow: hidden;
    }
    
    
    
    
/*Mobile Responsive*/

@media screen and (max-width: 768px){
    .hero-title{
        font-size: 35px ;
    }
    .intro-description, .intro-text-block, .cooperations-logos, .cooperations-info, .accordion{
        width: 100%;
        max-width: 100%;
    }
    .whom-we-advise-section, #industries{
        padding: 80px 0 0 0 !important;
    }
    .industry-card h3{
        margin-top: 0 !important;
    }
    .services-container{
        margin-top: 80px !important;
    }
    .step-number{
        margin: 40px 0 !important;
    }
    .process-section{
       padding: 100px 0;
    }
        .cooperations-logos img {
        height: auto !important;
        width: 35% !important;
    }
    .cooperations-logos{
        justify-content: center;
    }
    #blog{
        padding: 0 0px 100px !important;
    }
    .blog-card h3 {
        font-size: 32px !important;
    }
        .blog-card img {
        height: 400px !important;
    }
    .footer_three{
        margin: 0 !important;
    }
    .footer-main{
        text-align: center !important;
    }
    .services-containers{
        gap: 50px
    }
    
    .step-text h3{
        margin: 0 !important;
    }
    .step-item{
        margin-top: 40px !important;
    }
    .teams-section{
        padding: 80px 20px !important;
    }
    .teams-section h2{
        font-size: 40px;
    }
    .mobile_hidden{
        display: none;
    }
    #contact .row{
        flex-direction: column;
    }
    #contact{
      padding: 80px 20px;
    }
    #contact .contactus-left, #contact .contactus-right{
        max-width: 100%;
    }
    .contactus-left h3{
        font-size: 26px;
        margin-top: 50px;
    }
    .contactus-person h4{
        font-size: 26px;
    }
    .contactus-persons{
        margin-top: 50px;
        flex-direction: row;
    }
    .contactus-role{
        font-size: 18px;
    }
    .contactus-item {
    font-size: 14px;
    margin: 0 0 12px 0;
}
.contactus-item a{
    font-size: 16px;
        margin-left: 15px;
}

.contactus-form-box h2{
    font-size: 32px;
}
.contactus-form-box input, .contactus-form-box textarea
 {
    padding: 14px 15px;
    margin-top: 10px;
    font-size: 16px;
}
.contactus-check{
    font-size: 16px;
}
.contactus-form-box button{
    font-size: 18px;
}
.detailBlog .blog-card img{
    height: 400px !important;
}
.blog_detail_page{
    padding-bottom: 20px !important;
}
.profile-image{
    height: auto;
}
.profile-container{
    gap: 40px;
}

.profile-container .right-column div{
    padding: 0 0 0 35px;
}
.profile-container .right-column div p, .profile-container .right-column div li{
    font-size: 18px;
}

.blog-grid{
    gap: 50px 20px !important;
}

    .blog-card h3 {
        font-size: 26px !important;
    }

}

@media screen and (max-width: 640px){
    .blog-card h3 {
        font-size: 22px !important;
    }
}

@media screen and (min-width: 768px){
    .desktop_hidden{
        display: none;
    }
}
@media screen and (max-width: 991px){
    .blog-card img{
        height: 250px !important;
    }
}


.blog-grid{
    gap: 40px 30px;
}

@media screen and (max-width: 1200px){
    .blog-grid{
    grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 1024px){
    .blog-container{
        padding: 0;
    }
}

.blog_overview {
    padding-bottom: 100px;
}

/*Mobile*/
@media screen and (max-width: 500px){
        .section-title {
        font-size: 30px !important;
    }
        .blog-card img {
        height: 225px !important;
    }
    .blog-card h3{
        font-size: 24px !important;
    }
    .btn{
        padding: 10px !important;
        font-size: 16px !important;
    }
    .intro-description{
        margin: 0 !important;
    }
    .intro-description p{
        font-size: 20px !important;
    }
    .stat-label{
        font-size: 22px !important;
    }
     .accordion-header {
        font-size: 22px !important;
        padding-right: 20px;
    }
    .blog-link{
        font-size: 16px ;
    }
    .footer-tagline{
        font-size: 26px;
    }
    .footer-main{
        gap: 60px;
    }
    .hero-section{
        background-position: -580px !important;
    min-height: 88vh !important;
    }
    .search-btn{
         padding: 16px 24px;
    }
    .search-container input{
        padding: 15px 10px;
    }
    .client-card h3{
        font-size: 26px;
    }
    .industry-card p{
        font-size: 16px;
    }
    .detailBlog .blog-card img{
        height: 250px !important;
    }
    .detail_mt{
        margin-top: 180px;
        overflow: hidden;
    }
    
    .ProfileHeading h2 , .right-column h1{
    font-size: 28px !important;
}
.ProfileHeading p {
    font-size: 16px;
}
.contact-lines i{
        margin-right: 18px;
}
.Team_Detail h3{
    font-size: 18px;
}

    .profile-container .right-column div p, .profile-container .right-column div li {
        font-size: 16px;
    }
    
    #blog{
        margin-top: 100px;
    }
    
    .mobile-menu ul li a{
        font-size: 18px;
    }
    .center-section p{
        font-size: 16px;
    }
    .center-section h1{
        font-size: 24px;
    }
    .center-section{
        padding: 60px 0;
    }
    .halfs-section{
        flex-direction: column;
    }
    .halfs-section .left-sides{
        max-width: 100%;
    }
    .LeistungenPadding{
        padding: 60px 20px !important;
    }
    
        .whom-we-advise-section
 {
        padding: 40px 0 0 0 !important;
    }
    .client-card{
        height: 250px;
    }
    
    .right-sides img{
        height: 280px !important;
    }
    .accordion-header span{
        padding-right: 50px;
    }
        .hero-title {
        font-size: 32px;
    }
    #contact{
        padding: 80px 0 !important;
    }
    .contactus-left h1 {
        font-size: 28px;
    }
    .contactus-desc, .contactus-address{
        font-size: 16px;
    }
    
    .contactus-left h3{
        font-size: 22px;
    }
    .contactus-person h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }
        .contactus-role {
        font-size: 16px;
    }
    .contactus-persons{
        flex-direction: column;
    }
        .contactus-form-box {
        padding: 25px 15px;
    }
    .contactus-form-box h2 {
        font-size: 26px;
    }
    .contactus-form-box form label{
        font-size: 18px;
        margin-top: 30px;
    }
    .contactus-form-box input, .contactus-form-box textarea{
        font-size: 14px;
    }
    .contactus-check{
        gap: 15px
    }
        .contactus-check {
        font-size: 14px;
    }
    .contactus-check input[type="checkbox"]{
        padding: 14px 15px;
    }
        .profile-image {
        height: 400px !important;
    }
    
    .profile-container{
        gap:10px !important
    }
    .profile-section{
        margin-top: 80px;
    }
    
        .blog-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 15px;
    }
    .blog_overview{
        margin-top: 0px !important;
        padding: 20px 0 80px 0 !important;
    }
    
}

@media screen and (min-width: 1400px){
    .mobile_team{
        display: none;
    }
}

@media screen and (max-width: 1400px){
    .desktop_team{
        display: none;
    }
}

@media screen and (max-width: 1700px) and (min-width: 1200px){
    .section-title{
        font-size: 45px !important;
    }
    .step-text h3{
        margin-top: 0px !important;
    }
}

.footer-main a {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: 16px;
}

.footer-main a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-main a:hover::after {
    width: 100%;
}
.footer-bottom a {
    position: relative;
    display: inline-block;
        width: fit-content;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}
.blog-link {
    position: relative;
    display: inline-block;
        width: fit-content;
        text-decoration: none;
        border-bottom: 1px solid #000;
}

.blog-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.blog-link:hover::after {
    width: 100%;
}

.imprint{
    padding-bottom: 0px !important;
}
.imprint_content{
    padding-bottom: 100px;
}

/*Sticky Header*/
#hidden_header .main-nav {
    margin: 0;
}

#hidden_header .logo {
   align-self: center;
}

#hidden_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease;
    transform: translateY(-100%); /* Start hidden */
    background: #fff;
    padding: 20px 0;
}

#hidden_header.show {
    transform: translateY(0);
}

#hidden_header.hide {
    transform: translateY(-100%);
}
#industries {
    padding: 0 0 100px !important;
}
.whom-we-advise-header .btn {margin: 0 0 10px;}
.info:before {
    position: absolute;
    width: 0;
    height: 2px;
    background: #000;
    content: '';
    left: 0;
    bottom: 0;
    transition: 500ms all;
}

.info:hover:before {
    width: 100%;
}

.info:hover:before {
    width: 100%;
}

.contact-icons a:hover {
    scale: 1.2;
}

.contact-icons a {
    transition: 300ms all;
}
.learn-more:hover {
    letter-spacing: 1px;
}

.learn-more {
    transition: 300ms all;
}
.Team_Detail ul {
    padding-left: 20px;
    margin: 10px 0;
}
.contactus-form-box button {
    border: 1px solid transparent;
    transition: 500ms all;
}

.contactus-form-box button:hover {border-color: #000;background: transparent;color: #000;}
.contactus-item:hover i {
    scale: 1.3;
}

.contactus-item i {
    transition: 300ms all;
}
section#faq {
    padding: 100px 0 !important;
}
.process-section--alt {
    padding: 100px 0;
}

@media screen and (max-width: 1600px) and (min-width: 1400px){
    .hero-title {
    font-size: 60px;
}

.hero-content {
    margin-top: 80px !important;
}

.hero-subtitle {
    font-size: 28px;
}

.intro-description p {font-size: 25px;}

.intro-description {
    margin: 0 auto;
    max-width: 600px;
}
.stat-number {
    font-size: 50px;
}

.stat-label {
    font-size: 28px;
}

.stats-section {
    padding: 60px  60px;
}
.industry-card h3 {
    margin: 0;
    font-size: 24px;
}

.industry-card p {
    font-size: 16px;
}
.accordion-header {
    font-size: 25px;
    padding: 33px 0;
}

.accordion-content p {
    font-size: 16px;
    padding: 0 0 35px;
}
.services-info p {
    font-size: 18px;
}
.team-content .section-title {
    width: 450px;
}
.step-text h3 {
    font-size: 26px;
}

.step-number {
    font-size: 80px;
    text-align: end;
}
.whom-we-advise-text {
    gap: 16px;
}

.whom-we-advise-text .description {
    font-size: 16px;
    width: 594px;
    line-height: 22px;
}

.client-card {
    height: 280px;
}
.whom-we-advise-section, #industries {padding: 90px 0 !important;}

#industries {
    padding: 0 0 70px !important;
}

.services-container {
    margin-top: 80px;
}
.btn {
    padding: 13px 18px;
    height: auto !important;
    width: fit-content !important;
}
.industry-card {
    padding: 40px 34px;
}
.services-section {
    padding: 0 20px 120px !important;
}
.team-section {
    padding: 100px  0;
}
  .team-content {
    gap: 23px;
}

  .process-info {
    max-width: 550px !important;
}
}