/* ----------------------------------------------------
   FONT IMPORTS
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Open+Sans:wght@300;400;600&display=swap');

/* ----------------------------------------------------
   COLOR VARIABLES — BRAND PALETTE
---------------------------------------------------- */
:root {
    --brand-orange: #EC8742;     /* Primary Button Background */
    --accent-1: #F8D8C3;         /* Light Peach */
    --accent-2: #F5B589;         /* Mid Peach */
    --neutral-text: #555555;     /* Body text */
    --dark-bg: #262628;          /* Footers */
    --white: #FFFFFF;            /* Base */
    --color-A: #ff8433;          /* Darker Orange */
    --color-B: #ffba8c;          /* Lighter Orange */
}

/* ----------------------------------------------------
   GLOBAL LAYOUT STYLE
---------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    color: var(--neutral-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

section {
    padding: 80px 0;
}

section + section {
    margin-top: 50px;
}

/* Gentle animation for warm, calm tone */
* {
    transition: all 0.25s ease;
}

/* ----------------------------------------------------
   TYPOGRAPHY SYSTEM
---------------------------------------------------- */

/* H1/H2 — uppercase, thin, large letter spacing */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8em;
    color: var(--dark-bg);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem !important; }

/* Subheadings — uppercase, medium weight, structured */
h3, .subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--neutral-text);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
}

/* Body text — calm gray readable tone */
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin: 0 0 1.2rem;
    color: var(--neutral-text);
}

/* Highlight text — emphasis */
strong, .highlight {
    font-weight: 600;
    color: var(--dark-bg);
}

/* ----------------------------------------------------
   BUTTONS — Friendly, rounded, warm
---------------------------------------------------- */
.btn-orange {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 30px;               /* Rounded friendly feel */
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    background: var(--brand-orange);
    color: var(--white) !important;
}

.btn-orange:hover {
    background: var(--accent-2) !important;       /* soft peach hover */
}

/* ----------------------------------------------------
   ICON STYLE
---------------------------------------------------- */
.icon {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

/* Icons inside features */
.feature-icon {
    background: var(--accent-1);
    padding: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* ----------------------------------------------------
   SECTION DIVIDERS / WAVES
---------------------------------------------------- */

/* Soft layered wave effect */
.wave-top {
    background: linear-gradient(to bottom, var(--accent-1), var(--white));
}

.wave-mid {
    background: linear-gradient(to bottom, var(--accent-2), var(--accent-1));
}

.wave-bottom {
    background: linear-gradient(to bottom, var(--brand-orange), var(--accent-2));
}

/* ----------------------------------------------------
   WHITE SPACE — Calm Layout
---------------------------------------------------- */
.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.spacer-xl { height: 80px; }
.spacer-lg { height: 50px; }
.spacer-md { height: 30px; }
.spacer-sm { height: 15px; }

/* ----------------------------------------------------
   ACCESSIBILITY & CONTRAST
---------------------------------------------------- */
.text-dark { color: var(--dark-bg); }
.text-light { color: var(--white); }

/* Avoid orange text on white for readability */
.text-orange { color: var(--brand-orange); }
.text-orange-on-white {
    color: var(--neutral-text); /* fallback - prevents poor contrast */
}

/* ----------------------------------------------------
   CARDS / BOX ELEMENTS — Rounded, soft borders
---------------------------------------------------- */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
}

/* ----------------------------------------------------
   FOOTER — Dark background zone
---------------------------------------------------- */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
}

.footer a {
    color: var(--white);
    opacity: 0.85;
}

.footer a:hover {
    opacity: 1;
}

/* custom styles */
.text-medium {
    font-size: 2.4rem !important;
    letter-spacing: 0;
}
.row > .col-lg-4.color-box-A:nth-child(odd) {
    background-color: var(--color-A); /* #ff8433 */
    transition: background-color 0.3s ease;
}

.row > .col-lg-4.color-box-A:nth-child(odd) .text-box:hover {
    background-color: var(--color-B);
}
.row > .col-lg-4.color-box-B:nth-child(even) {
    background-color: var(--color-B);
    transition: background-color 0.3s ease;
}

