* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Titillium Web", sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
.btn-primary {
    background-color: #3b82f6;
}

.slick-prev:before,
.slick-next:before {
    color: #212529;
    font-size: 18px;
    opacity: 1;
    content: "\f053";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.slick-next:before {
    content: "\f054";
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}
.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}
label.error{
    color: red !important;
    font-size: 14px !important;
}
.top-bar {
    font-size: 0.9rem;
}

.top-bar a {
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
    }

    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
        justify-content: center !important;
        flex-wrap: wrap;
        text-align: center;
    }

    .top-bar .col-md-6 {
        margin-bottom: 0.5rem;
    }
}
.logo {
    width: 250px;
}
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    color: #212529;
}

.navbar .navbar-brand i {
    font-size: 1.8rem;
}

.navbar .nav-link {
    color: #333333;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #3b82f6;
}

.hero-section {
    position: relative;
    min-height: 686px;
    background: url("../../images/home/home-banner.jpg");
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    padding: 170px 0 0px;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.53);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .stats-cards {
    position: absolute;
    margin-top: 7rem;
}

.hero-section .stats-cards .stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .stats-cards .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section .stats-cards .stat-card .stat-icon {
    font-size: 28px;
    color: #000;
    margin-bottom: 1rem;
    background: #dbeaff;
    border-radius: 20px;
    padding: 3px;
    height: 52px;
    margin-right: 14px;
}
.hero-section .stats-cards .stat-card .stat-number {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    text-align: left;
}
.hero-section .stats-cards .stat-card .stat-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #4b5563;
    margin-bottom: 0;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .navbar .nav-link {
        margin: 0;
    }

    .hero-section .stats-cards .stat-card {
        padding: 1rem;
    }

    .hero-section .stats-cards .stat-card .stat-number {
        font-size: 1rem;
    }

    .hero-section .stats-cards .stat-card .stat-label {
        font-size: 0.8rem;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .logo {
        width: 200px;
    }
    .inner-banner {
        height: 15rem !important;
    }
    .hero-section .stats-cards {
        position: static;
        margin-top: 2rem;
    }
    .hero-section .stats-cards .stat-card {
        padding: 0.8rem !important;
        align-items: center;
    }
    .hero-section .stats-cards .stat-card .stat-icon {
        margin: 0 10px 0 0;
    }
    .hero-section .stats-cards .stat-card .stat-number {
        font-size: 1rem;
    }
    .hero-section .stats-cards .stat-card .stat-label {
        font-size: 0.8rem;
        line-height: 20px;
    }
}
.categories-section {
    padding-top: 8rem;
    background-color: #f9fafc;
}
.categories-section .category-slide {
    padding: 0 15px;
    outline: none;
}
.categories-section .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 380px;
    cursor: pointer;
}
.categories-section .category-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.categories-section .category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
    top: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
}
.categories-section .category-card .category-overlay .circle {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: right;
    position: absolute;
    right: 40px;
    top: 30px;
}
.categories-section .category-card .category-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.categories-section .category-card .category-overlay p {
    margin-bottom: 0;
    opacity: 0.9;
}
.categories-section .category-card .category-overlay a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.categories-section .category-card .category-overlay a i {
    font-size: 14px;
    padding-left: 8px;
}
.categories-section .category-card:hover img {
    transform: scale(1.1);
}
.categories-section .category-card:hover .category-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.65);
}
.service-grid-listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    display: grid;
}
.service-card {
    cursor: pointer;
}
.service-inner {
    border-radius: 16px;
    overflow: hidden;
    height: 20rem;
    position: relative;
}
.service-inner img {
    transition-duration: 500ms;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    object-position: top;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.service-inner:hover img {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.service-overlay {
    opacity: 0.7;
    --tw-gradient-to-position: ;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-from: #000 var(--tw-gradient-from-position);
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
    inset: 0px;
    position: absolute;
}
.service-content-box {
    padding: 1.5rem;
    right: 0px;
    left: 0px;
    bottom: 0px;
    position: absolute;
}
.service-content-box h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
}
.service-content-box p {
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
}
.service-content-box a {
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    color: #124e94;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-radius: 8px;
    white-space: nowrap;
    visibility: hidden;
}
.service-inner:hover .service-content-box a {
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: #124e94;
}
.service-inner:hover .service-content-box a:hover {
    background-color: #124e94;
    color: #fff;
}
/*.attention-section .body-part-list .body-part-item .body-part-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}
.attention-section .body-part-list .body-part-item .body-part-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}
.attention-section .body-images-container {
    position: relative;
    padding: 2rem 0;
}
.attention-section .body-images-container .body-image-wrapper {
    position: relative;
}
.attention-section .body-images-container .body-image-wrapper .body-image {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%);
}
.attention-section .body-images-container .body-image-wrapper .body-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
}
.attention-section .body-images-container .body-image-wrapper .body-marker:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.6);
}
.attention-section .body-images-container .body-image-wrapper.front-view .neck-marker {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.attention-section .body-images-container .body-image-wrapper.front-view .shoulder-marker {
    top: 15%;
    right: 25%;
}
.attention-section .body-images-container .body-image-wrapper.front-view .knee-marker {
    bottom: 30%;
    left: 45%;
}
.attention-section .body-images-container .body-image-wrapper.back-view .back-marker {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}
.attention-section .body-images-container .body-image-wrapper.back-view .hip-marker {
    bottom: 40%;
    right: 40%;
}*/
.home-interactive {
    gap: 3rem;
    flex-direction: column;
}
.home-interactive .left-ponts,
.body-image-wrapper,
.right-points {
    width: 100%;
}
.home-interactive ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pain-point {
    cursor: pointer;
    border-radius: 16px;
    padding: 1rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.pain-point:hover {
    background-color: #f9fafb;
}
.pain-point h3 {
    font-size: 1.3rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.pain-point:hover h3 {
    color: #1A78B7;
}
.pain-point p {
    font-size: 1.12rem;
    line-height: 1.25rem;
    color: #4b5563;
    margin: 0;
}
.pain-point:hover p {
    color: #111827;
}
.body-image-wrapper {
    position: relative;
}
.body-view {
    gap: 3rem;
    max-width: 56rem;
    position: relative;
}
.front-view,
.back-view {
    position: relative;
    flex: 1 1 0%;
}
#painPointsFront .hidden,
#painPointsBack .hidden {
    opacity: 0;
}
.pain-dots {    
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #ef444433;
    --tw-translate-x: -50%;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.pain-dots div {
    position: absolute;
    inset: 0.5rem;
    background-color: #ef4444;
    border-radius: 9999px;
}
.pain-dots .animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pain-dots.active {
    opacity: 1;
}
.neck-point-front {
    top: 12%;
    left: 53%;
}
.shoulder-point-front { 
    top: 15%;
    left: 32%; 
}
.knee-point-front { 
    top: 66%;
    left: 36%;
}
.hand-point-front {
    top: 45%;
    left: 25%;
}
.foot-point-front {
    top: 90%;
    left: 38%;
}
.hip-point-back {
    bottom: 48%;
    right: 43%;
}
.elbow-point-back { 
    top: 33%;
    right: 15%;
}
.tricep-point-back{ 
    top: 25%;
    left: 33%;
}
.ankle-point-back {
    bottom: 2%;
    right: 23%;
}
.back-point-back {
    top: 35%;
    right: 35%;
}
@media (max-width: 768px) {
    .attention-section .body-part-list {
        margin-bottom: 2rem;
    }
    .attention-section .body-images-container {
        margin-bottom: 2rem;
    }
}
@media (min-width: 1024px) {
    .home-interactive {
        flex-direction: row;
    }
    .home-interactive .left-ponts,
    .right-points {
        width: 25%;
    }
    .body-image-wrapper {
        width: 50%;
    }
}
/*@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}*/
@keyframes ping {
    75% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.body-marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #212529;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.body-marker-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #212529;
}

.body-marker-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.body-part-item.highlight {
    background: rgba(13, 110, 253, 0.1);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.doctors-section {
    background-color: #f9fafc;
}
.doctors-section .doctors-slider,
.doctors-section .ar-doctors-slider {
    padding: 0 20px;
}
.doctors-section .doctor-slide {
    padding: 0 10px;
}
.doctors-section .doctor-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.doctors-section .doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.doctors-section .doctor-card .doctor-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}
.doctors-section .doctor-card .doctor-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease;
    -o-object-position: top;
    object-position: top;
}
.doctors-section .doctor-card .doctor-image:hover img {
    transform: scale(1.05);
}
.doctors-section .doctor-card .doctor-image .doc-profile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.doctors-section .doctor-card .doctor-image .doc-profile .doctor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.doctors-section .doctor-card .doctor-image .doc-profile .doctor-specialty {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}
.doctors-section .doctor-card .doctor-image .doc-profile .doctor-department {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1rem;
}
.doctors-section .doctor-card .doctor-info {
    padding: 1.8rem;
}
.doctors-section .doctor-card .doctor-info .doctor-description {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}
.doctors-section .doctor-card .doctor-info .btn {
    border-radius: 8px;
    padding: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.doctors-section .doctor-card .doctor-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}
.doctors-section .slick-dots {
    bottom: -45px;
}
.doctors-section .slick-dots li {
    margin: 0 5px;
}
.doctors-section .slick-dots li button:before {
    font-size: 10px;
    color: #3b82f6;
    opacity: 0.3;
}
.doctors-section .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #3b82f6;
}
.doctors-section .slick-prev,
.doctors-section .slick-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}
.doctors-section .slick-prev:before,
.doctors-section .slick-next:before {
    color: #212529;
    font-size: 18px;
    font-weight: bold;
    opacity: 1 !important;
}
.doctors-section .slick-prev:hover,
.doctors-section .slick-next:hover {
    background: #3b82f6;
}
.doctors-section .slick-prev:hover:before,
.doctors-section .slick-next:hover:before {
    color: #ffffff;
}
.doctors-section .slick-prev {
    left: -15px;
}
.doctors-section .slick-next {
    right: -15px;
}
@media (max-width: 768px) {
    .doctors-section .slick-prev {
        left: 0;
    }
    .doctors-section .slick-next {
        right: 0;
    }
}
.technologies-section .tech-card {
    position: relative;
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid #f8f9fa;
}
.technologies-section .tech-card .tech-icon {
    color: #3b82f6;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 0 2rem;
    transition: all 0.3s ease;
}
.technologies-section .tech-card .tech-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.technologies-section .tech-card .tech-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
.technologies-section .tech-card .tech-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    /*background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=600&h=400&fit=crop");*/
    background-size: cover;
    background-position: center;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info img {
    font-size: 2rem;
    margin: 0 0 2rem;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info .tech-hover-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info .tech-hover-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info .btn {
    font-size: 1.12rem;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.technologies-section .tech-card .tech-hover-content .tech-hover-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.technologies-section .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.technologies-section .tech-card:hover .tech-icon,
.technologies-section .tech-card:hover .tech-title,
.technologies-section .tech-card:hover .tech-subtitle {
    opacity: 0;
    visibility: hidden;
}
.technologies-section .tech-card:hover .tech-hover-content {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .technologies-section .tech-card {
        min-height: 340px;
        padding: 2rem 1.2rem;
    }
}

.success-stories-section {
    background: #f9fafc;
    overflow: hidden;
}

.success-stories-section .video-slide {
    padding: 0 15px;
    outline: none;
}

.success-stories-section .video-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-stories-section .video-card .video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
}

.success-stories-section .video-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-stories-section .video-card .video-thumbnail .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.success-stories-section .video-card .video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.success-stories-section .video-card .video-thumbnail .play-button i {
    font-size: 2rem;
    color: #ffffff;
    margin-left: 5px;
}

.success-stories-section .video-card .video-thumbnail .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
    z-index: 2;
}

