/* Base styles with Satoshi font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Satoshi", sans-serif;
}

:root {
    --primary-color: #034ea2;
    --secondary-color: #14B8A6;
    --text-light: #ffffff;
    --border-color: #c5c1c1;
    --primary-background :rgba(136, 136, 136, 0.05);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

body {
    height: 100%;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding-right: 0px !important ;
}

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


.banner {
    position: relative;
    padding: 80px 20px;
    background: 
       url(/assets/images/transparent-bg.png) center / cover no-repeat, /* image on top */ linear-gradient(to bottom,  #d9e9fb,#f0f6ff);
    text-align: center;
    color: #000;
    overflow: hidden;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner h2 {
    /* text-transform: uppercase; */
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #1a1c29;
   /*  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); */
}
@media (max-width: 1024px) {
    .banner h2 {
        font-size: 60px;
    }
}
@media (max-width: 768px) {
    .banner {
        padding: 60px 15px;
    }

    .banner h2 {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .banner h2 {
        font-size: 40px;
    }
}
 @media (min-width: 768px) {
    .banner h2 br {
      display: inline;
    }
  }
  
  /* Small devices (hide line break) */
  @media (max-width: 767px) {
    .banner h2 br {
      display: none;
    }
  }
.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 500;
}

/* Header styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures header stays above other content */
    padding: 20px 7%;
    background-color: white; /* Or your preferred color */
    width: 100%;
}

.logo {
    margin-left: 40px;
}
 .logo img {
        
        height: 50px;
    }
/* Mobile view (typically < 768px) */
@media (max-width: 767px) {
    .logo img {
        width: 150px;
        height: 38px;
    }
}

/* Animated lines - Mobile only */
.lines-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    left: 5%;
    transition: all 0.3s ease;
}

