
/* Reset and Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Heading Underline Style */
.section-heading-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 18px;
    color: #111 !important;
}

.section-heading-underline::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; /* Start from the left */
    bottom: 0;
    width: 50%; /* Initial width is 50% */
    height: 6px;
    background: linear-gradient(to right, #ff000e, #e5d118);
    border-radius: 3px;
    transition: width 0.3s ease-in-out; /* Smooth transition for width */
}

.section-heading-underline:hover::after {
    width: 100%; /* On hover, extend to 100% width */
}

/* Banner Styles */
.banner {
    width: 96vw;
    margin-left: 30px;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background: url('../images/services/team-working-together-achieve-better-results.jpg') center center/cover no-repeat;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: banner-fadein 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    border-radius: 0 0 36px 36px;
}

@keyframes banner-fadein {
    0% { opacity: 0; transform: scale(0.97) translateY(40px); }
    80% { opacity: 1; transform: scale(1.01) translateY(-6px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hexagon {
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hexagon.hex1 {
    left: 60px;
    top: 15%;
    width: 180px;
    height: 180px;
    animation: hex-float-1 4s ease-in-out infinite alternate;
}

.hexagon.hex2 {
    left: 170px;
    top: 36%;
    width: 200px;
    height: 200px;
    animation: hex-float-2 4.5s ease-in-out infinite alternate;
}

.hexagon.hex3 {
    left: 60px;
    bottom: 8%;
    width: 180px;
    height: 180px;
    animation: hex-float-3 5s ease-in-out infinite alternate;
}

@keyframes hex-float-1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px) scale(1.05); }
}

@keyframes hex-float-2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(25px) scale(1.07); }
}

@keyframes hex-float-3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-18px) scale(1.04); }
}

.banner-left {
    flex: 1;
    z-index: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sub-heading {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: scroll-center 6s linear forwards;
}

.sub-heading span {
    display: inline-block;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
}

@keyframes scroll-center {
    0% { transform: translateX(100vw); opacity: 0.2; }
    60% { transform: translateX(0%); opacity: 1; }
    100% { transform: translateX(0%); opacity: 1; }
}

.banner-left h1 span {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: block;
    margin-top: 18px;
}

.grand-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: #000000;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 24px rgba(132, 250, 176, 0.13), 0 2px 8px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
/* Services Banner Titles */
.services-banner-titles {
    background: rgba(255, 255, 255, 0.95);
    padding: 32px 0 18px 0;
    margin-bottom: 0;
}
.services-banner-titles .titles-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.services-banner-titles .title-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 0;
}
.services-banner-titles .title-row .title-pill {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-size: 1.08rem;
    position: relative;
    overflow: hidden;
   background: white;
    border:  2px solid #df0e0e;
    font-weight: 600;
    font-size: 22px;
    border-radius: 32px;
    padding: 14px 36px;
    margin: 0 6px;
   box-shadow: 0 4px 18px rgba(209, 11, 11, 0.1), 0 2px 8px rgba(0,0,0,0.04);
    letter-spacing: 0.03em;
      transition: background 0.4s, color 0.3s, box-shadow 0.3s, transform 0.2s, opacity 0.4s ease;
    cursor: pointer;
    z-index: 1;
    outline: none;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}
.services-banner-titles .title-row .title-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 14, 0.1), rgba(229, 209, 24, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 32px;
    z-index: 0;
}

.services-banner-titles .title-row .title-pill:hover,
.services-banner-titles .title-row .title-pill:focus {
    background: #edf2f7;
    color: #000000;
    box-shadow: 0 12px 40px rgba(235, 5, 5, 0.18), 0 4px 16px rgba(231, 198, 10, 0.25);
    transform: translateY(-3px) scale(1.07) rotate(-1deg);
    border-color: #df0e0e;
}

.services-banner-titles .title-row .title-pill:hover::before,
.services-banner-titles .title-row .title-pill:focus::before {
    opacity: 1;
}

.services-banner-titles .title-row .title-pill.main {
    background: white;
    color: #000000;
    /* box-shadow: 0 8px 32px rgba(0,123,255,0.18), 0 2px 8px rgba(0,0,0,0.04); */
    /* border: 2px solid #df0e0e; */
}

.services-banner-titles .title-row .title-pill.main:hover,
.services-banner-titles .title-row .title-pill.main:focus {
    background: #edf2f7;
    color: #050505;
    box-shadow: 0 16px 48px rgba(221, 4, 4, 0.22), 0 4px 16px rgba(218, 180, 13, 0.13);
    transform: translateY(-4px) scale(1.09) rotate(-2deg);
    border-color:  #df0e0e;
}

.services-banner-titles .title-row .title-pill.main:hover::before,
.services-banner-titles .title-row .title-pill.main:focus::before {
    opacity: 1;
}

.services-banner-titles .title-row .title-pill::after {
    content: "";
    position: absolute;
    left: -75%;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
    transform: skewX(-20deg);
    transition: left 0.5s;
    z-index: 2;
    pointer-events: none;
}

.services-banner-titles .title-row .title-pill:hover::after,
.services-banner-titles .title-row .title-pill:focus::after {
    left: 120%;
    transition: left 0.5s;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
    position: relative;
}
.services-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    position: relative;
}
.services-content {
    width: 100%;
}
.services-title {
    text-align: center;
    font-size:48px;
    font-weight: 800;
}
.services-desc {
      max-width: 700px;
    margin: 0 auto 30px auto;
    color: #444;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}
.barber-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    justify-content: center;
}
.barber-card {
   background: white;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 32px 16px 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: card-fadein 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}



@keyframes card-fadein {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.barber-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(132, 250, 176, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
}

.barber-card-header {
    font-size: 21px;
    font-weight: 800;
    color: #171718;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fa314a 30%, #e5d118 100%);
    border-radius: 12px;
    padding: 8px 0;
    width: 100%;
}

.barber-card-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
}