.success-stories-section .video-card .video-thumbnail .video-info .video-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.success-stories-section .video-card .video-thumbnail .video-info .video-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.success-stories-section .video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.success-stories-section .video-card:hover .video-thumbnail .video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.success-stories-section .video-card:hover .video-thumbnail .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.success-stories-section .slick-slide {
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.3s ease;
}

.success-stories-section .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
}

.success-stories-section .slick-prev,
.success-stories-section .slick-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-stories-section .slick-prev:before,
.success-stories-section .slick-next:before {
    color: #212529;
    font-size: 20px;
    opacity: 1;
}

.success-stories-section .slick-prev:hover,
.success-stories-section .slick-next:hover {
    background: #3b82f6;
}

.success-stories-section .slick-prev:hover:before,
.success-stories-section .slick-next:hover:before {
    color: #ffffff;
}

.success-stories-section .slick-prev {
    left: 30px;
}

.success-stories-section .slick-next {
    right: 30px;
}

.success-stories-section .slick-dots {
    bottom: -50px;
}

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

.success-stories-section .slick-dots li button:before {
    font-size: 12px;
    color: #3b82f6;
    opacity: 0.3;
}

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

@media (max-width: 768px) {
    .success-stories-section .video-card .video-thumbnail {
        height: 350px;
    }

    .success-stories-section .slick-prev {
        left: 10px;
    }

    .success-stories-section .slick-next {
        right: 10px;
    }
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.video-modal.active {
    display: block;
}

.video-modal .video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    z-index: 10000;
    animation: slideDown 0.3s ease;
}

