<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* back-to-to */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
    transform: skew(18deg);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: var(--bs-dark);
    color: var(--bs-white); 
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-primary span,
.btn.btn-primary i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-primary:hover {
    background: var(--bs-white);
    color: var(--bs-dark);

}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.btn.btn-dark {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top {
    height: 100%;
    position: relative;
    background-color: #ffffff !important;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff !important;
    z-index: 1;
}

.topbar .login-btn {
    position: relative;
}

.topbar .login-btn::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -1px;
    background: var(--bs-primary);
    transform: skew(18deg);
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: #ffffff !important;
        z-index: -1;
    }

    .navbar-brand {
        display: block;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
        padding: 10px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 180px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: #ffffff !important;
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }
}

.navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 40px 50px 40px 0;
}

.navbar-brand::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: #ffffff !important;
    transform: rotate(-18deg);
    z-index: -1;
}

.header-top .navbar-brand {
    position: relative;
    z-index: 99;
}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: none;
        background: var(--bs-primary);
        color: var(--bs-dark);
        transform: skew(18deg);
    }

    .navbar.navbar-expand-lg .navbar-toggler span {
        transform: skew(-18deg);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-btn {
        display: inline-flex;
        margin-left: auto;
        background: transparent;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .navbar-nav {
        background: transparent !important;
    }

    .nav-shaps-1 {
        position: absolute;
        overflow: hidden;
        min-width: calc(100% - 81%);
        height: 100%;
        top: 0;
        right: 0;
        transform: skew(18deg);
        background: var(--bs-dark);
        z-index: -1;
    }

    .nav-shaps-2 {
        position: absolute;
        overflow: hidden;
        width: 12%;
        height: 100%;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.jpg);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/header-1.jpg);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

@media (max-width: 991px) {
    .hero-bg-half-1 {
        background-image: url(../img/header-2.jpg);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }

    .hero-bg-half-2 {
        background-image: url(../img/header-1.jpg);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about {
    background: rgba(30, 61, 89, 0.9);  /* Semi-transparent dark blue */
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/medical-bg.jpg') center/cover no-repeat;
    z-index: -1;
    opacity: 0.15;  /* Subtle background image */
}

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

.about-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-img {
    position: relative;
    overflow: hidden;
}

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

.about-img:hover img {
    transform: scale(1.03);
}

/* Icon styles */
.about .fas {
    color: #ffffff;  /* White color */
}

/* Border styles */
.about .border-top,
.about .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about {
        padding-top: 150px !important;
    }

    .about .text-center {
        margin-top: 30px;
    }

    .about .display-3 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .about {
        padding-top: 120px !important;
    }

    .about .display-3 {
        font-size: 2rem !important;
    }
}
/*** About End ***/

/*** Fitness Goal Start ***/
.goal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(255, 245, 225, 0.9), rgba(12, 24, 68, 0.9)), url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.goal::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    margin-right: -200px;
    transform: skew(18deg);
    background: rgba(200, 0, 54, .1);
}

.goal .goal-item {
    transform: skew(10deg);
    box-shadow: 0 0 45px rgba(12, 24, 68, 0.4);
    margin: 0 15px 15px 15px;
}

@media (min-width: 992px) {
    .goal .goal-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .goal .goal-content {
        padding-bottom: 0;
    }
}
/*** Fitness Goal End ***/

/*** Features Start ***/
.feature {
    overflow: hidden;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 60px;
    transform: skew(10deg);
}

.feature .feature-shaps {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-top: -200px;
    transform: skewX(-10deg);
    border: 3px solid var(--bs-primary);
    z-index: 2;
}

@media (max-width: 576px) {
    .feature .feature-shaps {
        width: 90%;
        margin-left: 5%;
    }
}

.feature .feature-item {
    position: relative;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
}

