@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #00C1DE;
    --body-font: "Montserrat", sans-serif;

}

body {
    font-family: var(--body-font);
    font-size: 1rem;
    overflow-x: hidden;
    line-height: 1.8 !important;
}

section {
    overflow-x: hidden !important;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

.navbar .nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.nav-item-wrap {
    justify-content: center;
}

.contact-nav .nav-link,
.inner-nav .nav-link {
    color: #000;
}

.contact-nav .primary-btn,
.inner-nav .primary-btn {
    color: #000;
    background: #f2f2f2;
}

.contact-nav .primary-btn::after,
.inner-nav .primary-btn::after {
    background: var(--primary-color);
}

.contact-nav .primary-btn:hover span,
.contact-nav .primary-btn:hover i,
.inner-nav .primary-btn:hover span,
.inner-nav .primary-btn:hover i {
    color: #fff;
}

.primary-btn {
    background: #ffffff1f;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
    transition: all 0.6 ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.primary-btn:hover {
    color: #000;
}

.hero-slider,
.hero-slick,
.hero-slide {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    pointer-events: none;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1200px;
    background-size: cover;
    background-position: center top;
    will-change: transform;
    z-index: -1;
}

.hero-slide {
    background-size: cover;
    background-position: center;
}

.glass-blur {
    position: relative;
    width: 100%;
	height:100%;
    overflow: hidden;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.04) 55%,
        rgba(255,255,255,0.01) 100%
    );

    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    display: flex;
    align-items: center;

    animation: shrinkGlass 2s cubic-bezier(0.77, 0, 0.18, 1) forwards;

}


.hero-content {
    width: 520px;
    padding: 0 3rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

@keyframes shrinkGlass {
    0% {
        width: 100%;
    }
    100% {
        width: 520px;
    }
}


.glass-blur::after {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.01),
            rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 400;
}

.hero-slide p {
    max-width: 220px;
    margin-top: 18px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-slide p:after {
    position: absolute;
    content: "";
    height: 200px;
    width: 2px;
    left: 0;
    background: #fff;
    bottom: -240px;
}




.hero-progress {
    position: absolute;
    left: 40px;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease;
}

.hero-dot.active {
    width: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-dot .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #fff;
}


.hero-dot.active .progress {
    animation: heroFill 4s linear forwards;
}

@keyframes heroFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


/* about us css  */

.about-section {
    padding: 120px 0;
}

.about-title,
.sectors-slider h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
    color: #42444B;
}

.about-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #42444B;
    margin-bottom: 22px;
}

.about-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding: 12px 32px 12px 40px;
    border-radius: 50px;
    background: #42444B;
    text-decoration: none;
}


.about-btn .label {
    position: relative;
    z-index: 5;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.4s ease;
    text-transform: lowercase;

}

.label::first-letter {
  text-transform: uppercase;
}


.about-btn .dot {
    position: absolute;
    left: 24px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 6;
}


.about-btn::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 12px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
}


.about-btn:hover::after {
    transform: translateY(-50%) scale(45);
}



.about-btn:hover {
    padding: 12px 32px 12px 32px;
    color: #fff;
}


.sector-card {
    height: 600px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.sector-card img {
    transition: transform 0.5s ease;
}

.sector-card:hover img {
    transform: scale(1.06);
}

.sector-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1;
    height: 30%;
    top: 70%;
}

.sector-slider .slick-slide {
    margin: 0 5px;
    position: relative;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.sector-content {
    position: relative;
    z-index: 2;
}

.sector-content h4 {
    font-size: 26px;
    margin-bottom: 8px;
}

.sector-content p {
    font-size: 16px;
    opacity: 0.9;
}

.sector-progress {
    display: flex;
    text-align: center;
    margin: 20px 0px;
    width: 100%;
    justify-content: center;
    gap: 5px;

}

.sector-dot {
    width: 6px;
    height: 6px;
    background: #42444b3d;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease;
}

.sector-dot.active {
    width: 34px;
    border-radius: 10px;
    background: #42444b3d;
}

.sector-dot .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
}


.sector-dot.active .progress {
    animation: sectorFill 4s linear forwards;
}

.client-slider .sector-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

@keyframes sectorFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


.difference-section {
    padding: 120px 0px;
}
.page-template-template-client .difference-section {
    padding: 140px 0px;
}
.page-template-template-client .founder-section {
	padding-top:0px;
}
.difference-title {
    font-size: 40px;
    font-weight: 400;
    color: #42444B;
}