.video-modal .video-modal-content .video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #212529;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal .video-modal-content .video-modal-close:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: rotate(90deg);
}

.video-modal .video-modal-content .video-modal-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #212529;
    border-radius: 10px;
}

.video-modal .video-modal-content .video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .video-modal .video-modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-section .process-content {
    padding-right: 3rem;
}

.process-section .process-content .process-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.process-section .process-content .process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .process-section .process-content .process-title {
        font-size: 2rem;
    }
}

.process-section .process-content .process-description {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
}

.process-section .process-content .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-section .process-content .btn i {
    transition: transform 0.3s ease;
}

.process-section .process-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.process-section .process-content .btn:hover i {
    transform: translateX(5px);
}

.process-section .process-steps {
    height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 20px;
    padding-left: 16px;
}

.process-section .process-steps .process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f9fafc;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-section .process-steps .process-step:last-child {
    margin-bottom: 0;
}

.process-section .process-steps .process-step:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(-10px);
}

.process-section .process-steps .process-step .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #e6eef9;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-section .process-steps .process-step .step-content {
    flex: 1;
}

.process-section .process-steps .process-step .step-content .step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.8rem;
}

.process-section .process-steps .process-step .step-content .step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .process-section .process-content {
        margin-bottom: 3rem;
    }

    .process-section .process-steps .process-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .process-section .process-steps .process-step {
        flex-direction: column;
        padding: 1.5rem;
    }

    .process-section .process-steps .process-step .step-number {
        margin-bottom: 1rem;
    }
}