.row > .col-lg-4.color-box-B:nth-child(even) .text-box:hover {
    background-color: var(--color-A); /* #ff8433 */
}
#mainMenu li a {
  color: black !important;
}
#header .header-inner #logo a > img, #header #header-wrap #logo a > img { 
    width: 114px;
}
#header.dark .header-inner .lines, #header.dark .header-inner .lines:after, #header.dark .header-inner .lines:before {
    background-color: black;
}
#logo {
    display: flex;
  flex-direction: row;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
}
.logo-dark {
    height: 4rem;
}
.row.pop-up {
  padding: 25px;
  text-align: center;
  position: fixed;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  background: #EEE;
  opacity: 1;
  z-index: 9999;
  margin: 0;
}
.col-no-margin [class^="col"] {
  margin: 0 !important;
  padding: 0 !important;
}
.text-box.hover-effect p {
  opacity: 1;
}
.bg-overlay {
    background: #eaeaea !important;
}
.first-box .list-icon {
  opacity: 1;
  backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.6);
  color: #000;
  padding: 20px;
  z-index: 2;
  border-radius: 25px;
}
.list-icon li::before {
    margin-top: 4px;
}
.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px;
}

/* When phone exists */
.header-btn.has-phone .btn-orange {
    margin-left: 0;
}

/* When phone NOT exists */
.header-btn.no-phone .btn-orange {
    margin-left: 0;
}

/* Phone icon */
.header-btn .phone-link {
    display: flex;
    align-items: center;
}

/* Button fix for <br> issue */
.header-btn .btn-orange {
    display: inline-block;
    line-height: 1.4;
    white-space: normal; /* allow <br> naturally */
}
#section1 .subttl {
    color: black;
}
#section1 {
        background-image: url(/__preview/LP/image/background/Haus_3_und_3a_ruck_zuschnitt.jpg);
      background-size: cover;
      background-repeat: no-repeat !important;
      background-position: center;
      background-attachment: fixed;
}
.header-btn a {
    color: black;
}
.header-btn a:hover {
    color: #ec8742 !important;
}
.menu-animate {
    min-height: 100px !important;
}
.list-icon.list-icon-colored li::before, .list-icon.icon-list-colored i {
    color: #ec8742;
}
.rounded-logo {
    margin-top: 7rem !important;
}
.timeline .timeline-item .timeline-icon {
    background-color: #ec8742;
}
.counter.small {
    font-size: 32px;
}
.flickity-button:hover {
    background-color: #ff8433;
}
#scrollTop::after, #scrollTop::before {
    background-color: #ec8742;
}

#section12 {
    background: #EA9B66 !important;
}

/*section#section10 {
    padding: 30px 0 !important;
}*/

#section5 .text-box h5:not(:last-child) {
    margin-bottom: 0;
}
#section9 .ac-content p {
    line-height: 1.6;
    font-size: 16px;
}
#section9 .ac-content strong, #section3 .heading-text p strong {
    color: #555555;
}

.accordion.fancy.radius {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.accordion .ac-item .ac-title {
    font-weight: 900;
    font-size: 1.1em;
}
.accordion .ac-item{
    width: 100%;
  }
@media (min-width: 1500px) {
  .accordion .ac-item{
    width: 120%;
  }
}

@media (max-width: 1200px) {
    #section1 {
        background-repeat: repeat;
    }
    .hover-text {
      padding: 20px;
      font-size: 12px;
    }
    .footer-pages {
        gap: 15px !important;
    }
}
@media (min-width: 1200px) {
    #mainMenu nav {
        display: flex;
    }
}
@media(min-width: 992px) and (max-width: 1200.50px){
  #mainMenu nav {
      float: right;
      width: 86.5%;
      margin-left: auto;
  }

  #mainMenu nav > ul > li > a {
    padding: 10px 7px;
  }

  #header .container {
    width: 100vw;
    max-width: 100%;
  }

  #mainMenu nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media(min-width: 768px) and (max-width: 991.50px){
  .container{
    width: 100% !important;
    max-width: 100% !important;
  }

  #section6 .col-lg-8 , #section12 .col-lg-8{
    width: 64% !important;
  }

  #section6 .col-lg-4 , #section12 .col-lg-4{
    width: 36% !important;
  }
  .make-large-logo {
    min-width: unset !important;
  }
}
@media (max-width: 991px) {
    #section1 .container {
        padding: 0 10px;
    }
    .mb-50 {
        margin-bottom: 50px;
    }
    .modal {
        overflow-x: scroll;
    }
    .row.pop-up {
        padding: 10px;
    }
    .row.pop-up h3 {
        margin-top: 0;
    }
    .content {
        margin-bottom: 6px;
    }
    .rounded-logo {
        margin-top: 0rem !important;
    }
}
@media (min-width: 991px) {
    .btn-space {
        margin-top: 1.5rem;
    }
}