.line {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.line:nth-child(1) {
    width: 15px;
}

.line:nth-child(3) {
    width: 20px;
}

.lines-menu:hover .line {
    width: 25px;
}

/* Show only on mobile devices (typically < 768px) */
@media (max-width: 767px) {
    .lines-menu {
        display: flex;
    }
    header {
        padding: 20px 5%;
    }
}

/* Navigation styles */
.nav-button {
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.notification-badge {
    position: relative;
}

/* Banner styles */
.banner {
    padding: 40px 5%;
    text-align: center;
  
}

.desktop-banner {
    display: block;
    max-width: 1200px;
    width: -webkit-fill-available;
    height: auto;
}

.mobile-banner {
    display: none;
    max-width: 100%;
    height: auto;
}

.banner-buttons {
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.primary-button {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-button {
    text-decoration: none;
    background-color: var(--text-light);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Updated Companies section */
.companies {
    padding: 30px 5% 40px;
    text-align: center;
    background-color: white;

    position: relative;
}

.companies p {
    padding: 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Desktop Logos Grid */
.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.company-logo {
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Slider */
.company-slider {
    display: none;
    width: 100%;
    overflow: hidden;
}

.slick-slide {
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.slick-list {
    overflow: hidden;
    margin: 0 -15px;
}

.slick-track {
    display: flex;
    align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mobile-services-grid {
    display: grid;
   
}
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .center-nav {
        display: none !important;
    }

    .company-logos {
        display: none;
    }

    .company-slider {
        display: block;
    }

    .company-logo {
        height: 40px;
        padding-right: 20px;
    }
}

/* Mobile sidebar */
.offcanvas {
    width: 250px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

/* Optional edge fade effect for slider */
.companies:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.companies:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;

    pointer-events: none;
    z-index: 2;
}

/* Base Styles */
.services-section {
    font-family: "Satoshi", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    padding: 25px 15px;
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Desktop Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}

.service-card h3 {
    font-size: 1.3rem;

    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Grid Layout - 3 columns */
.mobile-services-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-service-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px 10px; /* slightly more padding for containment */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center; /* centers both image and text */
    justify-content: center;
    text-align: center; /* centers the text */
    overflow: hidden; /* prevents content from overflowing */
}

.mobile-service-icon {
    width: 50px; /* slightly smaller to fit the card */
    height: 50px;
    display: flex; /* use flex to center image */
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* spacing between icon and text */
}

.mobile-service-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mobile-service-item h4 {
    font-size: 0.85rem;
    margin: 0; /* remove extra margin */
    font-weight: 600;
    text-align: center;
    word-break: break-word; /* prevents long text from overflowing */
}


.mobile-service-item p {
    display: none;
    /* Hide description in mobile view */
}
.mobile-toggle-button {
    display: none;
}

/* For mobile responsiveness */
@media (max-width: 480px) {
    .mobile-toggle-button::before,
    .mobile-toggle-button::after {
        width: 70px; /* Shorter lines on small screens */
    }

    .mobile-toggle-button {
        position: relative;
        display: block;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: transparent;
        color: var(--primary-color);
        font-weight: 400;
        margin: 25px auto 0;
        cursor: pointer;
        font-size: 0.95rem;
        padding: 8px 15px;
        border-radius: 4px;
        text-align: center;
        width: fit-content; /* Ensure button only takes needed width */
    }

    .mobile-toggle-button::before,
    .mobile-toggle-button::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 50px; /* Adjust line length as needed */
        height: 1px;
        background-color: rgba(0, 0, 0, 0.2); /* Line color */
    }

    .mobile-toggle-button::before {
        right: 100%;
    }

    .mobile-toggle-button::after {
        left: 100%;
    }
}

.mobile-hidden-row {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        display: none;
    }

    .mobile-services-grid {
        display: grid;
    }

    .services-header h1 {
        padding: 25px 15px;
        font-size: 35px;
    }

    .services-section {
        background: none;
    }

    .mobile-toggle-button {
        display: block;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 10px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: #dd730a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h1 {
    padding: 25px 15px;
    font-size: 60px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-tab {
    font-size: 18px;
    padding: 6px 14px;
    border-radius: 8px;
    background: transparent;
    border: none;

    color: #71717a;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1);
}

.view-all {
    text-align: right;
    margin-bottom: 30px;
}

.view-all a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
   border: 1px solid #cdcdcd;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: -15px 15px 9px 7px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease;
   background: #fff;

}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 25px;
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-title span {
    color: var(--primary-color);
}

.story-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.see-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}

.status.completed {
    background: #e2ffed;
    color: #1dbf73;
}

.status.in_progress {
    background: #e0fcff;
    color: var(--primary-color);
}

.stores {
    display: flex;
    gap: 10px;
}

.store-badge {
    color: rgba(92, 105, 114, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 28px;
    }

    .store-badge {
        font-size: 10px;
    }

    .status {
        font-size: 13px;
    }

    .section-header p {
        font-size: 16px;
    }

    .filter-tabs {
        flex-wrap: wrap;
        background-color: #fdfefe;
        border-radius: 8px;
        padding: 10px;
    }

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

.technologies-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 30px; 
    margin-top: 50px;
}
.tech-card {
    background: white; 
    border-radius: 12px; 
    padding: 30px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease;
    display: flex;           
    flex-direction: column;  
    align-items: center;    
    text-align: center;     
}

.tech-card h3 {
    font-size: 1.3rem;
     
}

.tech-card img {
    width: 40px; 
    height: 40px;
    display: block;
}


.tech-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
   
.tech-card
{
    background: white; 
    border-radius: 12px; 
    padding: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease;
}
.tech-card h3 {
    font-size: 1rem;
     
}

.tech-card img {
    width: 30px; 
    height: 30px;
    display: block;
}

   .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
           gap: 15px; 
    }

    .section-header h1 {
        font-size: 28px;
    }

    .tech-slider-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: scroll 40s linear infinite; /* Slower speed (40 seconds) */
        padding-bottom: 10px; /* Prevents shadow clipping */
    }

    .tech-slide {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

        max-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tech-slide h3 {
        font-size: 1.2rem;
        margin: 15px 0 10px;
        color: #333;
    }

    .tech-slide p {
        color: #666;
        line-height: 1.5;
        font-size: 0.95rem;
        margin: 0;
    }

    .tech-slide img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

/* Pause animation on hover */
.tech-slider-track:hover {
    animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-table {
        display: none !important;
    }

    .process-stacked {
        display: block !important;
    }

    .section-header h1 {
        font-size: 28px !important;
    }

    .section-header p {
        font-size: 16px !important;
        padding: 0 10px !important;
    }
}

@media (min-width: 769px) {
    .process-table div[style*="table-cell"] {
        width: 25%;
    }
}

/* Build Section */
.build-section {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.5rem;
    margin: 0 0 15px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Desktop Layout */
.build-grid-desktop {
    display: block;
}

.build-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.build-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 0 0 30%;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.build-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.build-card h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #333;
}

.build-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Slider */
.build-slider-mobile {
    display: none;
    margin: 30px -15px 0;
    padding: 0 15px;
}

.build-slider-mobile .slick-list {
    padding: 20px 0;
    overflow: visible;
}

.build-slider-mobile .build-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    margin: 0 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.build-slider-mobile .build-card:hover {
    transform: translateY(-5px);
}

.build-slider-mobile .build-card img {
    margin: 0 auto 15px;
    display: block;
}

.build-slider-mobile .build-card h3 {
    margin: 0 0 10px;
    color: #333;
}

.build-slider-mobile .build-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Slider dots customization */
.build-slider-mobile .slick-dots {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.build-slider-mobile .slick-dots li {
    margin: 0 5px;
}

.build-slider-mobile .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.build-slider-mobile .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.build-slider-mobile .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .build-grid-desktop {
        display: none;
    }

    .build-slider-mobile {
        display: block;
    }

    .section-header h1 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .build-slider-mobile .build-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .build-slider-mobile {
        margin: 30px -10px 0;
        padding: 0 10px;
    }

    .build-slider-mobile .build-card {
        padding: 15px;
        margin: 0 8px;
    }
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1300px;
    margin: 0 auto;

    border-radius: 50px;
    padding: 30px 30px 60px 30px;
}

.testimonials-container {
    position: relative;
    margin-top: 50px;
}

/* Rating Card Styles */
.rating-card-desktop {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: none; /* Hidden by default, shown on desktop */
}

.rating-card-mobile {
    height: 110px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 20px;
    display: none; /* Hidden by default, shown on mobile */
}

.rating-stars img {
    width: 120px;
    margin: 0 auto 10px;
}

.rating-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.rating-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.trustpilot-logo img {
    width: 120px;
    margin-top: 15px;
}

/* Testimonial Sliders */
.testimonials-slider-desktop {
    margin-left: 250px; /* Space for the rating card */
    display: none; /* Hidden by default, shown on desktop */
}

.testimonials-slider-mobile {
    display: none; /* Hidden by default, shown on mobile */
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating-text {
    background: #e2ffed;
    color: #1dbf73;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-author p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Industries Section */
.industries-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.industries-grid-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.industry-card {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: #333;
}

.industry-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Sliders */

/* Mobile Sliders */
.industries-slider-mobile {
    display: none;
    margin: 30px -15px 0;
    padding: 0 15px;
}

.testimonials-slider-mobile .slick-list,
.industries-slider-mobile .slick-list {
    padding: 20px 0;
    overflow: visible;
}

.industries-slider-mobile .industry-card {
    margin: 0 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonials-slider-mobile .slick-dots,
.industries-slider-mobile .slick-dots {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.testimonials-slider-mobile .slick-dots li,
.industries-slider-mobile .slick-dots li {
    margin: 0 5px;
}

.testimonials-slider-mobile .slick-dots li button,
.industries-slider-mobile .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.testimonials-slider-mobile .slick-dots li button:before,
.industries-slider-mobile .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.testimonials-slider-mobile .slick-dots li.slick-active button:before,
.industries-slider-mobile .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive Layouts */
@media (min-width: 992px) {
    .rating-card-desktop {
        display: block;
    }
    .testimonials-slider-desktop {
        display: block;
    }
    .rating-card-mobile {
        display: none;
    }
    .testimonials-slider-mobile {
        display: none;
    }

    .industries-grid-desktop {
        display: grid;
    }
    
}

@media (max-width: 991px) {
    .rating-card-desktop {
        display: none;
    }
    .testimonials-slider-desktop {
        display: none;
    }
    .rating-card-mobile {
        display: block;
    }
    .testimonials-slider-mobile {
        display: block;
    }

    .industries-grid-desktop {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid-desktop {
        display: none;
    }
    .industries-slider-mobile {
        display: block;
    }

    .section-header h1 {
        font-size: 28px !important;
    }

    .section-header p {
        font-size: 16px !important;
    }

    .rating-title {
        font-size: 24px;
    }

    .rating-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

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

    .industry-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-mobile,
    .industries-slider-mobile {
        margin: 30px -10px 0;
        padding: 0 10px;
    }

    .testimonial-card,
    .industry-card {
        padding: 15px;
        margin: 0 8px;
    }

    .industry-card h3 {
        font-size: x-large;
    }

    .industry-card p {
        font-size: large;
    }
    .rating-badge {
        display: flow;
    }
}

/* Slider Dots Styling */
.slick-dots {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Hide default number indicators */
.slick-dots li button:after {
    display: none;
}

.slick-prev {
    display: none !important;
}

.slick-next {
    display: none !important;
}

/* FAQ Section Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(0deg);
}

.faq-item:not(.active) .faq-toggle {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Active FAQ item */
.faq-item.active .faq-question {
    padding-bottom: 15px;
}

/* Hover effects */
.faq-question:hover h3 {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-question {
        padding: 15px 0;
    }
}

/* Other Services Section */
.services-container {
    position: relative;
}

.services-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 0 0 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Slider */
.services-slider-mobile {
    display: none;
    margin: 0 -15px;
    padding: 0 15px;
}

.services-slider-mobile .slick-list {
    padding: 20px 0;
    overflow: visible;
}

.services-slider-mobile .service-card {
    margin: 0 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Slider dots customization */
.services-slider-mobile .slick-dots {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.services-slider-mobile .slick-dots li {
    margin: 0 5px;
}

.services-slider-mobile .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.services-slider-mobile .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.services-slider-mobile .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .services-grid-desktop {
        display: none;
    }

    .services-slider-mobile {
        display: block;
    }

    .service-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .service-card h3 {
        font-size: x-large;
    }

    .service-card p {
        font-size: large;
    }
}

@media (max-width: 480px) {
    .services-slider-mobile {
        margin: 0 -10px;
        padding: 0 10px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
}

/* Blogs Section */
.blogs-container {
    position: relative;
}

.blogs-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.2rem;
    margin: 0 0 20px;
    color: #333;
    line-height: 1.4;
    text-align: left;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.link-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover .link-arrow {
    transform: translateX(3px);
}

.view-all-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Mobile Slider */
.blogs-slider-mobile {
    display: none;
    margin: 0 -15px;
    padding: 0 15px;
}

.blogs-slider-mobile .slick-list {
    padding: 20px 0;
    overflow: visible;
}

.blogs-slider-mobile .blog-card {
    margin: 0 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Slider dots customization */
.blogs-slider-mobile .slick-dots {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blogs-slider-mobile .slick-dots li {
    margin: 0 5px;
}

.blogs-slider-mobile .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.blogs-slider-mobile .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.blogs-slider-mobile .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .blogs-grid-desktop {
        display: none;
    }

    .blogs-slider-mobile {
        display: block;
    }

    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-link {
        margin-top: 20px;
        margin-left: 0;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blogs-slider-mobile {
        margin: 0 -10px;
        padding: 0 10px;
    }

    .blog-content {
        padding: 15px;
    }

   
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-button-primary:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 2rem !important;
    }

    .cta-section p {
        font-size: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px !important;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 5% !important;
    }

    .cta-section h1 {
        font-size: 1.8rem !important;
    }
}

/* contact page start here */

/* Contact Form Styles */
.contact-form-section {
    font-family: "Satoshi", sans-serif;
}

.contact-form label {
    color: rgba(92, 105, 114, 1);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button[type="submit"]:hover {
    background-color: #003d8f;
    transform: translateY(-2px);
}

.contact-form button[type="button"]:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 5%;
    }

    .contact-form {
        padding: 30px;
    }

    .section-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .contact-form button[type="submit"],
    .contact-form button[type="button"] {
        width: 100%;
    }
}

/* Consultation Form Styles */
.consultation-form-section {
    font-family: "Satoshi", sans-serif;
}

.consultation-form label {
    color: rgba(92, 105, 114, 1);
}

.consultation-form input,
.consultation-form textarea {
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.consultation-form button[type="submit"]:hover {
    background-color: #003d8f;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .consultation-form-section {
        padding: 40px 5%;
    }

    .consultation-form {
        padding: 30px;
    }

    .section-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .consultation-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }
}

/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.2s ease;
}
body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}
.chatbot-toggler span {
    color: var(--primary-color);
    position: absolute;
    background-color: #fff;
}
.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}
body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}
.chatbot {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 420px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
        0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
}
body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.chatbot header {
    padding: 10px;
    position: relative;

    color: #fff;
    background: #e0dfdf;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}
header h2 {
    font-size: 1.4rem;
}
.chatbot .chatbox {
    overflow-y: auto;
    height: 510px;
    padding: 30px 20px 100px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
    width: 6px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}
.chatbox .chat {
    display: flex;
    list-style: none;
}
.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}
.chatbox .incoming span {
    width: 32px;
    height: 32px;
    color: #000;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;

    border-radius: 4px;
    margin: 0 10px 7px 0;
}
.chatbox .chat p {
    white-space: pre-wrap;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    max-width: 75%;
    color: #fff;
    font-size: 0.95rem;
    background: var(--primary-color);
}
.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}
.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}
.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
}
.chatbot .chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
}
.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 0.95rem;
}
.chat-input span {
    align-self: flex-end;
    color: var(--primary-color);
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}
.chat-input textarea:valid ~ span {
    visibility: visible;
}
@media (max-width: 490px) {
    .chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }
    .chatbot {
        right: 0;
        bottom: 0;
        height: 90%;
        border-radius: 0;
        width: 100%;
    }
    .chatbot .chatbox {
        height: 90%;
        padding: 25px 15px 100px;
    }
    .chatbot .chat-input {
        padding: 5px 15px;
    }
    .chatbot header span {
        display: block;
    }
    .chatbot header {
        padding: 0px 10px;
    }
}

.chat-option {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-background);
    border-radius: 8px;
}

.chat-option p {
    margin: 0 0 10px 0;
    color: #555;
}

.auth-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-divider {
    color: #777;
    font-size: 0.9rem;
}

section {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float img {
        width: 30px;
        height: 30px;
        margin-top: 10px;
    }
}