.awards-section {
    background: #f9fafc;
}
.awards-section .awards-slider,
.awards-section .ar-awards-slider {
    padding: 0 50px;
}
.awards-section .award-slide {
    padding: 0 15px;
    outline: none;
}
.awards-section .award-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.awards-section .award-card .award-icon {
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(185, 184, 183, 0.3);
    transition: all 0.3s ease;
}
.awards-section .award-card .award-icon i {
    font-size: 3rem;
    color: #b8860b;
}
.awards-section .award-card .award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.awards-section .award-card .award-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}
.awards-section .award-card:hover .award-icon {
    transform: scale(1.1) rotate(10deg);
}
.awards-section .slick-prev,
.awards-section .slick-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.awards-section .slick-prev:before,
.awards-section .slick-next:before {
    color: #212529;
    font-size: 18px;
    opacity: 1;
}
.awards-section .slick-prev:hover,
.awards-section .slick-next:hover {
    background: #3b82f6;
}

.awards-section .slick-prev:hover:before,
.awards-section .slick-next:hover:before {
    color: #ffffff;
}

.awards-section .slick-prev {
    left: -5px;
}

.awards-section .slick-next {
    right: -5px;
}

.awards-section .slick-dots {
    bottom: -50px;
}

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

.awards-section .slick-dots li button:before {
    font-size: 12px;
    color: #3b82f6;
    opacity: 0.3;
}

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