/*NEW STYLE*/

#section1 .subttl {
    font-weight: bold;
    text-shadow: 0 0 #000;
}

.make-large-logo{
    min-width: 300px;
}

.testimonial-item{
  display: flex;
  flex-wrap: wrap;
}

.testi-img {
    width: 160px;
    height: 160px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}

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

.testi-info{
  padding-left: 60px;
  text-align: left;
  width: calc(100% - 160px);
}

.testi-info strong{
    font-weight: 600;
    font-size: 15px;
    display: block;
    line-height: 22px;
}

.testi-info span{
  font-weight: 500;
  color: #1e2022;
  display: block;
  font-size: 13px;
  font-style: italic;
}

.owl-theme .owl-nav{
  margin: 0px;
}

.owl-theme .owl-nav [class*='owl-'] {
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  color: #1e2022;
  text-align: center;
  z-index: 200;
  border: 0;
  box-sizing: initial;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  padding: 0px;
  margin: -30px 0 0 0;
  font-size: 0px;
}

.owl-theme .owl-nav [class*='owl-']:hover{
  background: #ff8433;
}

.owl-theme .owl-nav .owl-prev{
  left: 0px;
}

.owl-theme .owl-nav .owl-next{
  right: 0px;
}

.owl-theme .owl-nav .owl-prev:before {
    content: "\e92f";
    margin-right: 2px;
}

.owl-theme .owl-nav .owl-next:before, .owl-theme .owl-nav .owl-prev:before {
    font-size: 25px;
    font-family: inspiro-icons !important;
}

.owl-theme .owl-nav .owl-prev:before , .owl-theme .owl-nav .owl-next:before {
    color: #1e2022;
}

.owl-theme .owl-nav .owl-prev:hover:before , .owl-theme .owl-nav .owl-next:hover:before {
    color: #ffffff;
}

.owl-theme .owl-nav .owl-next:before {
    margin-left: 4px;
    content: "\e930";
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--brand-orange);
}

.accordion.fancy.radius.clean.mb-12 {
  margin-bottom: 6rem;
}

#modal-3 .modal-content , #modal-4 .modal-content{
  background: transparent;
  border: none;
  border-radius: 0px !important;
}

#modal-3 .modal-content .modal-body , #modal-4 .modal-content .modal-body{
  padding: 0px;
}

#modal-3 .modal-content .modal-footer .btn-orange , #modal-4 .modal-content .modal-footer .btn-orange {
    padding: 0;
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 20px;
}

#modal-3 .modal-content .modal-footer, #modal-4 .modal-content .modal-footer {
    padding: 0;
    border: none;
    position: absolute;
    top: -55px;
    right: 5px;
    z-index: 22;
}

#modal-3 .modal-dialog , #modal-4 .modal-dialog{
  margin-top: 75px;
}

.footer-part{
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212125;
  color: #666;
}

.footer-part p {
    margin-bottom: 1rem;
    line-height: 2em;
    color: #ffffff;
}

.footer-part h4 {
  color: #b3b3b3;
  font-size: 1.25rem;
  font-weight: 200;
  text-transform: uppercase;
}

.footer-part a {
  text-decoration: none;
  color: #c8c8c8;
  font-weight: 300;
}

.footer-part a:hover {
  color: #b3b3b3 !important;
}