.feature .feature-item .feature-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img::after {
    height: 100%;
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-content {
    position: relative;
    background: var(--bs-white);
    z-index: 1;
}

.feature .feature-item .feature-content h4 {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-content h4 {
    color: var(--bs-primary);
}

.feature .feature-item .feature-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: -1;
}

.feature .feature-item:hover .feature-content::after {
    height: 100%;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -122px;
    transform: skew(18deg);
    background: var(--bs-dark);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev i,
.feature-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.feature-carousel .owl-nav .owl-prev {
    left: 0;
}
.feature-carousel .owl-nav .owl-next {
    right: 150px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Features End ***/

/*** Courses Start ***/
.courses {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.courses .courses-item {
    position: relative;
    overflow: hidden;
}

.courses .courses-item p {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses .courses-item:hover p {
    color: var(--bs-body);
}

.courses-item .courses-item-inner {
    position: relative;
    transform: skew(4deg);
    margin: 0 15px;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner {
    background: none;
}

.courses-item .courses-item-inner:hover {
    transform: skew(-4deg);
}

.courses-item .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-body);
}

.courses-item .courses-item-inner .data-info .courses-date {
    font-size: 13px;
}

.courses-item .courses-item-inner .courses-icon-img {
    width: 80px; 
    height: 80px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.courses-item .courses-item-inner .courses-icon-img img {
    filter: grayscale(100%);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .courses-icon-img img {
    filter: grayscale(0%);
}

.courses-item-inner:hover a {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item-inner:hover a:hover {
    color: var(--bs-primary);
}

.courses-item-inner::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: rgba(12, 24, 68, 0.9);
    transition: 0.5s;
    z-index: -1;
}

.courses-item-inner:hover:after {
    height: 100%;
}
/*** Courses End ***/

/*** Blog Start ***/
.blog {
    overflow: hidden;
}

.blog .blog-item {
    position: relative;
    border: 1px solid var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(100deg);
    background: rgba(200, 0, 54, 1);
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog .blog-item .blog-img::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(-100deg);
    background: rgba(12, 24, 68, 1);
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog-content .blog-comment {
    transform: skew(8deg);
    background: rgba(12, 24, 68, 1);
}

.blog-content .blog-comment div.small,
.blog-content .blog-comment span {
    transform: skew(-4deg);
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;
}

.blog-carousel .owl-dots {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-dark);
    transform: skew(18deg);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 50px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
    height: 30px;
    margin-top: 10px;
}

.blog-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}
/*** Blog End ***/

/*** Explore Fitness Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Explore Fitness End ***/

/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 245, 225, .5);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.team .team-item .team-img .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon a  {
    margin: 0 7px;
}

.team .team-item .team-content {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border: 1px solid var(--bs-primary);
    border-top: none;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover .team-content,
.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team .team-item:hover .team-content::after {
    height: 100%;
    background: var(--bs-dark);
}

.team .team-item .team-content h4 {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.9), rgba(12, 24, 68, 0.9)), url(../img/services-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-item .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bs-white);
}

.testimonial-item .testimonial-img {
    border: 2px solid var(--bs-primary);
}

.testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    transform: skew(18deg);
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}
.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Testimonial End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: linear-gradient(rgba(255, 245, 225, 0.2), rgba(12, 24, 68, 0.1), rgba(200, 0, 54, 0.3));
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    position: relative;
    overflow: hidden;
    background: url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Light blur overlay */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Lighter overlay */
    backdrop-filter: blur(5px); /* Reduced blur */
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

/* Container to ensure content is above blur */
.footer .container {
    position: relative;
    z-index: 2;
}

.footer-item {
    padding: 30px 0;
}

.footer-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Added text shadow for better readability */
}

.footer-item a {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    line-height: 35px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-item a:hover {
    color: #00ffff;
    transform: translateX(5px);
}

.footer-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-item h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-item i {
    color: #00ffff;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/* Add these styles to override the dark header */
.header-top {
    background-color: #ffffff !important;
}

.header-top::after {
    background: #ffffff !important;
}

@media (min-width: 992px) {
    .header-top::before {
        background: #ffffff !important;
    }
}

.navbar-brand::before,
.navbar-brand-2::before {
    background: #ffffff !important;
}

.nav-bar {
    background-color: #ffffff !important;
}

.topbar {
    background-color: #ffffff !important;
}

/* Update text colors for better visibility on white */
.topbar .text-muted {
    color: #333333 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #1e3d59 !important; /* Dark blue color */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 25px;
}

/* Hover effect */
.navbar-light .navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: #1e3d59;
    box-shadow: 0 0 15px rgba(30, 61, 89, 0.3);
}

/* Active state with glassmorphism */
.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(30, 61, 89, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 0 15px rgba(30, 61, 89, 0.3),
        0 0 30px rgba(30, 61, 89, 0.2),
        0 0 45px rgba(30, 61, 89, 0.1);
    animation: glow 2s infinite;
}

/* Glow animation for active state */
@keyframes glow {
    0% {
        box-shadow: 
            0 0 15px rgba(30, 61, 89, 0.3),
            0 0 30px rgba(30, 61, 89, 0.2),
            0 0 45px rgba(30, 61, 89, 0.1);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(30, 61, 89, 0.4),
            0 0 40px rgba(30, 61, 89, 0.3),
            0 0 60px rgba(30, 61, 89, 0.2);
    }
    100% {
        box-shadow: 
            0 0 15px rgba(30, 61, 89, 0.3),
            0 0 30px rgba(30, 61, 89, 0.2),
            0 0 45px rgba(30, 61, 89, 0.1);
    }
}

/* Dropdown styles */
.navbar-light .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(30, 61, 89, 0.2);
}

.navbar-light .navbar-nav .dropdown-item {
    color: #1e3d59;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .dropdown-item:hover {
    color: #ffffff;
    background: #1e3d59;
    transform: translateX(5px);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-light .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 20px;
    }

    .navbar-light .navbar-nav .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        margin: 0 10px;
    }
}