.icon-wrap img {
    height: 48px;
    width: 48px;
    margin-bottom: 18px;
}

.difference-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: #42444B;
    margin-bottom: 15px;
}

.difference-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #42444B;
    max-width: 280px;
    margin: 0 auto;
}

.title-wrapper {
    padding-top: 15px;
}

.title-wrapper h2 {
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 400;
    color: #42444B;
}

.faq-wrapper {
    background: #F3F5F6;
    padding: 6rem 3rem;
}

.accordion {
    border-bottom: 1px solid #00000020;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    color: black;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}



.accordion-content {
    padding: 15px 0;
    display: none;
    font-size: 16px;
}

.accordion-header::after {
    content: '\2b';
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    color: var(--primary-color);
}

.accordion-header.active::after {
    content: '\f068';
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    color: var(--primary-color);
}

.founder-section {
    padding: 120px 0px;
    position: relative;
}

.founder-section h2 {
    font-size: 40px;
    font-weight: 400;

}

.founder-info {
    margin-left: -10%;
    width: 35%;
}

.talk-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    position: relative;

    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(../assets/img/talk-to-bg.png) center center / cover no-repeat;
}

.talk-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1;
    width: 20%;
    top: 0;
    left: 80%;
    z-index: 0;
    height: 100%;
}

.talk-section h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
}

.white-btn {
    background: #fff;
    padding: 12px 40px 12px 40px;
    position: relative;
    z-index: 2;
    font-weight: 600;

}

.white-btn:hover {
    padding: 12px 38px 12px 38px;

}

.white-btn .label {
    color: #42444B;
    font-weight: 600;

}

.white-btn::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 10px;
    height: 8px;
    background: var(--primary-color);
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
    border-radius: 50%;
}


/* footer section  */


.site-footer {
    background: #202124;
    padding: 50px 0 60px;
    color: #fff;
}

.footer-top {
    margin-bottom: 120px;
}


.footer-nav a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: 1;
}


.footer-btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 500;

}

.footer-btn::after,
.primary-btn::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
    border-radius: 50%;
}

.footer-btn:hover::after,
.primary-btn:hover::after {
    transform: translateY(-50%) scale(45);
}

.footer-btn.whatsapp {
    background: #ffffff10;
    color: #fff;
}

.footer-btn.whatsapp:hover i,
.primary-btn:hover i {
    color: #000;
    position: relative;
    z-index: 3;
}

.footer-btn.contact {
    background: #ffffff10;
    color: #fff;
}

.footer-btn span,
.primary-btn span {
    position: relative;
    z-index: 3;
}

.footer-btn.contact:hover,
.footer-btn.whatsapp:hover {
    background: #fff;
    color: #000;
}


.footer-tagline {
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.2;
    max-width: 520px;
}


.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

/* contact page css  */

.contact-section {
    padding: 120px 0px;
}

.contact-title {
    font-size: 50px;
    font-weight: 400;
    color: #3b3e45;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #6b6f76;
    max-width: 420px;
    margin-bottom: 30px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #42444B;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info i {
    font-size: 16px;
    color: #3b3e45;
    font-weight: 600;
}

.visit-btn,
.send-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b3e45;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    font-size: 14px;
}

.visit-btn .dot {
    width: 7px;
    height: 7px;
    background: #12b7c8;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}


.contact-form-wrap {
    background: #00000006;
    padding: 50px;
}


.form-control {
    border: none;
    border-bottom: 1px solid #d6d9dc;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #42444B;
}

.form-control:focus {
    box-shadow: none;
    border-color: #3b3e45;
    background: none !important;
}

textarea.form-control {
    resize: none;
}

.privacy-text {
    font-size: 12px;
    color: #42444B;
    font-weight: 500;
}

.privacy-text a {
    color: #42444B;
    text-decoration: underline;
}



.centres-section {
    background: #202124;
    padding: 100px 0;
    border-bottom: 1px solid #ffffff33;
}


.centres-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.centres-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 360px;
}


.centre-card {
    position: relative;
    display: block;
    overflow: hidden;

}

.centre-card a {
    text-decoration: none;
}

.centre-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.centre-label {
    padding: 15px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    gap: 25px;
}

.centre-label i {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}


/* about img css  */
.about-inner::after {
    content: "";
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 55%,
            rgba(255, 255, 255, 0.01) 100%);

    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    height: 100%;
    width: 300px;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2;
}

.about-img-wrap {
    background: #F3F5F6;
    padding-top: 140px;
    padding-left: 4rem;
    align-items: center;
    display: flex;
    flex-direction: column;

}