/* Testimonial Feedback */
.testi-author {
  margin-bottom: 1.2rem;
}

.testi-author h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  color: #1e2022;
  letter-spacing: 0.02em;
}

.testi-author .role {
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: #555;
}

.testi-quote {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  color: var(--neutral-text);
}

.testi-info {
  padding: 40px 60px;
  max-width: 800px;
  text-align: left;
}

.testimonial.testimonial-single .testimonial-item {
    align-items: center;
}

/* LP2 */

.text-orange, .text-orange strong {
    color: #fe7d01;
}
.text-white {
    color: #fffbf8;
}

/* Section 4 */

.col-lg-3 {
  position: relative;
}

/* Default */
.text-box,
.hover-text {
  padding: 40px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  padding: 20px 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ONLY apply hover effect if hover text exists */
.col-lg-3.has-hover:hover .text-box {
  opacity: 0;
}

.col-lg-3.has-hover:hover .hover-text {
  opacity: 1;
}

.icon.mb-0.ml-4 {
  margin-right: 7px;
}

/* LP2 HTML Vinay start */

/* ================= COMMON ================= */
.section-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= SECTION 1 (TEAM) ================= */
.team-section {
  padding: 70px 0 80px;
  text-align: left;
  background: #fffbf8;
  margin-top: 0;
}

.team-card:hover {
  box-shadow: 2px 2px 15px #666161;
  scale: 1.05;
}
.team-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  background: #F5B589;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 15px #bcb7b7;
}
.team-section .team-wrapper {
  display: flex;
  justify-content: space-evenly;
  gap: clamp(30px, 8vw, 140px);
}

.team-section .image {
  width: clamp(220px, 22vw, 260px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.team-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section h3 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #1b1b1b;
  font-weight: 500;
  text-transform: none;
}
.team-section .section-container a{
    color: #202020;
}
.team-section .section-container a:hover{
    color: #666161d4;
}
.team-section .info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: clamp(12px, 0.95vw, 17px);
  color: #202020;
}

.team-section .info p:last-child {
  margin-bottom: 0;
}

.team-section .emails {
  width: fit-content;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #242424;
  font-size: clamp(12px, 0.95vw, 17px);
}

.team-section .emails p {
  margin: 0;
  line-height: 1.45;
}

/* ================= SECTION 3 (GOAL) ================= */
.goal-section {
  padding: 50px 0 76px;
  text-align: center;
  background: #fffbf8;
}

.goal-section .main-title {
  color: #d98937;
  font-size: clamp(28px, 2.2vw, 36px);
  margin: 0 0 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.goal-section .sub-title {
  color: #d98937;
  font-size: 1.5rem;
  margin: 52px 0 26px;
  font-weight: 700;
  text-transform: none;
}

.goal-section .goal-box {
  background-image: linear-gradient(45deg, #706560, #817b77);
  color: #fff;
  padding: 16px 20px;
  border-radius: 24px;
  line-height: 1.38;
  max-width: 360px;
  margin: 0 auto;
  box-sizing: border-box;
}
.goal-section .goal-box:hover {
  scale: 1.05;
}
.goal-section .cta-wrapper {
  margin-top: 42px;
}
.goal-section .goal-box svg {
    margin-bottom: 10px;
}
.goal-section .cta-wrapper a:hover {
  color: #fff;
  background: var(--accent-2) !important;
}
.goal-section .cta-button {
  background: var(--brand-orange);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  color: #fff !important;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.2px;
}
.goal-section .goal-box p {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 30px);
  font-weight: 500;
}

.goal-section .goal-box.large {
  max-width: 575px;
  border-radius: 26px;
  padding: 18px;
  background: #f5e9e1;
  color: #64696e;
  box-shadow: 0px 5px 9px #dfdfdf;
}

.goal-section .goal-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}

/* ================= SECTION 6 (EVENTS) ================= */
.events-section {
  background: #f5f3ef;
  padding: 50px 0;
}

/* HEADER */
.main-title {
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4a4a4a;
}

.title-line {
  display: block;
  width: 40px;
  height: 2px;
  background: #e6a23c;
  margin: 12px auto 40px;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 50px;
}

