* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.consultation-tab {
  border:unset;
  position: fixed;
  top: 60%;
  left: 38px;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  background-color: rgba(170, 49, 36, 1);
  color: white;
  padding: 0.90rem 2rem;
  border-radius: 0 0 20px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

.consultation-tab:hover {
  padding: 1rem 2rem;
  transform: rotate(-90deg) translateY(-40%);

}

/* Hero Section */
.hero {
    background-image: url(../images-new/bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 150px 5rem 10px;
    min-height: 80vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content h1 {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 10vh;
    font-size: 60px;
    color: #535353;
    font-weight: 400;
    /*margin-bottom: 1.5rem;*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 76px;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 7rem;
}

.swiper-pagination-bullet {
    background: white !important;
}

.slides {
  position: relative;
}

.slide {
  display: none;
  animation: fade 1s ease-in-out;
}

.slide.active {
  display: block;
}

.highlight {
    font-weight: 700;
    color: #ffffff;
}

.hero-content p {
    color: #FFFFFF;
    /*opacity: 0.4;*/
    opacity: 1.4;
    font-size: 18px;
}

.cta-btn {
    margin-top: 1.5rem;
    background: linear-gradient(to right, #232323 -28%, #797A7E 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    border: 0.05rem solid #747578;
}

.cta-btn:hover {
    background: #777;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Clients Section */
.clients {
    padding: 60px 5rem 50px;
    text-align: center;
    background: white;
}

.clients h2 {
    margin-bottom: 3rem;
    font-size: 20px;
    color: #333;
}

.light-header {
    font-weight: 400;
}

.logo-slider {
  overflow: hidden;
  width: 709px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  position: relative;
}

.logo-track {
  max-height: 62px;
  display: flex;
  width: fit-content;
  animation: scroll-left 40s linear infinite;
  gap: 3rem;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 30px;
}


.logo-row img {
  max-height: 60px;
  max-width: 113px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.5s ease;
}

.logo-row hr {
  height: 40px;
  width: 1px;
  background-color: #ccc;
  border: none;
}

.logo-row img:hover {
  filter: none;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.products, .services {
    padding: 100px 5rem;
    text-align: center;
    background: #f8f8f8;
    color:#000;
}

.about {
    padding: 50px 5rem 100px;
    background: #ffffff;
    text-align: center;
    color:#000;
}

.about h2, .products h2, .services h2, .expertise h2, .blog-article h2, .key-insights h2, .testimonials h2, .faq h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 26px;
    color: #000;
}

.about p, .products p, .services p {
    max-width: 925px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 30px;
    color: #1B1B1B;
    font-weight: 400;
}
.services p {
    margin: 0 auto 40px
}

.products p {
    margin: 0 auto 40px;
    max-width: 821px;
}

.services p {
   max-width: 1071px;
    font-weight: 400;
} 

.know-more-btn, .learn-more-btn, .read-blogs-btn {
    background: linear-gradient(to right, #232323 -28%, #797A7E 100%);
    color: white;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #737373;
}

.know-more-btn:hover, .learn-more-btn:hover, .read-blogs-btn:hover {
    background: #444;
}

/* Products Section */
.products {
    background: #f9f7f4;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 630px;
    margin: 0 auto 40px;
}

.product-card {
    width: 300px;
    height: 350px;
    background: #ffffff;
    padding-bottom: 2rem;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-card .image-wrapper {
    background: #F3E8D7;
    border-radius: 15px;
}

.product-card img {
    width: 100%;
    vertical-align: bottom;
}

.product-card h3 {
    margin: 1rem;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.view-details-btn {
    background: transparent;
    border: 1px solid #adadad;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s;
}

.view-details-btn:hover {
    background: #333;
    color: white;
}

.services {
    background: #ffffff;
}
.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 10px   ;
    margin-bottom: 40px;
}

.service-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 46px 24px 45px;
    border-radius: 1rem;
    line-height: 23px;
    font-size: 16px;
    transition: all 0.5s ease;
}

.service-item:nth-child(odd) {
  background-color: #ececec;
}

.service-item:nth-child(even) {
  background-color: #f4eee7;
}

.service-item:hover {
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-number {
    font-weight: 500;
    min-width: 100px;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 360px;
}

.service-title h3 {
    font-size: 18px;
    font-weight: 700;
}

.service-content p {
    margin: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-left h2 {
        text-align: center;
        font-size:30px !important;
}
.about h2, .products h2, .services h2, .expertise h2, .blog-article h2, .key-insights h2, .testimonials h2, .faq h2 {
    font-size: 30px !important;
    
}
  .service-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    text-align: center;
  }
  .service-title {
    align-items: left;
    justify-content: center;
  }
  .service-content p {
    text-align: center;
  }
}

/* Expertise Section */
.expertise {
    padding: 100px 5rem;
    text-align: center;
    background: rgba(246, 246, 246, 0.7);;
}

.expertise p, .blog-article p {
    max-width: 1200px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #323232;
    line-height: 23px;
    font-weight: 400;
} 

.expertise p, .blog-article p {
    max-width: 1069px;
    font-size: 16px;
    line-height: 26px;
}
.continue-reading-btn {
    background: transparent;
    border: 1px solid #767676;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.continue-reading-btn .down-arrow, .continue-reading-btn .up-arrow {
    padding-left: 1rem;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.extra-content-scroll::-webkit-scrollbar {
  width: 4px; /* thinner scrollbar */
}

.extra-content-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.extra-content-scroll::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 8px;
}

/* For Firefox */
.extra-content-scroll {
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.hidden {
  display: none;
}

/* Framework Section */
.framework {
    padding: 100px 5rem;
    background: #202020;
    color: white;
    text-align: center;
}

.framework-header p {
    color: #A4A4A4;
    font-size: 18px;
    opacity: 40%;
    margin-bottom: 1rem;
}

.framework-header .top-title {
    color: #A4A4A4;
    font-size: 18px;
    opacity: 100%;
    font-weight: 700;
    margin-bottom: 30px;
}

.framework-header .light-header {
    color: #A4A4A4;
}

.framework-header h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 26px;
}

.framework-header p:last-child {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
}

.framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.framework-card {
    background: #272727;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.framework-card:hover {
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
    border: 1px solid rgba(221, 221, 221, 0.3);
}

.framework-card h3 {
    color: white;
}

.framework-card p {
    color: #767676;
    line-height: 23px;
    font-size: 16px;
    font-weight: 400;
}

.framework-icon {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-bottom: 30px;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    right: 2rem;
    bottom: 20%;
    transform: translateY(20%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.floating-btn:hover svg {
    background: #555;
    border-radius: 50%;
}

.floating-toggle-content {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: 70px;
}

.floating-toggle-content.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Blog Article Section */
.blog-article, .extra-content {
    padding: 100px 5rem;
    text-align: center;
}

.extra-content {
    padding: 60px 20px 60px 50px;
}

.extra-content h2 {
    font-size: 28px;
}

.blog-article {
    background: #fcfbf9;
}

.blog-article h2, .extra-content h2{
    max-width: 900px;
    margin: 0 auto 26px;
}

.extra-content {
    background: #F5F5F5;
    border-radius: 20px;
    max-width: 1200px;
    margin: 10px auto;
    border: 1px solid #7373734a;
    scrollbar-width: thin;
    scrollbar-color: rgba(35, 35, 35, 1) transparent;
}

.extra-content-scroll {
    overflow-y: auto;
    max-height: 300px;
    padding-right: 30px;
}

.extra-content::-webkit-scrollbar {
  width: 4px;
}

.extra-content p {
    padding: 0 28px;
}

.extra-content-outer-box:first-of-type {
  margin-bottom: 40px;
}

/* Key Insights Section */
.key-insights {
    padding: 100px 5rem;
    text-align: center;
}

.key-insights p {
    font-size: 18px;
    color: #1B1B1B;
    margin-bottom: 40px;
}

.insights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}
.insights-grid a{
    text-decoration:unset;
}
a{
    text-decoration:unset;
}
.insight-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.insight-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.insight-content {
    padding: 1.5rem;
    text-align: left;
}

.insight-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.read-more-btn {
    background: transparent;
    border: 1px solid #767676;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.read-more-btn:hover {
    background: #333;
    color: white;
}


/* Customer Testimonials Section */
.testimonials {
    padding: 5rem;
    background: #F8F5F1;
    text-align: center;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.swiper {
  padding-bottom: 40px;
}

.swiper-slide {
  height: auto;
  display: flex;
  margin-right: 20px !important;
}

.testimonials-swiper .swiper-pagination {
    margin: 0;
    padding-top: 20px;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 1) !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: #fdfcfb;
    padding: 28px 5px 28px 28px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding-right: 28px;
    gap: 20px;
}

.company-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.customer-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom:16px;
}

.customer-info p {
    color: #666;
    font-size: 0.9rem;
    line-height:20px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    max-height: 232px;
    overflow-y: auto;
    padding-right: 28px;
}

.testimonial-text {
  max-height: 232px;
  overflow-y: auto;
  padding-right: 20px;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #00000099 transparent;
}

/* Chrome, Edge, Safari */
.testimonial-text::-webkit-scrollbar {
  width: 5px; /* You can reduce to 4px if needed */
}

.testimonial-text::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background-color: #00000099; /* Black scrollbar */
  border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 5rem 5rem 10rem;
    background: #ffffff;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f8f8;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: #f8f8f8;
    transition: background 0.3s;
    text-align: left;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question span:first-child {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 500;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 25px;
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.bottom-wrapper {
    position: relative;
}

/* CTA Section */

.cta-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url(../images-new/bg-2.png);
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: -7rem;
    position: relative;
    z-index: 2;
    border-radius: 20px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  max-height: 200px;
}

.cta-left {
  flex: 1;
}

.cta-left h2 {
  font-size: 38px;
  line-height: 42px;
}

.cta-left .faded {
  opacity: 0.7;
  font-weight: 400;
}

.cta-left .bold {
  display: block;
  font-weight: 700;
  font-size: 30px;
}

.cta-center {
  flex: 0 0 auto;
  position: relative;
  margin-top: -90px;
  z-index: 10;
}

.cta-image {
  height: 300px;
  object-fit: contain;
}

.cta-right {
  flex: 1;
  text-align: right;
  font-size: 16px;
}

.cta-description {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
  color: #EBEBEB;
}

.cta-phone {
    align-items: center;
    justify-content: end;
    font-size: 18px;
    display: flex;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    gap:3.1px;
}

/* footer styls */
footer {
    position: relative;
    padding-top: 15rem;
}

@media (max-width: 999px) {
    .logo-slider {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Note: Header responsive styles moved to components/header.css */

    .hero {
        min-height: inherit;
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding-top: 15vh;
        line-height:57px !important;
    }

    .client-logos {
        gap: 1.5rem;
    }

    .hero, .clients, .about, .products, .services {
        padding: 2rem;
    }

    .clients h2 {
        margin-bottom: 1rem;
    }

    .logo-slider {
        width: 100%;
    }

    .service-title {
        min-width: 240px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
    .expertise {
        padding: 2rem;
    }

    .framework {
        padding: 2rem;
    }

    .framework-header h2 {
        font-size: 1.8rem;
    }

    .framework-grid {
        grid-template-columns: 1fr;
    }

    .floating-contacts {
        right: 1rem;
    }

    .blog-article, .extra-content {
        padding: 2rem 0;
    }

    .blog-article h2, .extra-content h2 {
        font-size: 1.5rem;
    }

    .key-insights {
        padding: 2rem 0;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 2rem 0;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 2rem;
    }

    /* FAQ Mobile */
    .faq {
        padding: 2rem 0;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }

    /* CTA Mobile */
    .cta-section {
        margin-bottom: 0;
        border-radius: 0;
    }
    .cta-container {
        display: block;
        max-height: inherit;
        padding: 2rem;
    }
    .cta-right {
        text-align: left;
    }
    .cta-center {
        margin-top: 0;
    }

    .cta-phone {
        justify-content: flex-start;
    }

    footer {
        padding-top: 3rem;
        border-radius: 0 !important;
    }
}

.calendar-container {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 500px;
}
.hidden { display: none; }
.step { margin-top: 1rem; }
#time-slots button {
  margin: 4px;
}

.hero-content h2 {
    position: relative !important;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 10vh;
    font-size: 60px !important;
    color: #535353;
    font-weight: 400;
    /*margin-bottom: 1.5rem;*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 76px;
}

@media (max-width: 768px) {
        .hero-content h2 {
        font-size: 2rem !important;
        padding-top: 15vh;
        line-height:57px !important;
    }
}

/***hajna style for consultation form**/

.info-form {
    padding: 20px 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.confirm-btn {
    background: #737373 !important;
    text-align: center !important;
    border-radius: 56px !important;
    padding: 17px 33px 18px !important;
    font-size: 16px !important;
    margin: 0 auto !important;
}

.sbmtbtn p{
 margin:0 auto;
}