/* Add these styles at the end of your CSS file */

#elohim-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

#elohim-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

#elohim-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-col-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-col-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo styles */
#elohim-hero-logo {
    text-align: center;
}

#elohim-hero-logo img {
    max-width: 400px;
    height: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-col-text {
        order: 1; /* Text appears first */
        width: 100%;
        padding: 0 20px;
    }

    .hero-col-logo {
        order: 2; /* Logo appears second */
        margin-top: 2rem;
    }

    #elohim-hero-logo img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-row {
        gap: 1.5rem;
    }

    .hero-col-text {
        padding: 0 15px;
    }

    #elohim-hero-logo img {
        max-width: 250px;
    }
}

/* Update text sizes for desktop */
#elohim-hero-text h1 {
    color: #ffffff;
    font-size: 7rem; /* Much bigger welcome text */
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.9;
    position: relative;
    line-height: 1.1;
}

#elohim-hero-text h2 {
    color: #1e3d59;
    font-size: 8rem; /* Much bigger company name */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

/* Keep existing responsive adjustments */
@media (max-width: 1200px) {
    #elohim-hero-text h1 {
        font-size: 5rem;
    }
    
    #elohim-hero-text h2 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    #elohim-hero-text h1 {
        font-size: 4.5rem !important;
    }
    
    #elohim-hero-text h2 {
        font-size: 5rem !important;
    }
    
    .hero-col-text {
        padding-left: 1rem;
    }
    
    .hero-col-logo {
        padding-right: 1rem;
    }
    
    #elohim-hero-logo img {
        max-width: 350px !important;
    }
}

@media (max-width: 576px) {
    #elohim-hero-text h1 {
        font-size: 3.5rem !important;
    }
    
    #elohim-hero-text h2 {
        font-size: 4rem !important;
    }

    #elohim-hero-logo img {
        max-width: 300px !important;
    }
}

/* Update the shimmer effect for the company name */
.shimmer-blue {
    background: linear-gradient(
        90deg,
        #1e3d59 0%,
        #4682B4 25%,
        #87CEEB 50%,
        #4682B4 75%,
        #1e3d59 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-blue 3s linear infinite;
    text-shadow: 
        0 0 10px rgba(30, 61, 89, 0.3),
        0 0 20px rgba(30, 61, 89, 0.2),
        0 0 30px rgba(30, 61, 89, 0.1);
    font-size: 3.5rem;
    line-height: 1.2;
}

.shimmer-blue::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    color: #1e3d59;
    z-index: -1;
    font-weight: 700;
}