/* CARD */
.event-card {
  transition: 0.3s ease;
  max-width: 300px;
  width: 100%;
  justify-self: center;
  background-color: #fff;
  border-radius: 10px;
}

.event-card .card-content {
    padding: 0 20px;
}

.event-card .hovertext {
  position: absolute;
  top: 0;
  padding: 20px;
  color: white;
  opacity: 0;
}
.hovertext p {
  color: #0b0a0a;
  text-align: center;
  font-size: 10px;
}
.card-image:hover .hovertext{
    opacity: 1;
}
/* IMAGE */
.card-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card .card-content a:hover {
  color: #868585;
}
.card-content .arrow {
  color: #ff8433;
}


/* CONTENT */
.card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content a {
  text-decoration: none;
  color: #4a4a4a;
}

.card-content a:hover {
  color: #e89c1c;
}

.event-list {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.event-card:hover {
  transform: translateY(-5px);
}

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

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    padding: 20px 20px;
  }
}
/* ================= SECTION 9 (JOBS) ================= */
.jobs-section {
  padding: 52px 0 64px;
  text-align: center;
  background: #fffbf8;
}
.jobs-section h2{
    letter-spacing: 0;
}

.jobs-section .jobs-title {
  color: #d98a3a;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  margin: 0 0 16px;
}

.jobs-section .jobs-subtitle {
  max-width: 1020px;
  margin: 0 auto 30px;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.35;
  color: #1f1f1f;
}

.jobs-section .jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.jobs-section .job-card {
  background: #817b77;
  color: #fff;
  padding: 20px 20px 18px;
  border-radius: 32px;
  text-align: left;
  min-height: 340px;
  box-sizing: border-box;
}

.jobs-section .card-header-job {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.jobs-section .card-header-job h3 {
  color: #fff;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
}

.jobs-section .job-card ul {
  margin: 0;
  padding-left: 18px;
}

.jobs-section .job-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.jobs-section .job-card li:last-child {
  margin-bottom: 0;
}

.jobs-section .job-card .icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
}

.jobs-section .cta-wrapper {
  margin-top: 42px;
}

.jobs-section .cta-wrapper a:hover {
  color: #fff;
  background: var(--accent-2) !important;
}

.jobs-section .cta-button {
  background: var(--brand-orange);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  color: #fff !important;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.2px;
}

#section1 h1.text-xl-large {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px #3f3d3d;
}

.lp2#section1 .subttl {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 15px;
  color: #191919;
  letter-spacing: 1px;
}

.team-section .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* White user icon inside */
.team-section .user-icon::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 12c2.7 0 5-2.3 5-5s-2.3-5-5-5-5 2.3-5 5 2.3 5 5 5zm0 2c-3.3 0-10 1.7-10 5v3h20v-3c0-3.3-6.7-5-10-5z"/></svg>') no-repeat center;
  mask-size: contain;
}

/*.icon.phone-icon {
  margin-right: 10px;
}*/
/* White phone icon inside */
.team-section .phone-icon::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1 .4 2 .6 3.1.6.7 0 1.3.6 1.3 1.3V21c0 .7-.6 1.3-1.3 1.3C10.3 22.3 1.7 13.7 1.7 3.3 1.7 2.6 2.3 2 3 2h3.3c.7 0 1.3.6 1.3 1.3 0 1.1.2 2.1.6 3.1.1.4 0 .9-.2 1.2l-2.2 2.2z"/></svg>') no-repeat center;
  mask-size: contain;
}
.team-section .email-icon::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/></svg>') no-repeat center;
  mask-size: contain;
}
.accordion.fancy.radius.clean.mb-12 {
  margin-bottom: 1rem;
}

/*feedback lp2*/
.footer-part .row.justify-content-end {
  align-items: center;
}
.team-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  max-width: 550px;
  width: 100%;
  margin: auto;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.team-section .image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: clip;
  border: 5px solid #f5f5f5;
}

.team-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Role */
.team-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #888;
  font-weight: 500;
}