@media (max-width: 768px) {
    .awards-section {
        padding: 0 20px;
    }

    .awards-section .award-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }

    .awards-section .award-card .award-icon {
        width: 80px;
        height: 80px;
    }

    .awards-section .award-card .award-icon i {
        font-size: 2.5rem;
    }

    .awards-section .award-card .award-title {
        font-size: 1.1rem;
    }

    .awards-section .slick-prev {
        left: 0;
    }

    .awards-section .slick-next {
        right: 0;
    }
}

.testimonials-success-section {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&h=800&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
}

.testimonials-success-section .testimonials-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.testimonials-success-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-success-section .testimonials-success-slider,
.testimonials-success-section .ar-testimonials-success-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-success-section .testimonial-success-slide {
    padding: 0 15px;
    outline: none;
}

.testimonials-success-section .testimonial-success-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonials-success-section .testimonial-success-card .testimonial-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.testimonials-success-section .testimonial-success-card .testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
}

.testimonials-success-section .testimonial-success-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonials-success-section .testimonial-success-card .testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.testimonials-success-section .testimonial-success-card .testimonial-author .author-info .author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.testimonials-success-section .testimonial-success-card .testimonial-author .author-info .author-role {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0;
}

.testimonials-success-section .slick-prev,
.testimonials-success-section .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonials-success-section .slick-prev:before,
.testimonials-success-section .slick-next:before {
    color: #ffffff;
    font-size: 20px;
    opacity: 1;
}

.testimonials-success-section .slick-prev:hover,
.testimonials-success-section .slick-next:hover {
    background: #3b82f6;
    transform: scale(1.1);
}

.testimonials-success-section .slick-prev:hover:before,
.testimonials-success-section .slick-next:hover:before {
    color: #ffffff;
}

.testimonials-success-section .slick-prev {
    left: -70px;
}

.testimonials-success-section .slick-next {
    right: -70px;
}

.testimonials-success-section .slick-dots {
    bottom: -50px;
}

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

.testimonials-success-section .slick-dots li button:before {
    font-size: 12px;
    color: #ffffff;
    opacity: 0.5;
}

.testimonials-success-section .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ffffff;
}

@media (max-width: 992px) {
    .testimonials-success-section {
        background-attachment: scroll;
    }

    .testimonials-success-section .slick-prev {
        left: -30px;
    }

    .testimonials-success-section .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .testimonials-success-section .testimonial-success-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-success-section .testimonial-success-card .testimonial-quote {
        font-size: 1rem;
        min-height: auto;
    }

    .testimonials-success-section .testimonial-success-card .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-success-section .testimonial-success-card .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonials-success-section .slick-prev {
        left: 10px;
    }

    .testimonials-success-section .slick-next {
        right: 10px;
    }
}

.ministries-section {
    background: #f9fafc;
}

.ministries-section .ministries-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 60px;
}

.ministries-section .ministries-slider .slick-list {
    padding: 30px 0;
}

.ministries-section .ministries-slider .ministry-slide {
    padding: 0 15px;
    outline: none;
}

.ministries-section .ministries-slider .ministry-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
}

.ministries-section .ministries-slider .ministry-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.ministries-section .ministries-slider .ministry-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ministries-section .ministries-slider .ministry-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.ministries-section .ministries-slider .slick-prev,
.ministries-section .ministries-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.ministries-section .ministries-slider .slick-prev:before,
.ministries-section .ministries-slider .slick-next:before {
    color: #212529;
    font-size: 18px;
    opacity: 1;
}

.ministries-section .ministries-slider .slick-prev:hover,
.ministries-section .ministries-slider .slick-next:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.ministries-section .ministries-slider .slick-prev:hover:before,
.ministries-section .ministries-slider .slick-next:hover:before {
    color: #ffffff;
}

.ministries-section .ministries-slider .slick-prev {
    left: 0;
}

.ministries-section .ministries-slider .slick-next {
    right: 0;
}

@media (max-width: 768px) {
    .ministries-section .ministries-slider {
        padding: 0 40px;
    }

    .ministries-section .ministries-slider .ministry-card {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }

    .ministries-section .ministries-slider .ministry-card img {
        max-height: 60px;
    }
}