@keyframes shimmer-blue {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Top Contact Bar Styles */
.top-contact-bar {
    background: linear-gradient(
        90deg,
        rgba(44, 18, 80, 0.85) 0%,
        rgba(30, 12, 60, 0.85) 50%,
        rgba(22, 8, 41, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.top-contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle at top right,
            rgba(0, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 0, 255, 0.1) 0%,
            transparent 50%
        );
    pointer-events: none;
}

#top-contact-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

#top-contact-details a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

#top-contact-details a:hover {
    color: #00ffff;
    transform: translateX(5px);
}

#top-contact-details i {
    color: #00ffff;
    margin-right: 8px;
}

.phone-numbers {
    display: flex;
    gap: 15px;
    align-items: center;
}

#top-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

#top-location i {
    color: #00ffff;
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #top-contact-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .phone-numbers {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .top-contact-bar {
        display: none;
    }
}

/* Services section styles */
.services {
    background: #ffffff;  /* White background */
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.services h4 {
    color: #1e3d59;  /* Dark blue color */
    font-weight: 600;
    margin-bottom: 1rem;
}

.services h1 {
    color: #333333;  /* Dark gray */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services p {
    color: #666666;  /* Medium gray for better readability */
}

.service-item {
    background: #ffffff;  /* White background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

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

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

.service-content {
    padding: 30px;
    background: #ffffff;  /* White background */
}

.service-content h4 {
    color: #1e3d59;  /* Dark blue color */
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    color: #666666;  /* Medium gray */
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .services {
        padding: 60px 0;
    }
}

/* About page specific styles */
.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-img-grid .img-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.about-img-grid .img-item img {
    transition: transform 0.5s ease;
}

.about-img-grid .img-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-img-grid {
        margin-top: 3rem;
    }
}

/* Certification styles update */
.certification-card {
    background: rgba(20, 8, 45, 0.9);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
}

.certification-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cert-header {
    margin-bottom: 20px;
    text-align: center;
}

.cert-header h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Style for the authority name to match "Services" style */
.cert-header h4 span {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .cert-header h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cert-header h4 {
        font-size: 1.3rem;
    }
}

.cert-file {
    background: rgba(30, 12, 60, 0.9);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    max-height: 70vh; /* Ensures image is visible on all screens */
}

.pdf-link {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.pdf-link a {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    font-size: 1.1rem;
}

.pdf-link a:hover {
    background: #00ffff;
    color: #000;
}

.pdf-link i {
    font-size: 1.2rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .certification-card {
        padding: 15px;
    }

    .cert-header h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .certification-card {
        padding: 10px;
    }

    .cert-header h4 {
        font-size: 1.3rem;
    }

    .cert-file {
        padding: 10px;
    }

    .img-container {
        margin: 0 -10px; /* Negative margin to make image full width */
    }

    .img-container img {
        border-radius: 8px;
    }

    .pdf-link a {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}

/* Add/Update these styles */
.shimmer-blue {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .shimmer-blue {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .shimmer-blue {
        font-size: 2rem;
        margin-right: 15px; /* Add space on right to prevent blur overlap */
    }
    
    #elohim-hero-text {
        padding-right: 20px; /* Add padding to prevent text overlap with blur */
    }
}

/* Contact Section Styles */
.contact-section {
    min-height: 100vh;
    background: #fff;
    padding: 30px 20px;
    padding-top: 20px; /* Add space for fixed navbar */
}

/* Header Styles */
.contact-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Top Section Styles */
.contact-top {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 0 50px;
}

.contact-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-info {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: #333;
    margin-top: 5px;
}

.info-item h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    margin: 0;
}

/* Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-color: #333;
}

.btn-dark {
    background: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
    border-radius: 8px;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-section {
        padding-top: 120px;
    }

    .contact-header {
        padding: 0 15px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-top {
        flex-direction: column-reverse;
        padding: 0 15px;
    }

    .contact-form {
        margin: 0 15px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding-top: 100px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 15px;
        margin: 0 10px;
    }

    .form-control {
        padding: 10px;
    }

    .btn-dark {
        width: 100%;
    }
}

/* Certifications Section Styles */
.certifications-section {
    min-height: 100vh;
    background-image: url('../img/header-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    padding: 30px 0 100px;
    overflow: hidden;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.certifications-section h1 {
    color: #333;
    font-weight: 600;
    font-size: 3.5rem;
}

.certifications-section p {
    color: #666;
    font-size: 1.1rem;
}

.certification-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.cert-header h4 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cert-header h4 span {
    font-weight: 300;
    opacity: 0.8;
}

.cert-file {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
}

.img-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.pdf-link a {
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}


/* Mobile Responsive */
@media (max-width: 991px) {
    .certifications-section {
        padding-top: 120px;
    }

    .certifications-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .certifications-section {
        padding-top: 100px;
    }

    .certifications-section h1 {
        font-size: 2.2rem;
    }

    .certification-card {
        padding: 15px;
    }

    .cert-header h4 {
        font-size: 1.5rem;
    }
}

/* Medical Equipment Section Styles */
.equipment-section {
    padding: 30px 0 100px;
    background: #fff;
    margin-top: 80px;  /* Add margin to push content below header */
}

.equipment-section .display-3 {
    margin-top: 30px;  /* Add space above the title */
    font-size: 2.8rem;
    color: #333;
}

.equipment-section p {
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .equipment-section {
        margin-top: 100px;  /* Increase margin on mobile */
    }
    
    .equipment-section .display-3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .equipment-section {
        margin-top: 80px;  /* Adjust for smaller screens */
    }
    
    .equipment-section .display-3 {
        font-size: 1.8rem;
        margin-top: 20px;
    }
    
    .equipment-section p {
        font-size: 1rem;
    }
}

/* Innovation Section Styles */
.innovation-section {
    padding: 30px 0;
}

.row.g-5 {
    margin-bottom: 50px;
}

/* Mobile view adjustments */
@media (max-width: 991px) {
    /* Reverse order for even sections */
    .row.g-5:nth-child(even) {
        flex-direction: column-reverse;
    }
    
    /* Normal order for odd sections */
    .row.g-5:nth-child(odd) {
        flex-direction: column;
    }
    
    .col-lg-6 {
        margin-bottom: 30px;
    }
    
    /* Remove margin from last item */
    .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    /* Adjust spacing between sections */
    .row.g-5 {
        margin-bottom: 30px;
    }
}

/* Adjust image sizing on mobile */
@media (max-width: 576px) {
    .img-fluid {
        margin-bottom: 20px;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999;
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.whatsapp-chat-box.show {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: #075e54;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.chat-header .close-chat {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.profile-details {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    color: white;
}

.profile-info h4 {
    font-size: 16px;
    margin: 0;
    margin-bottom: 3px;
    color: #f0f0f0;  /* Whitish milky color */
}

.profile-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.chat-body {
    padding: 20px;
    background: #e5ddd5;
    border-radius: 0 0 10px 10px;
}

.chat-message {
    background: white;
    padding: 15px 20px;
    border-radius: 8px 8px 8px 0;  /* Adjusted border radius */
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-message p {
    margin: 0;
    margin-bottom: 5px;  /* Space between lines */
    font-size: 14px;
    color: #333;
}

.chat-message p:last-of-type {
    margin-bottom: 8px;  /* Space before timestamp */
}

.chat-time {
    font-size: 11px;
    color: #777;
    margin-top: 5px;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: white;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
    .whatsapp-widget {
        right: 20px;
        bottom: 20px;
    }
    
    .whatsapp-chat-box {
        width: 280px;
        right: 0;
        bottom: 70px;
    }
}

/* Partner Companies Section */
.partner-companies {
    background: #f8f9fa;
}

.partner-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.partner-img {
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-bottom: 1px solid #eee;
}

.partner-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-content {
    padding: 20px;
    text-align: center;
}

.partner-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-content .category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    background: var(--bs-dark);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .partner-item {
        margin-bottom: 20px;
    }
}





.certificates-section {
    padding: 50px 0;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.certificate-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-img img {
    transform: scale(1.05);
}

.certificate-content {
    padding: 20px;
    text-align: center;
}

.certificate-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cert-link:hover {
    background: #00ffff;
    color: #333;
}

@media (max-width: 991px) {
    .certificate-card {
        margin-bottom: 30px;
    }
}

/* About Page Certificates Section */
#about-certificates {
    padding: 50px 0;
    background: #fff;
}

#about-certificates .section-title h1 {
    color: #333;
    margin-bottom: 20px;
}

#about-certificates .section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

#about-certificates .certificate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#about-certificates .certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#about-certificates .certificate-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

#about-certificates .certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

#about-certificates .certificate-content {
    padding: 20px;
    text-align: center;
    background: #fff;
}

#about-certificates .certificate-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

#about-certificates .cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#about-certificates .cert-link:hover {
    background: #00ffff;
    color: #333;
}

/* Certificate Grid Layout */
#about-certificates .certificates-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

#about-certificates .certificates-grid.items-1 {
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
}

#about-certificates .certificates-grid.items-2 {
    grid-template-columns: repeat(2, minmax(0, 500px));
    justify-content: center;
}

#about-certificates .certificates-grid.items-3-plus {
    grid-template-columns: repeat(3, 1fr);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #about-certificates .certificates-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #about-certificates .certificate-card {
        margin-bottom: 20px;
    }
}