/* Info text */
.team-section .info {
  text-align: left;
}
.team-section .info p {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1;
}

/* Name highlight */
.team-section .name {
  font-weight: 600;
  font-size: 16px;
}

/* Links */
.team-section a {
  color: #333;
  text-decoration: none;
}

.team-section a:hover {
  text-decoration: underline;
}

/* Icons (clean modern circles) */
.team-section .icon {
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.team-section .info a,
.team-section .info span,
.team-section .info {
  word-break: break-word;
}
.team-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.jobs-section .job-card .icon svg {
  width: 60px;
  height: 60px;
}
/* Footer lp2*/
/*#footer {
  padding-bottom: 138px;
}*/

#footer .copyright-content {
    background-color: #e6e6e6;
}
.footer-pages {
  gap: 35px;
  display: flex;
  justify-content: end;
}
.footer-pages a {
  line-height: 1.6;
}
#footer .copyright-content {
    font-size: 16px;
}
#footer .footer-pages a:hover {
  color: #808080 !important;
}

.lp2 .text-medium {
  font-size: 60px !important;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 20px;
  color: black;
  letter-spacing: -2px;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}
.lp2 .text-medium::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 17px;
  width: 70px;
  height: 6px;
  background-color: #ec8742;
}

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

@media (min-width:  1200px) and (max-width: 1600px) {
    .orange-box .text-box, .orange-box .hover-text {
        height: 100% !important;
    }
    .hover-text {
        padding: 20px 10px;
    }
    .hover-text h5{
        line-height: 1.5;
        font-size: 1rem;
    }
}
@media (max-width: 1118px) {
  .team-card {
    flex-direction: column;
  }
  .team-card .image{
    margin: 10px auto;
  }
}
@media (min-width:  992px) and (max-width: 1024px) {
    #footer {
        padding-bottom: 50px;
    }
}
@media (min-width:  767px) and (max-width: 991px) {
    #footer {
        padding-bottom: 20px;
    }
}
@media (min-width:  512px) and (max-width: 766px) {
    #footer {
        padding-bottom: 50px;
    }
}
@media (min-width:  320px) and (max-width: 511px) {
    #footer {
        padding-bottom: 90px;
    }
}
@-moz-document url-prefix() {
    @media (min-width:  436px) and (max-width: 511px) {
        .footer-pid-13 {
            padding-bottom: 90px !important;
        }
    }
    @media (min-width:  380px) and (max-width: 435px) {
        .footer-pid-13 {
            padding-bottom: 180px !important;
        }
    }
    @media (min-width:  364px) and (max-width: 379px) {
        .footer-pid-13 {
            padding-bottom: 140px !important;
        }
    }
    @media (min-width:  343px) and (max-width: 363px) {
        .footer-pid-13 {
            padding-bottom: 110px !important;
        }
    }
    @media (min-width:  320px) and (max-width: 342px) {
        .footer-pid-13 {
            padding-bottom: 140px !important;
        }
    }
}
@media (max-width: 992px) {
    .lp2 .text-medium::before {
        left: 13px;
    }
  .team-wrapper {
    grid-template-columns: 1fr;
  }
  .team-section .team-wrapper {
    flex-direction: column;
  }

  .team-card {
    padding: 25px 20px;
    flex-direction: column;
  }

  .team-section .image {
    width: 150px;
    height: 190px;
  }

  .lp2#section1 .row {
    flex-direction: column;
    min-height: auto;
  }

  #section1 h1.text-xl-large {
    font-size: 3rem;
  }

  .jobs-section .jobs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hover-text {
      padding: 20px 10px;
  }
  .hover-text h5{
      font-size: 1.2rem;
  }

  .team-section .team-wrapper {
    gap: 42px;
  }

  .team-section h3 {
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .team-section .info p,
  .team-section .emails {
    font-size: clamp(12px, 2.8vw, 16px);
  }
  .team-section {
  text-align: center;
  }
  .team-section .info p{
    justify-content: center;
  }

  .goal-section .sub-title {
    margin: 36px 0 20px;
  }

  .goal-section .goal-box {
    max-width: 620px;
    border-radius: 20px;
  }

  .goal-section .goal-box.large {
    max-width: 760px;
  }

  .goal-section .goal-box p {
    font-size: clamp(16px, 2.8vw, 22px);
  }

  .jobs-section .jobs-subtitle {
    margin-bottom: 24px;
  }

  .jobs-section .job-card {
    min-height: auto;
  }

  .jobs-section .cta-wrapper {
    margin-top: 28px;
  }

  .jobs-section .cta-button {
    position: initial;
  }
}