.corporates-section {
    background: #ffffff;
}

.corporates-section .corporates-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 60px;
}

.corporates-section .corporates-slider .slick-list {
    padding: 30px 0;
}

.corporates-section .corporates-slider .corporate-slide {
    padding: 0 15px;
    outline: none;
}

.corporates-section .corporates-slider .corporate-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
}

.corporates-section .corporates-slider .corporate-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.corporates-section .corporates-slider .corporate-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.corporates-section .corporates-slider .corporate-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.corporates-section .corporates-slider .slick-prev,
.corporates-section .corporates-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.corporates-section .corporates-slider .slick-prev:before,
.corporates-section .corporates-slider .slick-next:before {
    color: #212529;
    font-size: 18px;
    opacity: 1;
    content: "\f053";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.corporates-section .corporates-slider .slick-prev:hover,
.corporates-section .corporates-slider .slick-next:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.corporates-section .corporates-slider .slick-prev:hover:before,
.corporates-section .corporates-slider .slick-next:hover:before {
    color: #ffffff;
}

.corporates-section .corporates-slider .slick-prev {
    left: 0;
}

.corporates-section .corporates-slider .slick-next {
    right: 0;
}

.corporates-section .corporates-slider .slick-next:before {
    content: "\f054";
}

@media (max-width: 768px) {
    .corporates-section .corporates-slider {
        padding: 30px 40px;
    }

    .corporates-section .corporates-slider .corporate-card {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }

    .corporates-section .corporates-slider .corporate-card img {
        max-height: 60px;
    }
}

.about-section {
    background: #ffffff;
}

.about-section .about-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.about-section .about-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-section .about-image-wrapper .experience-badge {
    position: absolute;
    background: #3b82f6;
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    right: 15px;
    text-align: left;
    padding: 15px 30px;
    bottom: -24px;
}

.about-section .about-image-wrapper .experience-badge .experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.about-section .about-image-wrapper .experience-badge .experience-text {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.about-section .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.about-section .about-description {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
}

.about-section .about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-section .about-features-grid .about-feature-item {
    display: flex;
    gap: 1rem;
}

.about-section .about-features-grid .about-feature-item .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    color: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-section .about-features-grid .about-feature-item .feature-content {
    flex: 1;
}

.about-section .about-features-grid .about-feature-item .feature-content .feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.3rem;
}

.about-section .about-features-grid .about-feature-item .feature-content .feature-desc {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-section .about-image-wrapper .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }

    .about-section .about-image-wrapper .experience-badge .experience-number {
        font-size: 2rem;
    }

    .about-section .about-image-wrapper .experience-badge .experience-text {
        font-size: 0.85rem;
    }

    .about-section .about-title {
        font-size: 2rem;
    }

    .about-section .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.faq-section {
    background: #f8f9fa;
}

.faq-section .faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item .faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-section .faq-item .faq-question:hover {
    color: #3b82f6;
}

.faq-section .faq-item .faq-question:focus {
    outline: none;
    box-shadow: none;
}

.faq-section .faq-item .faq-question[aria-expanded=true] {
    color: #3b82f6;
}

.faq-section .faq-item .faq-question[aria-expanded=true] i {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-section .faq-item .faq-question i {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-section .faq-item .faq-answer .faq-answer-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section .faq-item .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .faq-section .faq-item .faq-answer .faq-answer-content {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

.footer {
    background: #1a2332;
    color: rgba(255, 255, 255, 0.8);
}
.footer .footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer .footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer .footer-social a i {
    font-size: 1rem;
}

.footer .footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 0.8rem;
}

.footer .footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer .footer-contact li i {
    flex-shrink: 0;
    margin-right: 0.8rem;
    color: #ffffff;
    width: 20px;
    margin-top: 3px;
}

.footer .footer-contact li span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer .footer-newsletter-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer .footer-newsletter-form .input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.7rem 1rem;
    border-radius: 8px 0 0 8px;
}

.footer .footer-newsletter-form .input-group .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter-form .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter-form .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: none;
}

.footer .footer-newsletter-form .input-group .btn {
    border-radius: 0 8px 8px 0;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
}

.footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer .footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer .footer-bottom-links a:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .footer .footer-social {
        margin-bottom: 2rem;
    }

    .footer .footer-bottom-links {
        margin-top: 1rem;
    }

    .footer .footer-bottom-links a {
        margin: 0 0.5rem;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
        padding: 80px 0 30px;
        background-attachment: scroll;
    }

    .hero-section .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section .stats-cards .stat-card {
        padding: 1.5rem;
    }

    .hero-section .stats-cards .stat-card .stat-number {
        font-size: 1rem;
    }

    .category-card {
        height: 250px !important;
    }

    .product-card .product-image {
        height: 220px;
    }

    .team-card img {
        height: 280px;
    }

    .app-section .app-mockup {
        margin-top: 2rem;
    }

    .slick-slider .slick-prev {
        left: 10px;
    }

    .slick-slider .slick-next {
        right: 10px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
.inner-banner {
    position: relative;
    width: 100%;
    height: 24rem;
    background-size: cover;
    background-position: center;
}
.banner-overlay {
    inset: 0px;
    position: absolute;
    background-color: rgba(0,0,0, 0.5);
}
.banner-content {
    position: relative;
    padding: 0;
    z-index: 10;
}
.banner-heading {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.banner-subheading {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}
.banner-button {
    background-color: #124e94;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: #fff;
    padding: 1rem 2rem;
    white-space: nowrap;
    border-radius: 8px;
}
.banner-button:hover {
    background-color: #1daf8b;
    border-radius: 8px;
}
main section {
    padding: 4rem 0;
}
.section-heading {
    color: #000;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
}
.section-para {
    color: #000;
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 48rem;
    margin: auto;
}
.bg-gray {
    background-color: rgb(249 250 251);
}
.bg-blue {
    background-color: #124e94;
}
.bg-white {
    background-color: #ffffff;
}
.bg-transparent {
    background-color: transparent;
}
.thankyou-details .success-icon i {
    font-size: 32px;
    line-height: 40px;
    color: #1daf8b;
}
.thankyou-details h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #000;
    margin: 20px 0;
}
.thankyou-details p {
    font-size: 16px;
    line-height: 20px;
}
@media (max-width: 767px) {
    .slick-slider {
        overflow: hidden;
        margin-bottom: 0 !important;
    }
    .slick-slide {
        margin: 0 30px;
    }
    .banner-content {
        padding: 0 2em;
    }
    .banner-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .banner-subheading {
        font-size: 1rem;
        line-height: 22px;
        margin-bottom: 1rem;
    }
    .banner-button {
        padding: 10px 15px;
        font-size: 16px;        
    }
    .section-heading {
        font-size: 28px;
        line-height: 32px;
    }
    .section-para {
        font-size: 1rem;
        line-height: 22px;
    }
    .header-buttons a {
        font-size: 14px;
    }
    main section,
    .categories-section,
    #overview,
    .technologies-section {
        padding: 2rem 1rem !important;
    }
    .service-grid-listing {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .service-inner {
        height: 250px;
    }
    .doctors-section .doctor-slide {
        padding: 0;
    }
    .technologies-section .tech-card .tech-title,
    .technologies-section .tech-card .tech-hover-content .tech-hover-info .tech-hover-title {
        font-size: 20px;
    }
    .technologies-section .tech-card .tech-subtitle,
    .technologies-section .tech-card .tech-hover-content .tech-hover-info .tech-hover-desc {
        font-size: 16px;
        line-height: 20px;
    }
    .technologies-section .tech-card .tech-hover-content .tech-hover-info .btn {
        font-size: 16px;
        padding: 8px 15px;
    }
    .about-overview .container > .d-flex {
        gap: 2rem;
    }
    .success-stories-section .video-slide,
    .slick-list {
        padding: 0 !important;
    }
    .success-stories-section .video-card .video-thumbnail .video-info .video-title {
        font-size: 18px;
    }
    .success-stories-section .video-card .video-thumbnail .play-button i {
        font-size: 24px;
    }
    .success-stories-section .video-card .video-thumbnail .play-button {
        width: 70px;
        height: 70px;
    }
}