* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Forum';
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --theme-color: #6FD1D4;
}

ul,
ol {
    list-style: none;
}

i,
a {
    display: inline-block;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absoulte {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.forum {
    font-family: 'Forum';
}

.madimione {
    font-family: 'Madimi One';
}

.roboto {
    font-family: 'Roboto Condensed';
}

.LeagueGothic {
    font-family: 'League Gothic Condensed';
}

.advent {
    font-family: 'Advent Pro Expanded';
}

.lancelot {
    font-family: 'Lancelot';
}

.tenorsans {
    font-family: 'Tenor Sans';
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.col-1 {
    width: 8.3333%;
}

.col-2 {
    width: 16.6667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333%;
}

.col-5 {
    width: 41.6667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.3333%;
}

.col-11 {
    width: 91.6667%;
}

.col-12 {
    width: 100%;
}


/* HEADER */

.logo {
    width: 130px;
    height: 120px;
    object-fit: contain;

}

.header {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 15px 48px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    /* match your design */
    background-image: url("../assets/hero.png");
    background-size: cover;
    border-radius: 16px;
    background-position: right bottom;
    overflow: hidden;
}

.main {
    padding: 10px 10px 0 10px;
}

/* Overlay layer */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* 
    background: linear-gradient(to bottom,
            rgba(111, 212, 212, 0.85) 0%,
            rgba(111, 212, 212, 0.65) 40%,
            rgba(0, 0, 0, 0.9) 100%); */

    z-index: 1;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 38px;
    opacity: 0.95;
    font-weight: 600;
    margin-top: auto;
    /* push down */
    margin-bottom: auto;
    /* center vertically */
}

.hero-content h1 {
    font-size: 90px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-btn {
    width: fit-content;
    padding: 12px 12px 12px 65px;
    background: #6fd4d4;
    color: #000;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero .overlay {
    position: absolute;
    right: 2%;
    top: 50%;
}

.hero-btn i {
    margin-left: 40px;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.hero-btn:hover {
    background: #5bc2c2;
}

.hero-btn-container {
    background-color: #fff;
    position: absolute;
    bottom: 2.1%;
    right: 1%;
    border-radius: 40px 0px 0px 10px;
}

.hero .circle-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero .circle-badge>img {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wow {
    visibility: hidden;
}


/* Center circle */
.hero .circle-center {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -37%);
}

.hero .circle-center img {
    width: 45px;
    height: 65px;
    object-fit: cover;
}

/* Circular text */
.hero .circle-text {
    position: absolute;
    width: 90%;
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    font-weight: 700;
}

.hero .circle-text span {
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: 0 70px;
}

/* rotate each letter */
.hero .circle-text span:nth-child(1) {
    transform: rotate(0deg);
}

.hero .circle-text span:nth-child(2) {
    transform: rotate(15deg);
}

.hero .circle-text span:nth-child(3) {
    transform: rotate(30deg);
}

.hero .circle-text span:nth-child(4) {
    transform: rotate(45deg);
}

.hero .circle-text span:nth-child(5) {
    transform: rotate(60deg);
}

.hero .circle-text span:nth-child(6) {
    transform: rotate(75deg);
}

.hero .circle-text span:nth-child(7) {
    transform: rotate(90deg);
}

.hero .circle-text span:nth-child(8) {
    transform: rotate(105deg);
}

.hero .circle-text span:nth-child(9) {
    transform: rotate(120deg);
}

.hero .circle-text span:nth-child(10) {
    transform: rotate(135deg);
}

.hero .circle-text span:nth-child(11) {
    transform: rotate(150deg);
}

.hero .circle-text span:nth-child(12) {
    transform: rotate(165deg);
}

.hero .circle-text span:nth-child(13) {
    transform: rotate(180deg);
}

.hero .circle-text span:nth-child(14) {
    transform: rotate(195deg);
}

.hero .circle-text span:nth-child(15) {
    transform: rotate(210deg);
}

.hero .circle-text span:nth-child(16) {
    transform: rotate(225deg);
}

.hero .circle-text span:nth-child(17) {
    transform: rotate(240deg);
}

.hero .circle-text span:nth-child(18) {
    transform: rotate(255deg);
}

.hero .circle-text span:nth-child(19) {
    transform: rotate(270deg);
}

/* BRAND */

.brand {
    padding: 50px 0;
    background-color: #6FD1D42E;
    margin-top: 15px;
}

.brand-title h2 {
    font-size: 45px;
    color: var(--theme-color);
    font-weight: 500;
}

.brand-title>* {
    min-width: 0;
}

.brand-title span {
    color: #000;
}

.brand-title p {
    font-size: 28px;
    text-align: right;
    white-space: normal;
}

.brand-title {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 24px;
    align-items: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
    padding: 60px 0 0 0;
}

.brand-grid .brand-item:last-child:hover>a {
    color: #fff;
}

.brand-grid .brand-item:last-child:hover>a i {
    color: #fff;
}

.brand-grid>* {
    min-width: 0;
}

.brand-item {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s all;
}

.brand-item h3 {
    letter-spacing: 0%;
    font-size: 120px;
    color: #2F64667D;
    transition: all 0.3s ease;
    font-weight: 400;
    margin-bottom: 5px;
}

.brand-item p {
    font-size: 25px;
}

.brand-item a {
    font-size: 50px;
    color: #000;
}

.brand-content .brand-item:last-child p {
    font-size: 24px;
    /* color: #000; */
}

.brand-content .brand-item:last-child {
    background-color: var(--theme-color);
    margin-left: auto;
}

/* FRANCHISE */

.franchise {
    padding: 60px 0;
}

.franchise-slider {
    display: none !important;
}

.franchise .franchise-title h2 {
    font-size: 45px;
    font-weight: 500;
}

.franchise .franchise-title h2 span {
    color: var(--theme-color);
}

.franchise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 30px;
    align-items: center;
    padding: 60px 0 0 0;
}

.franchise-item:hover>img {
    transform: rotate(360deg);
}

.franchise-grid>* {
    min-width: 0;
}

.franchise-item {
    text-align: center;
    margin: 0 auto;
    transition: 3s all;
}

.franchise-grid .franchise-item img {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.55);
    transition: 3s all;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(125, 227, 230, 0.25);
}

.franchise-grid .franchise-item p {
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
}

.overlay-logo {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

/* CONSULTING */

.consulting-title h2 {
    font-size: 45px;
    font-weight: 500;
}

.consulting-title h2 span {
    color: var(--theme-color);
}

.consulting {
    padding: 80px 0 40px 0;
}

/* MAIN GRID */
.consulting-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    margin-top: 50px;
    overflow-y: hidden;
    align-items: stretch;
}

/* LEFT CARD */
.consulting-left {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.consulting-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LOGO BADGE */
.logo-badge {
    position: absolute;
    bottom: 10px;
    left: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-badge img {
    width: 140px;
    height: 140px;
    animation: spin 10s linear infinite;
}

/* RIGHT COLUMN GRID */
.consulting-right {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
}

/* STORY BOX */
.story-box {
    background-image: url(../assets/cosulting3.png);
    padding: 0 30px 30px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
}

.story-box h4 {
    color: #6fd6db;
    display: inline-block;
    font-size: 25px;
    padding: 10px 0;
}

.story-box p {
    font-size: 15px;
    line-height: 19px;
    color: #090909;
    margin-top: 40px;
}

/* IMAGE BOX */
.consulting .image-box {
    border-radius: 24px;
    overflow: hidden;
}

.consulting .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consulting .circle-badge {
    position: relative;
    width: 300px !important;
    height: 300px;
    border-radius: 50%;
    border: 6px solid #7ad6da;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CIRCULAR TEXT */
.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.circle-text span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 0 78px;
}

/* EVEN ROTATION (PERFECT CIRCLE) */
.circle-text span:nth-child(1) {
    transform: rotate(-90deg);
}

.circle-text span:nth-child(2) {
    transform: rotate(-72deg);
}

.circle-text span:nth-child(3) {
    transform: rotate(-54deg);
}

.circle-text span:nth-child(4) {
    transform: rotate(-36deg);
}

.circle-text span:nth-child(5) {
    transform: rotate(-18deg);
}

.circle-text span:nth-child(6) {
    transform: rotate(0deg);
}

.circle-text span:nth-child(7) {
    transform: rotate(18deg);
}

.circle-text span:nth-child(8) {
    transform: rotate(36deg);
}

.circle-text span:nth-child(9) {
    transform: rotate(54deg);
}

.circle-text span:nth-child(10) {
    transform: rotate(72deg);
}

.circle-text span:nth-child(11) {
    transform: rotate(90deg);
}

.circle-text span:nth-child(12) {
    transform: rotate(108deg);
}

.circle-text span:nth-child(13) {
    transform: rotate(126deg);
}

.circle-text span:nth-child(14) {
    transform: rotate(144deg);
}

.circle-text span:nth-child(15) {
    transform: rotate(162deg);
}

.circle-text span:nth-child(16) {
    transform: rotate(180deg);
}

.circle-text span:nth-child(17) {
    transform: rotate(198deg);
}

.circle-text span:nth-child(18) {
    transform: rotate(216deg);
}

.circle-text span:nth-child(19) {
    transform: rotate(234deg);
}

/* CATEGORIS */

.categoris {
    background-color: #F2F2F2;
    border-radius: 15px;
    padding: 60px 0 20px 0;
}

.category-section {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    overflow-x: hidden;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* Image base */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Gradient overlay */
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.6s ease;
}


/* Hover effects */
.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover .category-overlay-text {
    opacity: 1;
    color: var(--theme-color);
}

.category-left {
    width: 70%;
}

.category-left p {
    z-index: 99;
}

.category-right {
    width: 30%;
}

.imageSlider .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
}

.imageSlider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* title over image */
.imageSlider p {
    position: absolute;
    bottom: 20px;
    z-index: 9;
    left: 20px;
    color: #fff;
}

/* Category Image Slider Styles */
.categoryImageSlider .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categoryImageSlider .swiper-slide-active {
    border: 3px solid var(--theme-color);
}

.categoryImageSlider img {
    width: 100%;
    background: rgba(0, 0, 0, 0.31);
    height: 100%;
    display: block;
    object-fit: cover;
}

.categoryImageSlider * {
    position: relative;
    z-index: 2;
}

.categoryImageSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transition: 1s all;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Forum', sans-serif;
    margin: 0;
}

/* Category Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.categoryPagination {
    position: relative !important;
    width: auto !important;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Forum', sans-serif;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.categoryPrev {
    background-color: #fff;
    color: #333;
}

.categoryPrev:hover {
    background-color: #d0d0d0;
}

.categoryNext {
    background-color: var(--theme-color);
    color: white;
}

.categoryNext:hover {
    background-color: #5eb5b8;
}


.categoryTextSlider {
    height: auto;
}

.category-heading {
    color: var(--theme-color);
    border-bottom: 1px solid #000;
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 600;
    margin-bottom: 25px;
}

.categoryTextSlider .swiper-slide p {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 15px;
    color: #333;
}

.categoryTextSlider .swiper-slide p:last-child {
    margin-bottom: 0;
}

/* pagination fraction */
.swiper-pagination {
    font-weight: 600;
}

/* arrows */
.slider-arrows button {
    border-radius: 50%;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.categoris-title {
    margin-bottom: 30px;
}

.categoris-title h2 {
    font-size: 50px;
    font-weight: 400;
    color: #1a1a1a;
}

.categoris-title h2 span {
    color: var(--theme-color);
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 400;
}

.categoris h3 span {
    color: var(--theme-color);
}

.categoris-grid {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 40px;
    padding: 30px;
    background: #f4f5f3;
    border-radius: 15px;
}

.categoris-grid>* {
    min-width: 0;
}

.vertical-tabs {
    padding: 40px;
    border-radius: 24px;
}

.slider-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.progress-line {
    width: 400px;
    height: 2px;
    background: #e6e6e6;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.progress-fill {
    height: 100%;
    width: 25%;
    display: block;
    background: #000;
    transition: width 0.4s ease;
}

.progress-count {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.progress-count span {
    font-variant-numeric: tabular-nums;
}

/* LEFT SIDE */
.tabs-list {
    display: flex;
    flex-direction: column;
}

.tab {
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 25px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #aaa;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.tab:hover {
    color: #5fd2d6;
}

.tab.active {
    color: #5fd2d6;
    border-bottom: 1px solid var(--theme-color);
}

.tabs-content img {
    border-radius: 20px;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.tabs-content p {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

/* PANELS */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab i {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    font-size: 40px;
    margin-left: 10px;
    font-weight: 500;
}

.tab:focus i,
.tab.active i {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ */

.faq {
    padding-top: 40px;
}

.faq h2 {
    font-size: 45px;
    border-bottom: 1px solid #8E8C8C;
    padding-bottom: 20px;
    font-weight: 500;
}

.faq h2 span {
    color: var(--theme-color);
}

.faq details {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
    transition: height 0.35s ease;
}

.faq summary {
    list-style: none;
    /* remove default arrow */
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
    /* Chrome/Safari */
}

.faq-summary {
    display: flex;
    /* FLEX GOES HERE */
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
}

.faq .icon {
    font-size: 22px;
    width: 36px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* change + to − when open */
details[open] .faq-summary .icon {
    content: "-";
}

/* Change + to - */
details[open] .faq-summary .icon::before {
    content: "-";
}

.faq-summary .icon::before {
    content: "+";
}

.faq-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease, padding-top 0.35s ease;
}

.faq details[open] p {
    max-height: 220px;
    opacity: 1;
    padding-top: 10px;
    transform: translateY(0);
}

.faq details.is-closing p {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    transform: translateY(-6px);
}

.faq summary:focus,
.faq summary:focus-visible {
    color: #5ecad0;
    /* your highlight color */
    outline: none;
}

/* When accordion is OPEN */
.faq details[open] summary {
    color: #5ecad0;
}

/* Optional: icon color change */
.faq details[open] .icon {
    border-color: #5ecad0;
    color: #5ecad0;
}

/* FOOTER */

footer {
    padding-top: 40px;
    background-color: #2F6466;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 4fr;
    gap: 40px;
    color: #fff;
}

.footer-grid .footer-content:first-child img {
    width: 270px;
}

.footer-grid .footer-content:first-child h4 {
    font-size: 17px;
    margin: 5px 0;
    margin-top: 15px;
    font-weight: 500;
}

.footer-content a {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    color: #fff;
    margin: 10px 0;
}

.footer-grid .footer-content:first-child i {
    background-color: rgb(60, 205, 60);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 35px;
    color: green;
    border-radius: 50%;
    margin-top: auto;
}

.footer-content .whatsapp-icon {
    margin-top: auto;
}

.footer-grid .footer-content h3 {
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-grid .footer-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 200px;
    height: 1px;
    background: #fff;
}

.footer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-content ul {
    padding-top: 30px;
}

.footer-content ul li {
    margin: 10px 0;
}

.footer-content ul li i {
    margin-right: 10px;
}

.footer-grid .footer-content:last-child img {
    width: 300px;
}

.copyright {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.copyright ul li:first-child i {
    color: #000;
    background-color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
}

.copyright ul li:nth-child(2) i {
    color: #fff;
    background-color: rgb(60, 209, 60);
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 15px;
}

.copyright ul li:last-child i {
    color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}

/* BLOG */

.blog .swiper {
    width: 100%;
    height: 100%;
}

.blog .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid rgb(204, 200, 200);
}

.blog .swiper-slide-active {
    background-color: #6FD1D433;
}

.blog .swiper-slide img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.blog .swiper-slide h4 {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.blog .swiper-slide p {
    font-size: 12px;
    text-align: left;
    line-height: 17px;
    margin-top: 15px;
}

.blog .swiper-slide a {
    font-size: 14px;
    background-color: #6FD1D4;
    color: #000;
    display: inline-block;
    border-radius: 999px;
    width: fit-content;
    padding: 6px 10px;
    margin-top: 20px;
}

.blog .swiper-slide a i {
    background-color: #fff;
    padding: 8px 10px;
    margin-left: 20px;
    border-radius: 50%;
}

.blog-content {
    flex-direction: column;
    padding-left: 15px;
}

/* Hide scrollbar */
.blog {
    padding: 50px 0;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-title {
    margin-bottom: 40px;
}

.blog-title h2 {
    font-size: 45px;
    font-weight: 500;
}

.blog-title h2 span {
    color: var(--theme-color);
}

.blog-title a {
    font-size: 14px;
    border: 1px solid var(--theme-color);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    color: #000;
}

.blog-title a i {
    background-color: var(--theme-color);
    padding: 10px 11px;
    border-radius: 50%;
    margin-left: 25px;
}

/* CLIENT */

.client-title h2 {
    font-size: 45px;
    font-weight: 500;
}

.client-title h2 span {
    color: var(--theme-color);
}

.client .swiper {
    width: 100%;
    height: 100%;
}

.client .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: auto;
    /* allow Swiper to calculate */
    height: 100%;
    display: flex;
    justify-content: center;
    overflow-y: visible;
}

.client .swiper {
    overflow: visible !important;
}

.client .swiper-wrapper {
    overflow: visible !important;
}

.client-item {
    border: 1px dashed #3b3b3b;
    padding: 20px;
    height: 320px;
    border-radius: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.client-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.client-item img {
    width: 35px;
    height: 46px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.client-item:hover img {
    transform: scale(1.1);
}

.client-content {
    padding: 40px 0;
}

.client-item p {
    font-size: 13px;
    text-align: justify;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.client-item:hover p {
    color: #333;
}

.client-item .flex {
    align-items: end;
}

.client-item h4 {
    font-size: 18px;
    margin-left: 10px;
    font-weight: 500;
}

.client .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

/* default dots */
.client .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d9d9d9;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

/* active pill */
.client .swiper-pagination-bullet-active {
    width: 35px;
    height: 8px;
    background: #cfcfcf;
    /* light grey like image */
    border-radius: 20px;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6fd4d4;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