/* LP2 HTML Vinay end */


@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 100%;
    }

    .modal{
      padding-left: 15px;
      padding-right: 15px;
    }
}

@media(max-width: 991.50px){
  #header #logo{
    left: 30px;
  }

  .heading-text {
      margin-bottom: 30px;
  }

  .testi-img{
    width: 80px;
    height: 80px;
    margin: 20px auto;
  }

  .testi-info {
    padding-left: 0px;
    text-align: center;
    width: calc(100%);
  }

  .testimonial.testimonial-single .testimonial-item {
    padding: 10px 60px;
  }
}

@media(max-width: 767.50px){

    .lp2 .text-medium {
        font-size: 50px !important;
    }
   #section13 > div > div > div {
        height: inherit !important;
    }
    .lp2#section1 .subttl {
        color: white;
        letter-spacing: 0.8px;
    }
  .text-box{
    padding: 30px;
  }

  .text-box.hover-effect i {
      margin: 0px 0 15px 0;
  }

  .text-box.hover-effect:hover i {
    margin: 0px 0 15px 0;
  }

  .text-box.hover-effect{
      height: auto !important;
      padding: 30px 30px 30px 30px;
  }

  h2{
    line-height: normal !important;
  }

  .p-t-150 {
    padding-top: 80px !important;
  }

  .p-b-150 {
    padding-bottom: 80px !important;
  }

  .timeline .timeline-item {
    margin: 3rem 2rem 3rem 2rem;
  }

  .container {
    width: 100vw;
  }

  .carousel .flickity-button.previous, .carousel .flickity-button.previous:hover {
    left: -15px !important;
  }

  .carousel .flickity-button.next, .carousel .flickity-button.next:hover{
    right: -15px !important;
  }

  .accordion .ac-item .ac-title {
    padding-right: 30px;
    font-weight: 900;
  }

  .first-box .list-icon {
    background: rgba(255,255,255,0.85);
  }

  .bg-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
  }

  #section1 .text-medium , #section1 .subttl{
    color: var(--white);
    text-shadow: none !important;
  }

  .mfp-ready .modal {
    padding: 50px 20px;
  }

  .footer-part .col-xs-12{
    width: 100%;
    margin-bottom: 35px;
  }
  .footer-part.image-footer{
    text-align: center;
  }
  .image-footer .col-xs-12:last-child{
    margin-bottom: 65px !important;
  }
  .footer-part .col-xs-12:last-child{
    margin-bottom: 0;
  }

  .footer-part{
    padding-bottom: 7rem;
  }
  .footer-pages {
    justify-content: center;
    flex-wrap: wrap;
  }
  .testi-info {
    padding: 0;
  }
  .footer-copyright {
    margin-bottom: 1.5rem;
  }

}

@media(max-width: 576.50px){
    .lp2 .text-medium::before {
        left: 9px;
    }
  .lp2#section1 .col-lg-6 {
      padding-left: 10px;
    }
  #section1 h1.text-xl-large {
    font-size: 2rem;
  }
  .goal-section .sub-title {
    line-height: 25px;
  }
  .text-medium {
    font-size: 2.2rem !important;
  }
  .goal-section .sub-title {
    margin: 30px 0 30px;
    line-height: 25px;
  }
  .goal-section .goal-grid {
    gap: 16px;
  }

  .jobs-section .job-card li {
    line-height: 1.64;
  }

  .footer-part{
    padding-bottom: 10rem;
  }

  #section1 {
      background-attachment: initial;
  }

  .hover-text {
      padding: 20px 10px;
  }
  .hover-text h5{
      font-size: 1rem;
  }
}