.about-heading {
    font-size: 54px;
    position: absolute;
    left: 4rem;
    width: 60%;
    z-index: 3;
}
.page-template-template-about-php h1.about-heading, .page-template-template-our-services h1.about-heading, .page-template-template-client h1.about-heading, .page-template-template-contact h1.about-heading, .page-template-default h1.about-heading {
		font-size: 52px;
	    font-weight: 400;
}

.girl-img {
    margin-top: 200px;
}

.about-content {
    font-size: 16px;
    padding-top: 50px;
}

.system-section {
    padding: 100px 0 0;
}

.system-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #2b2b2b;
    margin-bottom: 24px;
}

.system-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-section .about-heading {
    font-size: 50px;
}

.service-section .about-img-wrap {
    display: block;
}

.boy-img {
    padding-top: 220px;
}

.service-section .about-content {
    padding-bottom: 30px;
}


.services-section {
    background: #ffffff;
    padding: 120px 0px;
}

.service-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 200px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    pointer-events: none;
    top: 48%;
}

.service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content {
    padding: 0px 30px;
    position: relative;
    z-index: 3;
    margin-top: -30px;
}

.service-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #42444B;
    font-family: var(--body-font);
}
.service-lead {
    font-weight: 600;
    margin-bottom: 12px;
    color: #42444B;
    font-size: 16px;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    color: #42444B;
    margin-bottom: 30px;
}

.service-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #3a3a3a;
    flex-direction: column;
    font-weight: 600;
}

.point img {
    height: 30px;
    width: 30px;
}


.logo-marquee-section {
    background: #fff;
    padding: 120px 0px 0px;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
}