.service-img {
    width: 200px;
    height: 110px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-next-btn {
    background:#d4c40c;
    color: #101010;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 12px;
    transition: 0.3s ease;
    font-size: 18px;
}

/* Explore Solutions Theme */
.explore-solutions-theme {
    /* background: linear-gradient(120deg, #e3f0ff 0%, #cbe6e3 60%, #84fab0 100%); */
    padding: 70px 0 50px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(132, 250, 176, 0.13), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 36px;
    overflow: hidden;
    animation: fade-in-section 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.explore-solutions-main-title,
.explore-solutions-main-title1 {
    font-size: 48px;
    font-weight: 800;
    color: #1565c0;
    margin-bottom: 44px;
    letter-spacing: 0.06em;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 32px rgba(132, 250, 176, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    animation: wow-title 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    margin-left: 10px;
    text-align: center;
}

@keyframes wow-title {
    0% { opacity: 0; transform: scale(0.95) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.explore-solutions-cards {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.explore-solutions-desc {
    font-size: 20px;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.explore-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(132, 250, 176, 0.13), 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wow-card-fadein 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}

.explore-card:nth-child(1) { animation-delay: 0.3s; }
.explore-card:nth-child(2) { animation-delay: 0.6s; }

@keyframes wow-card-fadein {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.explore-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(132, 250, 176, 0.18), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.explore-card-header {
    font-size: 24px;
    font-weight: 800;
    padding: 22px 0;
    width: 100%;
    border-radius: 24px 24px 0 0;
    margin-bottom: 18px;
    color: black;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.blue-card .explore-card-header {
    /* background: linear-gradient(90deg, #112235 60%, #8fd3f4 100%); */
    background: linear-gradient(to right, #ff000e, #e5d118);
}

.red-card .explore-card-header {
    /* background: linear-gradient(90deg, #6d2823 60%, #f8fafc 100%); */
    background: linear-gradient(to right,#e5d118, #ff000e);
}

.explore-card-list {
    width: 100%;
    padding: 0 32px;
}

.explore-card-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 32px;
    animation: wow-list-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
}

.explore-card-item:nth-child(1) { animation-delay: 0.2s; }
.explore-card-item:nth-child(2) { animation-delay: 0.4s; }
.explore-card-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes wow-list-fadein {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.explore-card-item:last-child {
    margin-bottom: 0;
}

.explore-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(132, 250, 176, 0.10);
    animation: wow-icon-bounce 1.2s infinite alternate;
}

.explore-card-icon.blue {
    background: linear-gradient(90deg, #1b2d41 60%, #8fd3f4 100%);
    color: #fff;
}

.explore-card-icon.red {
    background: linear-gradient(90deg, #6d2823 60%, #f8fafc 100%);
    color: #fff;
}

@keyframes wow-icon-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-7px); }
}

.explore-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #011f39;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.explore-card-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    text-align: left;
    margin-left: 44px;
}

.end-to-end-desc {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

/* End-to-End Digital Services Section */
.end-to-end-services {
    background: linear-gradient(120deg, #e3f0ff 0%, #cbe6e3 60%, #84fab0 100%);
    padding: 70px 20px 50px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    background: linear-gradient(90deg, #8fd3f4 0%, #84fab0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 8px 32px rgba(132, 250, 176, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    animation: wow-title 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #444;
    font-size: 1.18rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

/* .service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,123,255,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s;
    min-height: 320px;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.16), 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.03);
} */
 /* Remove redundant .barber-card rule and keep one */
/* .barber-card {
    background: linear-gradient(180deg, #cbe6e3 0%, #e9e7d9 100%);
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 32px 16px 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: card-fadein 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
} */

/* Corrected .smart-building-circle-glow */
/* .smart-building-circle-glow {
    position: relative;
    box-shadow: 0 0 32px 8px #e5d118, 0 0 0 0 #fff;
    animation: circle-glow 2.5s infinite alternate;
} */

/* Updated .service-card with hover effect matching .step */
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,123,255,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s, background 0.4s ease;
    min-height: 320px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 14, 0.1), rgba(229, 209, 24, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px; /* Match the border-radius of .service-card */
}

.service-card:hover,
.service-card:active {
    box-shadow: 0 8px 32px rgba(0,123,255,0.16), 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.03);
    background: #edf2f7; /* Matches .step:hover */
}

.service-card:hover::before,
.service-card:active::before {
    opacity: 1;
}

/* Corrected .testimonial-quote in media query */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .testimonial-quote {
        font-size: 1.8rem;
    }
}

.service-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #1565c0;
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    border-radius: 50%;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(0,123,255,0.07);
    display: inline-block;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #011f39;
    letter-spacing: 0.01em;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e3f0ff;
    border-radius: 8px;
    margin: 10px 0 6px 0;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    /* background: linear-gradient(90deg, #8fd3f4 0%, #0b1f2b 100%); */
     background: linear-gradient(to right, #ff000e, #e5d118);
    border-radius: 8px;
    width: 0;
    transition: none;
    animation: progress-bar-grow 1.3s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes progress-bar-grow {
    from { width: 0; }
    to { width: var(--progress-width, 100%); }
}

.service-metric {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ff000e;
    margin: 2px 0 8px 0;
    text-align: center;
}

.service-desc {
    font-size: 16px;
    color: #444;
    margin-top: 8px;
    text-align: left;
    line-height: 1.5;
}

/* Smart Building Section */
.smart-building-diagram-section {
    width: 100%;
    background: #f8fafc;
    padding: 60px 0 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.smart-building-diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.smart-building-left,
.smart-building-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
}

.smart-building-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: smart-building-item-fadein 1s cubic-bezier(.4,0,.2,1) forwards;
}

.smart-building-left .smart-building-item:nth-child(1),
.smart-building-right .smart-building-item:nth-child(1) { animation-delay: 0.2s; }
.smart-building-left .smart-building-item:nth-child(2),
.smart-building-right .smart-building-item:nth-child(2) { animation-delay: 0.3s; }
.smart-building-left .smart-building-item:nth-child(3),
.smart-building-right .smart-building-item:nth-child(3) { animation-delay: 0.4s; }
.smart-building-left .smart-building-item:nth-child(4),
.smart-building-right .smart-building-item:nth-child(4) { animation-delay: 0.5s; }
.smart-building-left .smart-building-item:nth-child(5),
.smart-building-right .smart-building-item:nth-child(5) { animation-delay: 0.6s; }

@keyframes smart-building-item-fadein {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.smart-building-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(132,250,176,0.10);
}

.smart-building-icon.fire::before {
    content: "\f06d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f44336;
    font-size: 1.5em;
}

.smart-building-icon.hvac::before {
    content: "\f2c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1565c0;
    font-size: 1.5em;
}

.smart-building-icon.driver::before {
    content: "\f2db";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #00bcd4;
    font-size: 1.5em;
}

.smart-building-icon.security::before {
    content: "\f3ed";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #4caf50;
    font-size: 1.5em;
}

.smart-building-icon.automation::before {
    content: "\f085";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff9800;
    font-size: 1.5em;
}

.smart-building-icon.indoor::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #9c27b0;
    font-size: 1.5em;
}

.smart-building-icon.bigdata::before {
    content: "\f1c0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #607d8b;
    font-size: 1.5em;
}

.smart-building-icon.weather::before {
    content: "\f0c2";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2196f3;
    font-size: 1.5em;
}

.smart-building-icon.lighting::before {
    content: "\f0eb";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffc107;
    font-size: 1.5em;
}

.smart-building-icon.scheduler::before {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #607d8b;
    font-size: 1.5em;
}

.smart-building-label {
    font-size: 1.08rem;
    color: #011f39;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-width: 160px;
    text-align: left;
}

.smart-building-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 260px;
}

.smart-building-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #e3f0ff;
    border: 10px solid #ff000e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: #474f55;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(132,250,176,0.10);
}

.smart-building-circle span {
    line-height: 1.2;
    color: #011f39;
}

.smart-building-line {
    position: absolute;
    width: 120px;
    height: 2px;
    background: #1565c0;
    top: 50%;
    z-index: 0;
}

.smart-building-line-left {
    left: -120px;
}

.smart-building-line-right {
    right: -120px;
}

.smart-building-circle-glow {
    position: relative;
    box-shadow: 0 0 32px 8px #e5d118, 0 0 0 0 #fff;
    animation: circle-glow 2.5s infinite alternate;
}

@keyframes circle-glow {
    0% { box-shadow: 0 0 32px 8px #e5d118, 0 0 0 0 #fff; }
    100% { box-shadow: 0 0 48px 18px #e5d118, 0 0 0 0 #fff; }
}

.circle-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(132,250,176,0.13) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 2.5s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.smart-building-connector {
    background: linear-gradient(90deg, #8fd3f4 0%, #1565c0 100%);
    height: 3px;
    border-radius: 2px;
    opacity: 0.8;
    animation: connector-grow 1.2s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes connector-grow {
    from { width: 0; opacity: 0; }
    to { opacity: 0.8; }
}

.smart-building-desc-animated {
    margin-top: 48px;
    font-size: 1.22rem;
    color: #011f39;
    font-weight: 600;
    background: #e3f0ff;
    border-radius: 18px;
    padding: 18px 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(132,250,176,0.07);
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
    display: flex;
    align-items: center;
    gap: 14px;
}

.desc-icon {
    font-size: 2rem;
    animation: wow-icon-bounce 1.2s infinite alternate;
}

/* Your Success Section */
.your-success-section {
    position: relative;
    padding: 80px 20px;
    /* background: linear-gradient(120deg, #e3f0ff 0%, #cbe6e3 60%, #84fab0 100%); */
    overflow: hidden;
    z-index: 1;
    margin-top: 48px;
    /* box-shadow: 0 8px 32px rgba(132,250,176,0.13), 0 2px 8px rgba(0,0,0,0.08); */
    border-radius: 40px;
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
}

.your-success-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, #8fd3f4 0%, #e3f0ff 70%);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
    animation: gradient-move 8s linear infinite alternate;
}

@keyframes gradient-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.your-success-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.your-success-content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
}

.your-success-title {
    font-size: 48px;
    font-weight: 800;
    background: #000000;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    letter-spacing: 0.07em;
    text-shadow: 0 10px 40px rgba(132,250,176,0.18), 0 2px 8px rgba(0,0,0,0.10);
    animation: wow-title 1.2s cubic-bezier(.4,0,.2,1) both;
    display: flex;
    align-items: center;
    gap : 18px;
}

.your-success-title::before {
    content: "🌟";
    font-size: 2.2rem;
    animation: sparkle 1.8s infinite linear;
}

@keyframes sparkle {
    0%,100% { filter: brightness(1.2); }
    50% { filter: brightness(2.2); }
}

.your-success-subtitle {
    font-size: 18px;
    color: #011f39;
    font-weight: 600;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
    background: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 2px 8px rgba(132,250,176,0.07);
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
}

.your-success-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 700px;
    z-index: 1;
}

.ys-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(132,250,176,0.13), 0 2px 8px rgba(0,0,0,0.08);
    padding: 28px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    transition: box-shadow 0.3s, transform 0.2s;
    animation: wow-card-fadein 1s cubic-bezier(.4,0,.2,1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}

.ys-card:nth-child(1) { animation-delay: 0.1s; }
.ys-card:nth-child(2) { animation-delay: 0.2s; }
.ys-card:nth-child(3) { animation-delay: 0.3s; }
.ys-card:nth-child(4) { animation-delay: 0.4s; }
.ys-card:nth-child(5) { animation-delay: 0.5s; }
.ys-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes wow-card-fadein {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.ys-card:hover {
    box-shadow: 0 12px 40px rgba(0,123,255,0.18), 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-6px) scale(1.05) rotate(-1deg);
}

.ys-icon {
    font-size: 2.3rem;
    color: #fff;
    background: linear-gradient(135deg, #1565c0 60%, #84fab0 100%);
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,123,255,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wow-icon-bounce 1.2s infinite alternate;
}

.ys-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
    text-align: center;
}

.ys-desc {
    font-size: 1.01rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
}

.your-success-metrics {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    z-index: 1;
}

.ys-metric {
    background: linear-gradient(90deg, #e3f0ff 0%, #84fab0 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(132,250,176,0.13);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    animation: wow-card-fadein 1s cubic-bezier(.4,0,.2,1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    border: 2px solid #8fd3f4;
}

.ys-metric:nth-child(1) { animation-delay: 0.7s; }
.ys-metric:nth-child(2) { animation-delay: 0.8s; }
.ys-metric:nth-child(3) { animation-delay: 0.9s; }

.ys-metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #1565c0;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #84fab0;
}

.ys-metric-label {
    font-size: 16px;
    color: #444;
    font-weight: 600;
}

.your-success-logos {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    justify-content: flex-start;
}

.your-success-logos img {
    height: 36px;
    width: auto;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.2s, transform 0.2s;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(132,250,176,0.07);
}

.your-success-logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08) rotate(-2deg);
}

.ys-cta-btn {
    display: inline-block;
    margin-top: 10px;
    /* background: linear-gradient(90deg, #1565c0 60%, #84fab0 100%); */
    background: linear-gradient(to right, #ff000e, #e5d118);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 36px;
    border-radius: 28px;
    box-shadow: 0 4px 18px rgba(0,123,255,0.13), 0 2px 8px rgba(0,0,0,0.04);
    border: none;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
}

.ys-cta-btn:hover, .ys-cta-btn:focus {
    background: linear-gradient(90deg, #005fa3 60%, #00b4e6 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0,123,255,0.18), 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-2px) scale(1.07);
}

.your-success-image {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: fade-in-section 1.2s cubic-bezier(.4,0,.2,1) both;
}

.your-success-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 12px 48px rgba(132,250,176,0.18), 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    object-fit: contain;
    animation: wow-card-fadein 1.2s cubic-bezier(.4,0,.2,1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation-delay: 0.5s;
}

.success-center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 18px #e3f0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 6px solid #1565c0;
}

.success-center-img {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.success-center-title {
    color: #1565c0;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.success-top-left,
.success-bottom-left,
.success-bottom-right,
.success-top-right {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 6px solid;
}

.success-top-left {
    left: 10px;
    top: 20px;
    border-color: #fa314a;
}

.success-bottom-left {
    left: 20px;
    bottom: 10px;
    border-color: #fbc02d;
}

.success-bottom-right {
    right: 20px;
    bottom: 10px;
    border-color: #29b6f6;
}

.success-top-right {
    right: 10px;
    top: 20px;
    border-color: #00bcd4;
}

.success-top-left-img,
.success-bottom-left-img,
.success-bottom-right-img,
.success-top-right-img {
    width: 32px;
    height: 32px;
}

.success-top-left-title,
.success-bottom-left-title,
.success-bottom-right-title,
.success-top-right-title {
    color: inherit;
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
}

.success-top-left-label,
.success-bottom-left-label,
.success-bottom-right-label,
.success-top-right-label {
    color: #000000;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: -3px;
}

.success-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.success-diagram-inner {
    position: relative;
    width: 400px;
    height: 220px;
}

.your-success-testimonial {
    margin: 20px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(132,250,176,0.13);
    padding: 18px 24px;
    font-size: 1rem;
    color: #1565c0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 500px;
}

.testimonial-quote {
    font-size: 2rem;
    color: #84fab0;
    font-family: serif;
    font-weight: bold;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    color: #1565c0;
    font-size: 16px;
}

.testimonial-client {
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
    margin-left: 8px;
}

/* Workflow Section */
.workflow {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    overflow: hidden;
}

.workflow h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 60px;
}

.workflow-line {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 0;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
     transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}
.step::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 14, 0.1), rgba(229, 209, 24, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
}
.step:hover::before ,
.step:active::before {
    opacity: 1;
}
.step:hover,
.step:active {
    background: #edf2f7;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(1, 31, 57, 0.2);
}

.step:nth-child(odd) {
    top: -20px;
}

.step:nth-child(even) {
    top: 20px;
}

.step img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.step p {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

/* Media Queries for Mobile Devices (up to 768px) */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section-heading-underline {
        padding-bottom: 6px;
        margin-bottom: 12px;
        font-size: 1.8rem;
    }

    .section-heading-underline::after {
        width: 80px;
        height: 4px;
    }

    .banner {
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 500px;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 0 0 24px 24px;
        justify-content: flex-start;
    }

    .hexagon.hex1, .hexagon.hex2, .hexagon.hex3 {
        width: 100px;
        height: 100px;
        left: auto;
        right: 10px;
    }

    .hexagon.hex1 {
        top: 101px;
    }

    .hexagon.hex2 {
        top: 198px;
    }

    .hexagon.hex3 {
        top: 326px;
    }

    .banner-left {
        max-width: 90%;
        padding: 10px;
        text-align: center;
        order: 1;
               margin-right: 79px;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .sub-heading span {
        font-size: 1.5rem;
    }

    .banner-left h1 span {
        font-size: 1rem;
        margin-top: 10px;
    }

    @keyframes scroll-center {
        0% { transform: translateX(50vw); opacity: 0.2; }
        60% { transform: translateX(0); opacity: 1; }
        100% { transform: translateX(0); opacity: 1; }
    }

    .services-banner-titles {
        padding: 20px 10px;
    }

    .services-banner-titles .titles-row {
        gap: 16px;
    }

    .services-banner-titles .title-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
   .services-banner-titles .title-row .title-pill {
        min-width: 95%;
        font-size: 0.95rem;
   padding: 21px 15px;
   margin: 0;
        text-align: center;
    }

    .services-section {
        padding: 30px 10px;
    }

    .services-flex {
        flex-direction: column;
        gap: 20px;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-desc {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 20px;
        color: #4a5568;
        line-height: 1.9;
    }

    .barber-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }

    .barber-card {
        padding: 20px 12px;
    }

    .barber-card-header {
        font-size: 1.2rem;
        padding: 6px 0;
    }

    .barber-card-desc {
        font-size: 0.95rem;
    }

    .service-img {
        width: 150px;
        height: 80px;
    }

    .service-next-btn {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .explore-solutions-theme {
        padding: 40px 10px;
        border-radius: 24px;
    }

    .explore-solutions-main-title,
    .explore-solutions-main-title1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .explore-solutions-desc {
        font-size: 1.1rem;
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .explore-solutions-cards {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .explore-card {
        padding: 0 0 20px 0;
    }

    .explore-card-header {
        font-size: 1.2rem;
        padding: 15px 0;
    }

    .explore-card-list {
        padding: 0 20px;
    }

    .explore-card-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .explore-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .explore-card-title {
        font-size: 1.1rem;
    }

    .explore-card-desc {
        font-size: 0.95rem;
        margin-left: 35px;
    }

    .end-to-end-desc {
        font-size: 1.1rem;
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .end-to-end-services {
        padding: 40px 10px;
        margin-bottom: 10px;
    }

    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .services p {
        font-size: 1rem;
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        padding: 20px 15px;
        min-height: 280px;
    }

    .service-icon {
        font-size: 2rem;
        padding: 10px 15px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .smart-building-diagram-section {
        padding: 40px 10px;
    }

    .smart-building-diagram-container {
        flex-direction: column;
        gap: 20px;
    }

    .smart-building-left,
    .smart-building-right {
        gap: 20px;
    }

    .smart-building-item {
        gap: 12px;
    }

    .smart-building-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .smart-building-label {
        font-size: 1rem;
        min-width: 120px;
    }

    .smart-building-center {
        min-width: 200px;
        min-height: 200px;
    }

    .smart-building-circle {
        width: 160px;
        height: 160px;
        font-size: 1.8rem;
        border-width: 8px;
    }

    .smart-building-line {
        width: 80px;
    }

    .smart-building-line-left {
        left: -80px;
    }

    .smart-building-line-right {
        right: -80px;
    }

    .smart-building-desc-animated {
        font-size: 1rem;
        padding: 15px 20px;
        max-width: 90%;
        margin-top: 20px;
    }

    .desc-icon {
        font-size: 1.5rem;
    }

    .your-success-section {
        padding: 40px 10px;
        border-radius: 24px;
        margin-top: 20px;
    }

    .your-success-flex {
        flex-direction: column;
        gap: 20px;
    }

    .your-success-content {
        align-items: center;
        text-align: center;
    }

    .your-success-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .your-success-title::before {
        font-size: 1.8rem;
    }

    .your-success-subtitle {
        font-size: 1rem;
        padding: 8px 15px;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .your-success-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .ys-card {
        padding: 20px 15px;
    }

    .ys-icon {
        font-size: 2rem;
        padding: 15px;
    }

    .ys-title {
        font-size: 1.1rem;
    }

    .ys-desc {
        font-size: 0.95rem;
    }

    .your-success-metrics {
        gap: 15px;
        margin: 15px 0;
        justify-content: center;
    }

    .ys-metric {
        padding: 12px 20px;
        min-width: 90px;
    }

    .ys-metric-value {
        font-size: 1.8rem;
    }

    .ys-metric-label {
        font-size: 14px;
    }

    .your-success-logos {
        gap: 10px;
        justify-content: center;
    }

    .your-success-logos img {
        height: 30px;
    }

    .ys-cta-btn {
        font-size: 1rem;
        padding: 10px 28px;
        border-radius: 24px;
    }

    .your-success-image img {
        width: 100%;
        max-width: 280px;
        border-radius: 20px;
    }

    .success-diagram-inner {
        width: 300px;
        height: 180px;
    }

    .success-center-circle {
        width: 80px;
        height: 80px;
        border-width: 5px;
    }

    .success-center-img {
        width: 32px;
        height: 32px;
    }

    .success-center-title {
        font-size: 0.9rem;
    }

    .success-top-left,
    .success-bottom-left,
    .success-bottom-right,
    .success-top-right {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }

    .success-top-left {
        left: 5px;
        top: 15px;
    }

    .success-bottom-left {
        left: 10px;
        bottom: 5px;
    }

    .success-bottom-right {
        right: 10px;
        bottom: 5px;
    }

    .success-top-right {
        right: 5px;
        top: 15px;
    }

    .success-top-left-img,
    .success-bottom-left-img,
    .success-bottom-right-img,
    .success-top-right-img {
        width: 24px;
        height: 24px;
    }

    .success-top-left-title,
    .success-bottom-left-title,
    .success-bottom-right-title,
    .success-top-right-title {
        font-size: 12px;
        margin-top: 3px;
    }

    .success-top-left-label,
    .success-bottom-left-label,
    .success-bottom-right-label,
    .success-top-right-label {
        font-size: 0.8rem;
        margin-top: -2px;
    }

    .success-diagram-svg {
       transform: scale(0.64);
        transform-origin: center;
        margin-left: -58px;
        margin-top: -21px;
    }

    .your-success-testimonial {
        font-size: 0.95rem;
        padding: 12px 15px;
        max-width: 90%;
        gap: 8px;
    }

    .testimonial-quote {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-client {
        font-size: 0.85rem;
        margin-left: 8px;
    }

    .workflow {
        padding: 50px 10px;
    }

    .workflow h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .workflow-line {
        top: 100px;
        height: 100px;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
        margin-left: 77px;
    }

    .step {
        width: 100%;
        max-width: 200px;
        padding: 15px;
        top: 0 !important;
    }

    .step img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 1rem;
    }
}

/* Media Queries for Very Small Devices (up to 480px) */
@media screen and (max-width: 480px) {
    .banner {
        padding: 15px;
        min-height: 400px;
    }

    .hexagon.hex1, .hexagon.hex2, .hexagon.hex3 {
        width: 80px;
        height: 80px;
        right: 5px;
    }

    .hexagon.hex1 {
        top: 89px;
    }

    .hexagon.hex2 {
        top: 177px;
    }

    .hexagon.hex3 {
        top: 304px;
    }

    .sub-heading {
        font-size: 1rem;
    }

    .sub-heading span {
        font-size: 1.3rem;
    }

    .banner-left h1 span {
        font-size: 0.9rem;
    }

    .services-banner-titles .title-row .title-pill {
        min-width: 95%;
        font-size: 0.95rem;
   padding: 21px 15px;
    }

    .section-heading-underline {
        font-size: 1.1rem;
    }

    .section-heading-underline::after {
        width: 60px;
        height: 3px;
    }

    .your-success-section {
        padding: 30px 8px;
    }

    .your-success-title {
        font-size: 1.8rem;
    }

    .your-success-title::before {
        font-size: 1.5rem;
    }

    .your-success-subtitle {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .success-diagram-inner {
        width: 250px;
        height: 150px;
    }

    .success-center-circle {
        width: 70px;
        height: 70px;
    }

    .success-center-img {
        width: 28px;
        height: 28px;
    }

    .success-center-title {
        font-size: 0.85rem;
    }

    .success-top-left,
    .success-bottom-left,
    .success-bottom-right,
    .success-top-right {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }

    .success-top-left-img,
    .success-bottom-left-img,
    .success-bottom-right-img,
    .success-top-right-img {
        width: 20px;
        height: 20px;
    }

    .success-top-left-title,
    .success-bottom-left-title,
    .success-bottom-right-title,
    .success-top-right-title {
        font-size: 11px;
    }

    .success-top-left-label,
    .success-bottom-left-label,
    .success-bottom-right-label,
    .success-top-right-label {
        font-size: 0.75rem;
    }

    .success-diagram-svg {
        transform: scale(0.53);
        margin-left: -102px;
        margin-top: -47px;
    }

    .ys-metric {
        padding: 10px 15px;
        min-width: 80px;
    }

    .ys-metric-value {
        font-size: 1.6rem;
    }

    .ys-metric-label {
        font-size: 13px;
    }

    .your-success-logos img {
        height: 28px;
    }

    .ys-cta-btn {
        font-size: 0.95rem;
        padding: 8px 24px;
    }

    .your-success-image img {
        max-width: 240px;
    }
}
/* Media Query for iPads (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .end-to-end-services {
        padding: 40px 15px 30px;
        overflow: hidden;
    }

    .services-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .services p {
        font-size: 1.1rem;
        max-width: 85%;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .service-card {
        padding: 20px 15px;
        min-height: 300px;
    }

    .service-icon {
        font-size: 2.2rem;
        padding: 10px 15px;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }
}

/* Media Query for Smaller Devices (up to 768px) */
@media screen and (max-width: 768px) {
    .end-to-end-services {
        padding: 30px 10px 20px;
        overflow: hidden;
    }

    .services-subtitle {
        font-size: 1rem;
        max-width: 95%;
        margin-bottom: 15px;
    }

    .services p {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 15px;
    }

    .services-grid {
        grid-template-columns: 2fr;
        gap: 15px;
        padding: 0 5px;
    }

    .service-card {
        padding: 15px 10px;
        min-height: 280px;
    }

    .service-icon {
        font-size: 2rem;
        padding: 8px 12px;
    }

    .service-name {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}
/* Media Query for iPads (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .smart-building-diagram-section {
        padding: 40px 15px 30px;
        overflow: hidden;
    }
    

    .smart-building-diagram-container {
        flex-direction: column;
        gap: 30px;
        max-width: 90%;
        margin: 0 auto;
    }

    .smart-building-left,
    .smart-building-right {
        gap: 20px;
    }

    .smart-building-item {
        gap: 12px;
    }

    .smart-building-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .smart-building-label {
        font-size: 1rem;
    }

    .smart-building-center {
        min-width: 200px;
        min-height: 200px;
    }

    .smart-building-circle {
        width: 180px;
        height: 180px;
        font-size: 1.8rem;
        border-width: 8px;
    }

    .smart-building-line {
        width: 80px;
    }

    .smart-building-line-left {
        left: -80px;
    }

    .smart-building-line-right {
        right: -80px;
    }

    .circle-pulse {
        width: 180px;
        height: 180px;
    }

    .smart-building-desc-animated {
        font-size: 1rem;
        padding: 15px 20px;
        max-width: 85%;
    }

    .desc-icon {
        font-size: 1.5rem;
    }
}


/* Media Query for Tablets (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Reset and Base Styles */
    body {
        font-size: 16px;
    }

   .success-diagram-svg {
       transform: scale(0.64);
        transform-origin: center;
        margin-left: -58px;
        margin-top: -21px;
    }

    /* Banner Styles */
    .banner {
        width: 100%;
        margin-left: 0;
        height: 600px;
        flex-direction: row;
        gap: 30px;
        padding: 20px;
        border-radius: 0 0 28px 28px;
    }

    .hexagon.hex1, .hexagon.hex2, .hexagon.hex3 {
        width: 140px;
        height: 140px;
    }

    .hexagon.hex1 {
        left: 20px;
        top: 15%;
    }

    .hexagon.hex2 {
        left: 100px;
        top: 35%;
    }

    .hexagon.hex3 {
        left: 20px;
        bottom: 10%;
    }

    .banner-left {
        max-width: 500px;
        padding: 15px;
        margin-left: 175px;
    }

    .sub-heading {
        font-size: 1.8rem;
    }

    .sub-heading span {
        font-size: 2rem;
    }

    .banner-left h1 span {
        font-size: 1.2rem;
        margin-top: 12px;
    }

    .grand-title {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    /* Services Banner Titles */
    .services-banner-titles {
        padding: 24px 15px;
    }

    .services-banner-titles .titles-row {
        gap: 14px;
        max-width: 900px;
    }

    .services-banner-titles .title-row {
        flex-wrap: wrap;
        gap: 14px;
    }

    .services-banner-titles .title-row .title-pill {
        font-size: 1rem;
        padding: 12px 28px;
        margin: 0 4px;
        flex: 1 1 45%;
    }

    .services-banner-titles .title-row .title-pill.main {
        flex: 1 1 45%;
    }

    /* Services Section */
    .services-section {
        padding: 30px 15px;
    }

    .services-flex {
        gap: 30px;
    }

    .services-title {
        font-size: 2.4rem;
    }

    .services-desc {
        font-size: 1.2rem;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .barber-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
        padding: 0 10px;
    }

    .barber-card {
        padding: 24px 12px;
    }

    .barber-card-header {
        font-size: 1.3rem;
        padding: 7px 0;
    }

    .barber-card-desc {
        font-size: 0.95rem;
    }

    .service-img {
        width: 160px;
        height: 90px;
    }

    .service-next-btn {
        font-size: 1.1rem;
        padding: 7px 14px;
    }

    /* Explore Solutions Theme */
    .explore-solutions-theme {
        padding: 50px 15px;
        border-radius: 28px;
    }

    .explore-solutions-main-title,
    .explore-solutions-main-title1 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .explore-solutions-desc {
        font-size: 1.2rem;
        margin-top: -15px;
        margin-bottom: 20px;
    }

    .explore-solutions-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        padding: 0 15px;
    }

    .explore-card {
        flex: 1 1 45%;
        padding: 0 0 24px 0;
    }

    .explore-card-header {
        font-size: 1.3rem;
        padding: 18px 0;
    }

    .explore-card-list {
        padding: 0 24px;
    }

    .explore-card-item {
        gap: 18px;
        margin-bottom: 24px;
    }

    .explore-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .explore-card-title {
        font-size: 1.15rem;
    }

    .explore-card-desc {
        font-size: 0.95rem;
        margin-left: 38px;
    }

    /* End-to-End Digital Services Section */
    .end-to-end-services {
        padding: 50px 15px 30px;
        border-radius: 28px;
    }

    .end-to-end-desc {
        font-size: 1.2rem;
        margin-top: -15px;
        margin-bottom: 20px;
    }

    .services-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 20px;
    }

    .services p {
        font-size: 1.1rem;
        max-width: 85%;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 10px;
    }

    .service-card {
        padding: 24px 15px;
        min-height: 300px;
    }

    .service-icon {
        font-size: 2.2rem;
        padding: 10px 15px;
    }

    .service-name {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .progress-bar {
        height: 8px;
    }

    .service-metric {
        font-size: 1rem;
    }

    /* Smart Building Section */
    .smart-building-diagram-section {
        padding: 40px 15px;
    }

    .smart-building-diagram-container {
        flex-direction: row;
        gap: 30px;
        max-width: 90%;
    }

    .smart-building-left,
    .smart-building-right {
        gap: 20px;
    }

    .smart-building-item {
        gap: 12px;
    }

    .smart-building-icon {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .smart-building-label {
        font-size: 1rem;
        min-width: 140px;
    }

    .smart-building-center {
        min-width: 220px;
        min-height: 220px;
    }

    .smart-building-circle {
        width: 180px;
        height: 180px;
        font-size: 1.9rem;
        border-width: 8px;
    }

    .smart-building-line {
        width: 100px;
    }

    .smart-building-line-left {
        left: -100px;
    }

    .smart-building-line-right {
        right: -100px;
    }

    .circle-pulse {
        width: 180px;
        height: 180px;
    }

    .smart-building-desc-animated {
        font-size: 1.1rem;
        padding: 15px 20px;
        max-width: 80%;
        margin-top: 30px;
    }

    .desc-icon {
        font-size: 1.6rem;
    }

    /* Your Success Section */
    .your-success-section {
        padding: 50px 15px;
        border-radius: 28px;
        margin-top: 30px;
    }

    .your-success-flex {
        flex-direction: row;
        gap: 30px;
    }

    .your-success-content {
        align-items: flex-start;
    }

    .your-success-title {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    .your-success-title::before {
        font-size: 2rem;
    }

    .your-success-subtitle {
        font-size: 1.1rem;
        padding: 8px 15px;
        margin-bottom: 20px;
        max-width: 80%;
    }

    .your-success-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 90%;
    }

    .ys-card {
        padding: 24px 15px;
    }

    .ys-icon {
        font-size: 2.2rem;
        padding: 15px;
    }

    .ys-title {
        font-size: 1.1rem;
    }

    .ys-desc {
        font-size: 0.95rem;
    }

    .your-success-metrics {
        gap: 15px;
        margin: 15px 0;
    }

    .ys-metric {
        padding: 15px 20px;
        min-width: 120px;
    }

    .ys-metric-value {
        font-size: 1.8rem;
    }

    .ys-metric-label {
        font-size: 15px;
    }

    .your-success-logos {
        gap: 10px;
    }

    .your-success-logos img {
        height: 32px;
    }

    .ys-cta-btn {
        font-size: 1.05rem;
        padding: 10px 30px;
        border-radius: 24px;
    }

    .your-success-image img {
        width: 300px;
        border-radius: 24px;
    }

    .success-diagram-inner {
        width: 350px;
        height: 200px;
    }

    .success-center-circle {
        width: 90px;
        height: 90px;
        border-width: 5px;
    }

    .success-center-img {
        width: 36px;
        height: 36px;
    }

    .success-center-title {
        font-size: 0.95rem;
    }

    .success-top-left,
    .success-bottom-left,
    .success-bottom-right,
    .success-top-right {
        width: 70px;
        height: 70px;
        border-width: 5px;
    }

    .success-top-left {
        left: 8px;
        top: 15px;
    }

    .success-bottom-left {
        left: 15px;
        bottom: 8px;
    }

    .success-bottom-right {
        right: 15px;
        bottom: 8px;
    }

    .success-top-right {
        right: 8px;
        top: 15px;
    }

    .success-top-left-img,
    .success-bottom-left-img,
    .success-bottom-right-img,
    .success-top-right-img {
        width: 28px;
        height: 28px;
    }

    .success-top-left-title,
    .success-bottom-left-title,
    .success-bottom-right-title,
    .success-top-right-title {
        font-size: 13px;
    }

    .success-top-left-label,
    .success-bottom-left-label,
    .success-bottom-right-label,
    .success-top-right-label {
        font-size: 0.8rem;
    }

    .your-success-testimonial {
        font-size: 0.95rem;
        padding: 15px 20px;
        max-width: 80%;
    }

    .testimonial-quote {
        font-size:  Swooping Crane1.8rem;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-client {
        font-size: 0.85rem;
    }

    /* Workflow Section */
    .workflow {
        padding: 60px 15px;
    }

    .workflow h2 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .workflow-line {
        top: 110px;
        height: 120px;
    }

    .steps {
        gap: 30px;
    }

    .step {
        width: 140px;
        padding: 15px;
        margin-top: 32px;
    }

    .step img {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .step p {
        font-size: 1.05rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
    /* Reset and Base Styles */
    body {
        font-size: 16px;
    }

   .success-diagram-svg {
        transform: scale(0.53);
        margin-left: -54px;
        margin-top: -21px;
    }


    /* Banner Styles */
    .banner {
        width: 100%;
        margin-left: 0;
        height: 600px;
        flex-direction: row;
        gap: 30px;
        padding: 20px;
        border-radius: 0 0 28px 28px;
    }

    .hexagon.hex1, .hexagon.hex2, .hexagon.hex3 {
        width: 140px;
        height: 140px;
    }

    .hexagon.hex1 {
        left: 20px;
        top: 15%;
    }

    .hexagon.hex2 {
        left: 100px;
        top: 35%;
    }

    .hexagon.hex3 {
        left: 20px;
        bottom: 10%;
    }

    .banner-left {
        max-width: 500px;
        padding: 15px;
        margin-left: 175px;
    }

    .sub-heading {
        font-size: 1.8rem;
    }

    .sub-heading span {
        font-size: 2rem;
    }

    .banner-left h1 span {
        font-size: 1.2rem;
        margin-top: 12px;
    }

    .grand-title {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    /* Services Banner Titles */
    .services-banner-titles {
        padding: 24px 15px;
    }

    .services-banner-titles .titles-row {
        gap: 14px;
        max-width: 900px;
    }

    .services-banner-titles .title-row {
        flex-wrap: wrap;
        gap: 14px;
    }

    .services-banner-titles .title-row .title-pill {
        font-size: 1rem;
        padding: 12px 28px;
        margin: 0 4px;
        flex: 1 1 45%;
    }

    .services-banner-titles .title-row .title-pill.main {
        flex: 1 1 45%;
    }

    /* Services Section */
    .services-section {
        padding: 30px 15px;
    }

    .services-flex {
        gap: 30px;
    }

    .services-title {
        font-size: 2.4rem;
    }

    .services-desc {
        font-size: 1.2rem;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .barber-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
        padding: 0 10px;
    }

    .barber-card {
        padding: 24px 12px;
    }

    .barber-card-header {
        font-size: 1.3rem;
        padding: 7px 0;
    }

    .barber-card-desc {
        font-size: 0.95rem;
    }

    .service-img {
        width: 160px;
        height: 90px;
    }

    .service-next-btn {
        font-size: 1.1rem;
        padding: 7px 14px;
    }

    /* Explore Solutions Theme */
    .explore-solutions-theme {
        padding: 50px 15px;
        border-radius: 28px;
    }

    .explore-solutions-main-title,
    .explore-solutions-main-title1 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .explore-solutions-desc {
        font-size: 1.2rem;
        margin-top: -15px;
        margin-bottom: 20px;
    }

    .explore-solutions-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        padding: 0 15px;
    }

    .explore-card {
        flex: 1 1 45%;
        padding: 0 0 24px 0;
    }

    .explore-card-header {
        font-size: 1.3rem;
        padding: 18px 0;
    }

    .explore-card-list {
        padding: 0 24px;
    }

    .explore-card-item {
        gap: 18px;
        margin-bottom: 24px;
    }

    .explore-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .explore-card-title {
        font-size: 1.15rem;
    }

    .explore-card-desc {
        font-size: 0.95rem;
        margin-left: 38px;
    }

    /* End-to-End Digital Services Section */
    .end-to-end-services {
        padding: 50px 15px 30px;
        border-radius: 28px;
    }

    .end-to-end-desc {
        font-size: 1.2rem;
        margin-top: -15px;
        margin-bottom: 20px;
    }

    .services-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 20px;
    }

    .services p {
        font-size: 1.1rem;
        max-width: 85%;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 10px;
    }

    .service-card {
        padding: 24px 15px;
        min-height: 300px;
    }

    .service-icon {
        font-size: 2.2rem;
        padding: 10px 15px;
    }

    .service-name {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .progress-bar {
        height: 8px;
    }

    .service-metric {
        font-size: 1rem;
    }

    /* Smart Building Section */
    .smart-building-diagram-section {
        padding: 40px 15px;
    }

    .smart-building-diagram-container {
        flex-direction: row;
        gap: 30px;
        max-width: 90%;
    }

    .smart-building-left,
    .smart-building-right {
        gap: 20px;
    }

    .smart-building-item {
        gap: 12px;
    }

    .smart-building-icon {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .smart-building-label {
        font-size: 1rem;
        min-width: 140px;
    }

    .smart-building-center {
        min-width: 220px;
        min-height: 220px;
    }

    .smart-building-circle {
        width: 180px;
        height: 180px;
        font-size: 1.9rem;
        border-width: 8px;
    }

    .smart-building-line {
        width: 100px;
    }

    .smart-building-line-left {
        left: -100px;
    }

    .smart-building-line-right {
        right: -100px;
    }

    .circle-pulse {
        width: 180px;
        height: 180px;
    }

    .smart-building-desc-animated {
        font-size: 1.1rem;
        padding: 15px 20px;
        max-width: 80%;
        margin-top: 30px;
    }

    .desc-icon {
        font-size: 1.6rem;
    }

    /* Your Success Section */
    .your-success-section {
        padding: 50px 15px;
        border-radius: 28px;
        margin-top: 30px;
    }

    .your-success-flex {
        flex-direction: row;
        gap: 30px;
    }

    .your-success-content {
        align-items: flex-start;
    }

    .your-success-title {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }

    .your-success-title::before {
        font-size: 2rem;
    }

    .your-success-subtitle {
        font-size: 1.1rem;
        padding: 8px 15px;
        margin-bottom: 20px;
        max-width: 80%;
    }

    .your-success-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 90%;
    }

    .ys-card {
        padding: 24px 15px;
    }

    .ys-icon {
        font-size: 2.2rem;
        padding: 15px;
    }

    .ys-title {
        font-size: 1.1rem;
    }

    .ys-desc {
        font-size: 0.95rem;
    }

    .your-success-metrics {
        gap: 15px;
        margin: 15px 0;
    }

    .ys-metric {
        padding: 15px 20px;
        min-width: 120px;
    }

    .ys-metric-value {
        font-size: 1.8rem;
    }

    .ys-metric-label {
        font-size: 15px;
    }

    .your-success-logos {
        gap: 10px;
    }

    .your-success-logos img {
        height: 32px;
    }

    .ys-cta-btn {
        font-size: 1.05rem;
        padding: 10px 30px;
        border-radius: 24px;
    }

    .your-success-image img {
        width: 300px;
        border-radius: 24px;
    }

    .success-diagram-inner {
        width: 350px;
        height: 200px;
    }

    .success-center-circle {
        width: 90px;
        height: 90px;
        border-width: 5px;
    }

    .success-center-img {
        width: 36px;
        height: 36px;
    }

    .success-center-title {
        font-size: 0.95rem;
    }

    .success-top-left,
    .success-bottom-left,
    .success-bottom-right,
    .success-top-right {
        width: 70px;
        height: 70px;
        border-width: 5px;
    }

    .success-top-left {
        left: 8px;
        top: 15px;
    }

    .success-bottom-left {
        left: 15px;
        bottom: 8px;
    }

    .success-bottom-right {
        right: 15px;
        bottom: 8px;
    }

    .success-top-right {
        right: 8px;
        top: 15px;
    }

    .success-top-left-img,
    .success-bottom-left-img,
    .success-bottom-right-img,
    .success-top-right-img {
        width: 28px;
        height: 28px;
    }

    .success-top-left-title,
    .success-bottom-left-title,
    .success-bottom-right-title,
    .success-top-right-title {
        font-size: 13px;
    }

    .success-top-left-label,
    .success-bottom-left-label,
    .success-bottom-right-label,
    .success-top-right-label {
        font-size: 0.8rem;
    }

    .your-success-testimonial {
        font-size: 0.95rem;
        padding: 15px 20px;
        max-width: 80%;
    }

    .testimonial-quote {
        font-size:  Swooping Crane1.8rem;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-client {
        font-size: 0.85rem;
    }

    /* Workflow Section */
    .workflow {
        padding: 60px 15px;
    }

    .workflow h2 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .workflow-line {
        top: 110px;
        height: 120px;
    }

    .steps {
        gap: 30px;
    }

    .step {
        width: 140px;
        padding: 15px;
    }

    .step img {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .step p {
        font-size: 1.05rem;
    }
}