/* Update the certificate image styles */
#about-certificates .certificate-img {
    width: 100%;
    height: auto;  /* Changed from fixed height */
    min-height: 500px;  /* Minimum height for larger displays */
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-certificates .certificate-img img {
    width: 100%;
    height: auto;
    max-height: 800px;  /* Maximum height to prevent excessive size */
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Adjust grid layout for better image display */
#about-certificates .certificates-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

#about-certificates .certificates-grid.items-1 {
    grid-template-columns: minmax(0, 900px);  /* Increased from 600px */
    justify-content: center;
}

#about-certificates .certificates-grid.items-2 {
    grid-template-columns: repeat(2, minmax(0, 700px));  /* Increased from 500px */
    justify-content: center;
}

#about-certificates .certificates-grid.items-3-plus {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;  /* Maximum width for 3-column layout */
    margin-left: auto;
    margin-right: auto;
}

/* Add zoom functionality on click */
#about-certificates .certificate-img {
    cursor: zoom-in;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    #about-certificates .certificates-grid.items-3-plus {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    #about-certificates .certificates-grid {
        grid-template-columns: 1fr !important;
        max-width: 700px;  /* Increased from 500px */
        margin-left: auto;
        margin-right: auto;
    }
    
    #about-certificates .certificate-img {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    #about-certificates .certificate-img {
        min-height: 300px;
    }
}