.logo-item img {
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.point-list {
    font-size: 16px;
    font-weight: 600;
    color: #4b4b4b;
}

.point-list li {
    margin-bottom: 15px;
}

.system-image img {
    width: 100%;
    height: auto;
}

.partner {
    padding: 120px 0px;
    color: #42444B;
}

.partner h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.partner p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ANIMATION */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.page-template-template-home .system-section {
    padding: 0px;
}

/* TOGGLER ICON */
.contact-nav .navbar-toggler {
    border: 0;
}

.contact-nav .navbar-toggler:focus {
    box-shadow: none;
}

.contact-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* FULLSCREEN OFFCANVAS */
.mobile-menu {
    width: 100vw;
    background: #000;
    color: #fff;
}

.mobile-menu .nav-link {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.mobile-menu .nav-link:hover {
    color: var(--primary-color);
}

.mobile-cta {
    padding-bottom: 20px;
}

/* Responsive */

@media(max-width:992px) {
	.mobile-btn-wapp {
    font-size: 26px;
    border-radius: 50%;
    height: 55px;
    width: 55px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .founder-info {
        margin-left: 0;
        width: 100%;
    }

    .talk-section::after {
        width: 35%;
        left: 65%;
    }

    .about-title br {
        display: none !important;
    }

    .navbar {
        padding: 0px 20px !important;

    }

    button.navbar-toggler {
        background-color: #0000007a !important;
    }

    .about-inner::after {
        height: 73.9%;
    }

    .about-heading {
        font-size: 42px;
    }

    .page-template-template-about .talk-section h2 {
        max-width: 390px;
        font-size: 40px;
    }

    .page-template-template-our-services .about-inner::after {
        height: 63%;
    }

    .service-section .about-heading {
        font-size: 40px;
    }

    .page-template-template-client .about-inner::after {
        height: 78.7%;
    }

    .footer-tagline {
        font-size: 32px;
    }
	.navbar-toggler {
  border: 0;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
}


.navbar-toggler .close-icon {
  display: none;
}


.navbar-toggler:not(.collapsed) .open-icon {
  display: none;
}

.navbar-toggler:not(.collapsed) .close-icon {
  display: inline-block;
}


.navbar-toggler i {
  font-size: 26px;
  color: #000;
}

	.navbar .primary-btn {
        background: #f2f2f2;
        color: #000;
        width: 165px;
        text-align: center;
    }
	.page-template-template-home .system-section .col-lg-7, .page-template-template-home .system-section .col-lg-5{
		padding:0px !important;
	}
}

@media (max-width: 767px) {
    .service-points {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 24px;
    }

    .logo-track {
        gap: 40px;
    }

        .logo-item img {
        height: 60px;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
        justify-content: start !important;

    }

    .hero-slide p {
        max-width: 100%;
        padding: 0px 20px;
    }

    .hero-slide p:after {
        display:none;
    }

    .page-template-template-about .talk-section h2 {
        max-width: 100%;
    }


    .about-content {

        padding-top: 0px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center !important;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center !important;
        padding: 0 20px;

    }

    .footer-bottom {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .talk-section::after {
        top: 80%;
        left: 0;
        height: 20%;
        width: 100%;
    }

    .hero-slide .container-fluid {
        padding: 0 !important;
    }
	.hero-content{
		max-width:100%;
	}
	.hero-content br{
		display:none !important;
	}
	.hero-side-text {
    position: absolute;
    bottom: 0;
		margin:.5rem 0px;
}
	.hero-content h1 {
    font-size: 42px;
		margin-bottom:.4rem;
}
	.hero-progress {

    left: 75%;
		bottom: 50%;}
	
   .glass-blur {
        width: 100%;
        height: 320px;
        padding: 0 1rem;
	   position:absolute;
        bottom: 0;
	   display:block;
    }

    .talk-section br {
        display: none !important;
    }

    .about-inner::after {
        display: none !important;
    }
    .about-heading {
        font-size: 24px;
        position: relative;
        left: 0px;
        width: 100%;
    }
    .girl-img {
    margin-top: 40px;
}
.about-img-wrap {

    padding-left: 2rem !important;}
    .page-template-template-client .about-heading{
        padding-left: 20px;
    }
    .boy-img {
    padding-top: 60px;
}
.service-section .about-heading {
        font-size: 24px;
}
 .talk-section {
    flex-direction: column;
        padding: 40px 1rem !important;
     }
      .client-slider .sector-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
	.difference-item {
    display: flex;
    gap: 20px;
    text-align: left;
}
	.page-template-template-about-php h1.about-heading, .page-template-template-our-services h1.about-heading, .page-template-template-client h1.about-heading, .page-template-template-contact h1.about-heading, .page-template-default h1.about-heading {
		font-size: 36px;}
	
	.difference-item h3 {
        margin-top: 0px !important;
        margin-bottom: 5px;
    }
	.page-template-template-client .about-content {
        padding: 0px 10px !important;
    }
	.page-template-template-client .talk-section h2 {
        font-size: 34px;
    }
.talk-section {
    display: flex;
    justify-content: end;
    align-items: center;
	text-align: center;
	}
	
	.talk-section h2 p{
        font-size: 32px;
        position: relative;
		z-index:2;
    }
	.talk-section::after {
        top: 52%;
        left: 0;
        height: 48%;
        width: 100%;
    }
	.talk-section h2,.talk-section p{
        position: relative;
		z-index:2;
    }
	
	.point{
		flex-direction:row;
	}
	.service-content {
        padding: 50px 0px 20px;
    }
	.page-template-template-our-services .talk-section::after {
        top: 45%;
        left: 0;
        height: 55%;
        width: 100%;
    }
	.page-template-template-home .talk-section h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }
	.footer-top {
    margin-bottom: 20px;
}
	.footer-tagline {
        display: none;
    }
	.footer-social i {
    color: #fff;
}
	.hero-bg {
    height: 100vh;
    background-position: center;
}
	.slide-1{
		background:url("https://workforcehealth.com/wp-content/uploads/2026/02/img.png") right center/cover no-repeat;
	}
	.sector-card {
		height: 460px;}
	.sector-card::after {
    height: 35%;
    top: 65%;
}
	.sector-content {
    top: 70% !important;
}
	.service-section .about-content{
		padding:0 25px 30px !important;
	}
	.service-img img {
		height: 220px;}
	.contact-section .col-lg-7{
		padding:0 !important;
	}
	.contact-form-wrap {
        background: #00000006;
        padding: 15px 30px;
    }
	.contact-title {
		font-size: 32px;}
	.talk-section .white-btn {

		padding: 15px 40px 15px 40px;}
	.page-template-template-home .system-section {
        padding: 0px 25px;
    }
	.list-title{
		text-align:left !important;
	}
	.service-text {
    margin-bottom: 15px;
}
	.service-points {
    gap: 15px;
}
}

@media (max-width: 560px) {


    
    

    .faq-wrapper {
        padding: 3rem 1rem;
    }

    .faq-sec {
        padding: 0 !important;
    }

    .founder-section h2 {
        font-size: 32px;
        font-weight: 400;
        margin-top: 20px;
    }
    .client-slider .sector-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

   .sector-content p {
    font-size: 14px;
    opacity: 0.9;
}

.system-title {
    font-size: 32px;}
	.service-title {
		font-size: 25px;}
	

}