/* Certifications Page Styles */
.certifications-section {
    padding: 50px 0;
    background: #fff;
}

.certification-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.certification-content {
    padding: 20px;
}

.cert-header {
    margin-bottom: 20px;
    text-align: center;
}

.cert-header h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cert-header h4 span {
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.cert-file {
    width: 100%;
}

.img-container {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 20px;
    cursor: zoom-in;
}

.img-container img {
    width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: contain;
    padding: 10px;
}

.pdf-link {
    text-align: center;
    margin-top: 20px;
}

.pdf-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pdf-link a:hover {
    background: #00ffff;
    color: #333;
}

.pdf-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .img-container {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .img-container {
        min-height: 300px;
    }
    
    .cert-header h4 {
        font-size: 1.2rem;
    }
}

/* Certifications Page Grid Layout */
.certifications-section .certificates-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.certifications-section .certificates-grid.items-1 {
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
}

.certifications-section .certificates-grid.items-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-section .certificates-grid.items-3-plus {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Update image container for better display */
.certifications-section .img-container {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 20px;
    cursor: zoom-in;
}

.certifications-section .img-container img {
    width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: contain;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .certifications-section .certificates-grid.items-2,
    .certifications-section .certificates-grid.items-3-plus {
        grid-template-columns: 1fr;
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .certifications-section .img-container {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .certifications-section .img-container {
        min-height: 300px;
    }
}</pre></body></html>