/********** Template CSS **********/
:root {
    --primary: #36b54a;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 100px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .2), rgba(24, 29, 56, .2)), url(../img/banner/breadcrumb.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

:root {
    --skilly-green: #36B54A;
    --skilly-blue: #0F87A8;
    --skilly-light: #ffffff;
    --skilly-dark: #222222;
    --skilly-gray: #f5f5f5;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
}

/* Top Contact Bar */
.skilly-topbar {
    background: linear-gradient(to right, var(--skilly-green), var(--skilly-blue));
    color: var(--skilly-light);
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skilly-topbar div i {
    margin-right: 6px;
    color: #fff;
}

/* Navbar */
.skilly-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--skilly-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

.skilly-navbar.shrink {
    background: #000000;
}

.skilly-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

/* Logo */
.skilly-logo-container img {
    height: 70px;
    object-fit: contain;
    display: block;
}

/* Nav Links */
.skilly-navlinks {
    display: flex;
    gap: 25px;
    align-items: center;
}

.skilly-nav-item {
    position: relative;
}

.skilly-navlinks a {
    color: var(--skilly-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skilly-navbar.shrink .skilly-navlinks a {
    color: var(--skilly-light);
}

/* Hover gradient effect */
.skilly-navlinks a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--skilly-green), var(--skilly-blue));
    z-index: -1;
    transition: left 0.4s ease;
    border-radius: 25px;
}

.skilly-navlinks a:hover::before {
    left: 0;
}

.skilly-navlinks a:hover {
    color: var(--skilly-light);
}

/* Active menu item */
.skilly-navlinks a.active::before {
    left: 0;
}

.skilly-navlinks a.active {
    color: var(--skilly-light);
}

/* Submenu */
.skilly-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.skilly-submenu a {
    padding: 10px 15px;
    display: block;
    color: #fff;
    font-size: 14px;
    border-radius: 0;
}

.skilly-submenu a:hover {
    background: linear-gradient(to right, var(--skilly-green), var(--skilly-blue));
    color: var(--skilly-light);
}

.skilly-nav-item:hover .skilly-submenu {
    display: block;
}

/* Submenu arrow (desktop) */
.skilly-nav-item>a .fa-chevron-down {
    margin-left: 6px;
    font-size: 12px;
}

/* Apply Now Button */
.skilly-apply-btn {
    background: linear-gradient(135deg, var(--skilly-green), var(--skilly-blue));
    color: var(--skilly-light);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skilly-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile Toggle */
.skilly-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.skilly-toggle span {
    height: 3px;
    width: 25px;
    background: var(--skilly-dark);
    transition: 0.3s;
}

.skilly-navbar.shrink .skilly-toggle span {
    background: var(--skilly-light);
}

/* Mobile Menu */
.skilly-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* hide off-canvas initially */
    width: 100%;
    height: 100vh;
    background: rgb(36 54 58 / 95%);
    /* your theme color w/ overlay */
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.skilly-mobile-menu.active {
    right: 0;
    /* slide in */
}

.skilly-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.skilly-mobile-menu a {
    color: var(--skilly-light);
    font-size: 18px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 12px;
    transition: background 0.3s;
}

.skilly-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* Mobile submenu */
.skilly-mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

.skilly-mobile-menu .has-submenu.open .skilly-mobile-submenu {
    display: flex;
}

/* Mobile submenu arrow */
.skilly-mobile-menu .has-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skilly-mobile-menu .has-submenu i {
    transition: transform 0.3s;
}

.skilly-mobile-menu .has-submenu.open i {
    transform: rotate(180deg);
}

.skilly-mobile-menu .skilly-apply-btn {
    text-align: center;
    margin-top: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .skilly-navlinks {
        display: none;
    }

    .skilly-toggle {
        display: flex;
    }
}

.owl-carousel .item {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateY(-100%);
}

/* Slide animation from top */
.owl-item.active .item {
    animation: slideFromTop 1s ease forwards;
}

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Unique slide backgrounds */
.slide1 {
    background: url('../img/banner/hero2.webp') center/cover no-repeat;
}

.slide2 {
    background: url('../img/banner/hero4.jpg') center/cover no-repeat;
}

.slide3 {
    background: url('../img/banner/hero5.jpg') center/cover no-repeat;
}

.slide4 {
    background: url('../img/banner/hero6.jpg') center/cover no-repeat;
}

/* Overlay */
.owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: absolute;
    /* so it sticks inside banner */
    top: 50%;
    /* vertically center */
    left: 0;
    /* stick to the very left */
    transform: translateY(-50%);
    /* adjust vertical centering */
    z-index: 2;
    max-width: 900px;
    padding: 20px 40px;
    text-align: left;
}

.slide-para {
    max-width: 600px;
}

.slide-title,
.slide-para,
.slide-icons a {
    opacity: 0;
    transform: translateY(-60px);
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 4rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #0F87A8,
        6px 6px 0px rgba(0, 0, 0, 0.5);
}

.slide-para {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
}

.slide-icons a {
    margin: 0 12px;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.slide-icons a:hover {
    color: #36B54A;
}

/* Animate text and icons one by one */
.owl-item.active .slide-title {
    animation: fadeDown 1s ease forwards;
    animation-delay: 0.8s;
}

.owl-item.active .slide-para {
    animation: fadeDown 1s ease forwards;
    animation-delay: 1.3s;
}

.owl-item.active .slide-icons a {
    animation: fadeDown 0.8s ease forwards;
}

.owl-item.active .slide-icons a:nth-child(1) {
    animation-delay: 1.8s;
}

.owl-item.active .slide-icons a:nth-child(2) {
    animation-delay: 2.1s;
}

.owl-item.active .slide-icons a:nth-child(3) {
    animation-delay: 2.4s;
}

.owl-item.active .slide-icons a:nth-child(4) {
    animation-delay: 2.7s;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 1.8rem;
        line-height: 3rem;
    }

    .slide-para {
        font-size: 1rem;
    }

    .slide-content {
        position: absolute;
        top: 65%;
        left: 0;



    }
}

.skillyX23_logo_slider {
    padding: 50px 20px;
    background: #fff;
    position: relative;
}

/* Animated gradient strip */




@keyframes skillyX23_strip {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.skillyX23_carousel .skillyX23_logo_item {
    text-align: center;
    padding: 20px;
}

.skillyX23_carousel .skillyX23_logo_item img {
    height: 160px;
    max-width: 150px;
    width: 100%;
    margin: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.skillyX23_carousel .skillyX23_logo_item img:hover {
    transform: scale(1.15);

    box-shadow: 0 6px 18px rgba(15, 135, 168, 0.3),
        0 6px 18px rgba(54, 181, 74, 0.3);
    border-radius: 8px;
}

/* Responsive Adjust */


.services-unique-wrap {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #36B54A 20%, #0F87A8 100%);
    color: #fff;
    overflow: hidden;
}

.services-unique-wrap h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.services-unique-sub {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.services-unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.service-unique-card {
    background: #fff;
    color: #222;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 1s ease;
    position: relative;
}

/* Start positions for animations */
.from-left {
    transform: translateX(-80px);
}

.from-bottom {
    transform: translateY(80px);
}

.from-right {
    transform: translateX(80px);
}

/* Active animation */
.service-unique-card.visible {
    transform: translate(0, 0);
    opacity: 1;
}

.service-unique-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-unique-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-unique-card:hover .service-unique-img img {
    transform: scale(1.15) rotate(-2deg);
}

.service-unique-content {
    padding: 25px;
    text-align: left;
}

.service-unique-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #0F87A8;
    position: relative;
}

.service-unique-content h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: #36B54A;
    bottom: -6px;
    left: 0;
    border-radius: 3px;
}

.service-unique-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #36B54A;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background: #0F87A8;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .services-unique-wrap h2 {
        font-size: 2rem;
    }

    .service-unique-content {
        text-align: center;
    }

    .service-unique-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.journal-section-unique {
    padding: 80px 8%;
    text-align: center;
}

.journal-section-unique h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0F87A8;
    margin-bottom: 10px;
}

.journal-section-unique p.sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #36B54A;
    margin-bottom: 60px;
}

.journal-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.journal-card-unique {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transform: translateY(40px);
    opacity: 1;
    transition: all 0.8s ease;
}

.journal-card-unique.visible {
    transform: translateY(0);
    opacity: 1;
}

.journal-card-img {
    height: auto;
    overflow: hidden;
}

.journal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-card-unique:hover img {
    transform: scale(1.1);
}

.journal-card-content {
    padding: 22px;
    text-align: left;
}

.journal-card-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.journal-card-content strong {
    color: #0F87A8;
}

.journal-card-unique:hover {
    box-shadow: 0 12px 30px rgba(54, 181, 74, 0.25), 0 0 12px rgba(15, 135, 168, 0.25);
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .journal-section-unique h2 {
        font-size: 2rem;
    }

    .journal-card-content {
        text-align: center;
    }

    .owl-carousel .item {
        position: relative;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.domainSection-split {
    padding: 70px 6%;
}

/* Left Title */
.domain-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F87A8;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.domain-left p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Carousel Cards */
.domain-carousel-split .domain-card-split {
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.domain-card-split:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(15, 135, 168, 0.3);
}

.domain-img-split {
    height: auto;
    overflow: hidden;
}

.domain-img-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domain-card-split:hover img {
    transform: scale(1.1);
}

.domain-content-split {
    padding: 15px;
    text-align: center;
}

.domain-content-split h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F87A8;
    margin: 0;
    display: inline-block;
    position: relative;
}

.domain-content-split h3::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #36B54A, #0F87A8);
    margin: 6px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.domain-card-split:hover h3::after {
    width: 100%;
}

/* Owl Nav */
.owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.owl-nav button {
    background: rgba(15, 135, 168, 0.9) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: rgba(54, 181, 74, 0.9) !important;
    transform: scale(1.1);
}

.work-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.work-section h2 {
    font-size: 38px;
    color: #0F87A8;
    margin-bottom: 10px;
}

.work-section h4 {
    font-size: 20px;
    color: #36B54A;
    margin-bottom: 40px;
}

.work-grid {
    display: grid;

    gap: 30px;
}

.work-card {
    position: relative;
    background: #fff;
    padding: 20px 20px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
    backface-visibility: hidden;
}

.work-card.show {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}



.work-card::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #0F87A8, #36B54A);
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
    z-index: 0;
}

.work-icon {
    font-size: 36px;
    color: #0F87A8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.work-card h3 {
    font-size: 26px;
    color: #0F87A8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.work-card h4 {
    font-size: 16px;
    color: #36B54A;
    margin: 8px 0 15px;
    font-weight: 600;
    z-index: 1;
}

.work-card p {
    font-size: 15px;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Read More */
.full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.full-text.show {
    max-height: 500px;
    /* Enough to show content */
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;

    color: #0F87A8;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}

.read-more-btn:hover {
    color: #36B54A;

}

/* Mobile fix */
@media (max-width: 600px) {
    .work-card {
        transform: none !important;
        opacity: 1 !important;
    }
}

.testimonial-unique-section {
    background: linear-gradient(135deg, #0F87A8 0%, #36B54A 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Overlay Pattern */
.testimonial-unique-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.08;
    z-index: 0;
}

.testimonial-unique-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.testimonial-unique-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
    position: relative;
    color: #fff;
    z-index: 1;
}

/* Testimonial Card */
.testimonial-unique-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-unique-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-unique-item::before {
    content: "“";
    font-size: 60px;
    color: rgba(15, 135, 168, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-unique-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-unique-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-unique-user img {

    border-radius: 50%;
    border: 3px solid #36B54A;
}


.owl-carousel .owl-item .testimonial-unique-user img {
    display: block;
    width: 30%;
}

.testimonial-unique-user h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0F87A8;
}

.testimonial-unique-user span {
    font-size: 14px;
    color: #666;
}

/* Owl Carousel Controls */
.owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0F87A8 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.owl-nav button:hover {
    background: #36B54A !important;
    color: #fff !important;
}

.owl-dots {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #eee;
    border-radius: 50%;
    transition: 0.3s;
}

.owl-dot.active span {
    background: #0F87A8;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-unique-item {
        padding: 25px 20px;
    }

    .testimonial-unique-section h2 {
        font-size: 26px;
    }
}

.faq-section-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

/* Left side image */
.faq-left-image {
    flex: 1 1 400px;
    text-align: center;
}

.faq-left-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;

}



.faq-unique-section {
    flex: 1 1 600px;
    text-align: center;
    position: relative;
}

.faq-unique-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0F87A8;
    margin-bottom: 10px;
    animation: fadeDown 1s ease-in-out;
}

.faq-unique-section h4 {
    font-size: 18px;
    color: #36B54A;
    margin-bottom: 40px;
    animation: fadeDown 1.3s ease-in-out;
}

.faq-unique-container {
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-unique-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-unique-item.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-unique-question {
    background: linear-gradient(135deg, #0F87A8, #36B54A);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-unique-question:hover {
    background: linear-gradient(135deg, #36B54A, #0F87A8);
}

.faq-unique-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-unique-answer p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 15px 0;
    margin: 0;
}

.faq-unique-item.active .faq-unique-answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-unique-item.active .faq-unique-question i {
    transform: rotate(180deg);
}

.faq-unique-question i {
    transition: transform 0.3s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .faq-section-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .faq-unique-section {
        text-align: center;
    }
}

.ask-more-section {
    text-align: center;
    margin-top: 30px;
}

.ask-more-btn {
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ask-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ask-more-form {
    max-width: 600px;
    margin: 20px auto 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.ask-more-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: vertical;
    font-size: 15px;
}

.submit-btn {
    background: #36B54A;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0F87A8;
}

.cta-unique-wrapper {
    background: linear-gradient(135deg, #0F87A8, #36B54A);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s ease;
}

.cta-unique-wrapper.show {
    opacity: 1;
    transform: scale(1);
}

/* Animated background effect */
.cta-unique-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 70%);
    animation: rotateBg 10s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-unique-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-unique-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Button */
.cta-unique-btn {
    background: #fff;
    color: #0F87A8;
    padding: 10px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.cta-unique-btn:hover {
    background: #044253;
    ;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-unique-title {
        font-size: 2rem;
    }

    .cta-unique-subtitle {
        font-size: 1rem;
    }

    .cta-unique-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

.contactEnquiry-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contactEnquiry-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

/* Left Info */
.contactInfo-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 20px;
}

.contactInfo-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f9fafc;
    border-left: 6px solid #0F87A8;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactInfo-box:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(15, 135, 168, 0.15);
}

.contactIcon {
    font-size: 28px;
    color: #0F87A8;
    margin-top: 5px;
    flex-shrink: 0;
}

.contactDetails h4 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #222;
}

.contactDetails p,
.contactDetails a {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
}

.contactDetails a:hover {
    color: #36B54A;
}

/* Right Form */
.enquiryForm-container {
    padding: 20px;
    background: linear-gradient(135deg, #0F87A8, #36B54A);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.enquiryForm-container h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.enquiryForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Unique input class names */
.inputFullName,
.inputEmail,
.inputPhone,
.inputMessage {
    padding: 12px 5px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: box-shadow 0.3s;
}

.inputFullName:focus,
.inputEmail:focus,
.inputPhone:focus,
.inputMessage:focus {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.inputMessage {
    resize: none;
    min-height: 100px;
}

.enquirySubmit-btn {
    background: #fff;
    color: #0F87A8;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.enquirySubmit-btn:hover {
    transform: scale(1.05);
    background: #36B54A;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .contactEnquiry-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .enquiryForm-container {
        margin-top: 20px;
    }
}

.uniqueFooter-wrapper {
    background: linear-gradient(135deg, #096781, #165720);
    color: #fff;
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

/* Floating Gradient Shapes */
.uniqueFooter-wrapper::before,
.uniqueFooter-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatAnim 8s infinite ease-in-out;
}

.uniqueFooter-wrapper::before {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
}

.uniqueFooter-wrapper::after {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.uniqueFooter-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-left: 4px solid #FFD700;
    padding-left: 10px;
    color: #fff;
}

.footer-col p,
.footer-col a {

    color: #fff;
    font-weight: 600;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #FFD700;
}

/* Newsletter */
.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    outline: none;
    font-size: 0.95rem;
}

.footer-newsletter button {
    background: #FFD700;
    border: none;
    color: #222;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    width: 100%;
}

.footer-newsletter button:hover {
    transform: scale(1.05);
    background: #fff;
    color: #0F87A8;
}

/* Social Links */
.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: #FFD700;
    color: #4bd5fb;
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #eee;
}

.footer-col img {
    padding-bottom: 10px;
}

.st-about-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Content */
.st-about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.st-about-text.show {
    opacity: 1;
    transform: translateY(0);
}

.st-about-text h1 {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(90deg, #36B54A, #0F87A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.st-about-text p {

    line-height: 1.7;
    color: #000;
}

/* Points with Icons */
.st-about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.st-about-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #36B54A;
    transition: all 0.4s ease;
}

.st-about-point:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.st-about-point i {
    font-size: 28px;
    color: #36B54A;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.st-about-point:hover i {
    transform: rotate(20deg) scale(1.1);
}

.st-about-point-content h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #0F87A8;
}

.st-about-point-content p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

/* Right Images Grid */
.st-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.st-about-images.show {
    opacity: 1;
    transform: translateY(0);
}

.st-about-images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media(max-width:1000px) {
    .st-about-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .st-about-text h1 {
        font-size: 28px;
    }

    .st-about-text p {
        font-size: 15px;
    }

    .st-about-point-content h4 {
        font-size: 16px;
    }

    .st-about-point-content p {
        font-size: 14px;
    }
}

.skilly-full-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #09566b, #2d983d);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.skilly-full-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.skilly-full-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.skilly-full-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #fff, #dbdcdb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skilly-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.skilly-full-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 25px;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.skilly-full-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.skilly-full-card i {
    font-size: 32px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    color: #0F87A8;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.skilly-full-card h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.skilly-full-card p {

    color: #fff;

}

/* Responsive */
@media (max-width: 768px) {
    .skilly-full-heading {
        font-size: 30px;
    }

    .skilly-full-card h3 {
        font-size: 20px;
    }

    .skilly-full-card p {
        font-size: 14px;
    }
}

.circleChainSection_skilly {
    padding: 70px 20px;
    background: linear-gradient(135deg, #313131, #535050);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.circleChainSection_skilly h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    color: #fff;
}

.circleChainWrapper_skilly {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.circleChainBox_skilly {
    background: #fff;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #004aad;
    font-weight: bold;
    border: 6px solid var(--skilly-green);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

/* active animation */
.circleChainBox_skilly.active {
    opacity: 1;
    transform: translateY(0);
}

/* connector lines */
.circleChainBox_skilly::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 6px;
    background: var(--skilly-blue);
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.circleChainBox_skilly:last-child::after {
    display: none;
}

.circleChainNumber_skilly {
    font-size: 1.8rem;
    color: var(--skilly-blue);
}

.circleChainLabel_skilly {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #333;
}

@media (max-width: 900px) {
    .circleChainWrapper_skilly {
        flex-direction: column;
        align-items: center;
    }

    .circleChainBox_skilly::after {
        width: 6px;
        height: 40px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.approachSection_new {
    padding: 80px 20px;
    background: #fff;
}

.approachContainer_new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Left Image */
.approachImage_new {
    flex: 1;
    min-width: 250px;
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
}

.approachImage_new.active {
    opacity: 1;
    transform: translateX(0);
}

.approachImage_new img {
    width: 100%;
    border-radius: 18px;

    object-fit: cover;
}

/* Right Content */
.approachContent_new {
    flex: 1;
    min-width: 350px;
}

.approachContent_new h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0F87A8;
    /* logo color */
}

.approachSubtitle_new {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #36B54A;
    font-weight: 600;
}

.step_new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.step_new.active {
    opacity: 1;
    transform: translateY(0);
}

.stepNumber {
    width: 50px;
    height: 50px;
    background: #0F87A8;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.stepContent h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: #111;
}



/* Responsive */
@media (max-width: 768px) {
    .approachContainer_new {
        flex-direction: column;
        text-align: center;
    }

    .step_new {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stepContent h3 {
        margin-top: 10px;
    }
}

.confidenceSection {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.confidenceSection h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0F87A8;
    /* logo color */
}

.confidenceSection p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.confidenceGrid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.confidenceCard {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--skilly-green);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 20px;
}

.confidenceCard i {
    font-size: 2rem;
    margin-bottom: 12px;
}

.confidenceCard.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .confidenceCard {
        width: 140px;
        height: 140px;
        font-size: 0.9rem;
    }

    .journalSection p.intro {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 60px;
        text-align: left;
    }

    .journalSection h2 {
        color: #0F87A8;
        font-weight: 800;
        text-align: left;
        margin-bottom: 15px;
        font-size: 2rem
    }

}

.journalSection {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
}

.journalSection h2 {

    color: #0F87A8;
    font-weight: 800;
    margin-bottom: 15px;
}

.journalSection p.intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
}

/* Node circles */
.journalNodes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin-bottom: 60px;
}

.journalNode {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #0F87A8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(15, 135, 168, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
    position: relative;
}

.journalNode i {
    font-size: 2rem;
    color: #0F87A8;
    margin-bottom: 10px;
}

.journalNode h4 {
    margin: 0;
    font-size: 1rem;
    color: #0F87A8;
}

.journalNode.active {
    opacity: 1;
    transform: translateY(0);
}

/* Content cards */
.journalContent {
    display: none;
    background: #f0f8ff;
    border-left: 6px solid #0F87A8;
    padding: 25px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.journalContent.active {
    display: block;
}

.journalContent h5 {
    margin-top: 0;
    color: #0F87A8;
    font-size: 1.2rem;
}

.journalContent p {

    color: #000;

}

/* Images */
.journalImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.journalImages img {

    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.journalImages img.right {
    transform: translateX(50px);
}

.journalImages img.active {
    opacity: 1;
    transform: translateX(0);
}

@media(max-width:900px) {
    .journalNode {
        width: 130px;
        height: 130px;
    }

    .journalImages img {
        width: 100%;
        transform: translateX(0);
    }
}

.ctaSectionWhite {
    background: #fff;
    color: #0F87A8;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #0F87A8;
    border-bottom: 4px solid #0F87A8;
}

/* Decorative circles */
.ctaSectionWhite::before,
.ctaSectionWhite::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(15, 135, 168, 0.08);
    z-index: 1;
}

.ctaSectionWhite::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.ctaSectionWhite::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.ctaContentWhite {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ctaContentWhite h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.ctaContentWhite p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    color: #0F87A8;
}

.ctaButtonWhite {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0F87A8;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 135, 168, 0.3);
    justify-content: center;
}

.ctaButtonWhite:hover {
    background: #36b5a8;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(15, 135, 168, 0.4);
}

/* Animations on scroll */
.animateUp {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animateUp.active {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:600px) {
    .ctaContentWhite h2 {
        font-size: 2rem;
    }

    .ctaContentWhite p {
        font-size: 1rem;
    }

    .ctaButtonWhite {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

.faqUniqueSection {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;

}

.faqUniqueHeader {
    text-align: center;
    margin-bottom: 60px;
}

.faqUniqueHeader h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0F87A8;
}

.faqUniqueHeader p {
    font-size: 1.2rem;
    color: #555;
}

/* FAQ Cards */
.faqUniqueGrid {
    display: grid;
    gap: 25px;
}

.faqUniqueCard {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    border-left: 5px solid #36B54A;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faqUniqueCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 181, 74, 0.3);
}

/* Floating gradient dot */
.faqDot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #36B54A, #0F87A8);
    top: 20px;
    left: -8px;
    animation: floatDot 3s infinite alternate;
}

@keyframes floatDot {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(8px);
    }
}

/* Question */
.faqUniqueQuestion {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;

    justify-content: space-between;
    align-items: center;

}

.faqUniqueIcon {
    font-size: 1.5rem;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Answer */
.faqUniqueAnswer {
    max-height: 0;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 10px;
    color: #444;
    transition: max-height 0.6s ease, padding 0.6s ease;
}

.faqUniqueCard.active .faqUniqueAnswer {
    max-height: 500px;
}

.faqUniqueCard.active .faqUniqueIcon {
    transform: rotate(45deg);
    color: #36B54A;
}

/* Responsive */
@media(max-width:768px) {
    .faqUniqueHeader h2 {
        font-size: 2.2rem;
    }

    .faqUniqueQuestion {
        font-size: 1rem;
    }
}

.researchSection {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 10px;
}



/* Content + Image Grid */
.researchGrid {


    gap: 40px;
    align-items: center;
}

/* Image Styling */
.researchImageBox {
    overflow: hidden;
    border-radius: 20px;

    transform: rotate(-90deg) translateY(50px);
    /* initial sleeping */
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.researchImageBox img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Box */
.researchContentBox {

    padding: 30px 25px;
    border-radius: 20px;

    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.researchContentBox h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #36B54A;
    margin-bottom: 20px;
}

.researchContentBox p {


    color: #000;
    margin-bottom: 15px;
}

.researchContentBox ul li {
    color: #000;
    line-height: 2.5rem;
    list-style: none;
}

.researchQuote {
    font-style: italic;
    background: linear-gradient(135deg, #36B54A, #0F87A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

/* Scroll Active Animations */
.researchActive {
    transform: rotate(0deg) translateY(0) !important;
    opacity: 1 !important;
}

/* Responsive */
@media(max-width:768px) {
    .researchSectionHeader h2 {
        font-size: 2.2rem;
    }

    .researchContentBox h3 {
        font-size: 1.5rem;
    }
}

.ztp-intro-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    overflow: hidden;
}

.ztp-intro-title,
.ztp-intro-subtitle,
.ztp-intro-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Animations from different directions */
.ztp-animate-bottom {
    transform: translateY(50px);
}

.ztp-animate-left {
    transform: translateX(-50px);
}

.ztp-animate-right {
    transform: translateX(50px);
}

.ztp-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.ztp-intro-title {
    font-size: 2.5rem;
    color: #0f87a8;
    text-align: center;
    margin-bottom: 20px;
}

.ztp-intro-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.ztp-intro-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;

}

.ztp-intro-card p {

    margin-bottom: 15px;
    color: #000;
}

.ztp-highlight {
    color: #36b54a;
    font-weight: 500;
}

@media(max-width:768px) {
    .ztp-intro-title {
        font-size: 2rem;
    }

    .ztp-intro-card {
        padding: 20px;
    }
}

.stp-owl-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.stp-slide-box {
    background: #eaeaea;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.stp-slide-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stp-slide-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stp-slide-box h3 {
    color: #23732f;
    margin-bottom: 15px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stp-slide-box p {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.6;
}

.stp-highlight {
    color: #0f87a8;
    font-weight: 500;
}

/* Navigation Buttons */
.stp-owl-nav button {
    background: #36b54a;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.stp-owl-nav button:hover {
    background: #0f87a8;
    transform: scale(1.2);
}

/* Dots */
.stp-owl-dots .owl-dot span {
    background: #36b54a;
    opacity: 1;
}

.stp-owl-dots .owl-dot.active span {
    background: #0f87a8;
}

/* Responsive */
@media(max-width:768px) {
    .stp-slide-box {
        padding: 20px;
    }

    .stp-slide-box h3 {
        font-size: 1.4rem;
    }
}

.uniqueResearchBox_9921 {
    max-width: 1150px;
    margin: 70px auto;
    padding: 50px 30px;
    background: #fff;
    border-left: 6px solid #1976d2;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.uniqueResearchBox_9921.inwardsActive_9921 {
    opacity: 1;
    transform: scale(1);
}

.mainTitle_9921 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1976d2;
    text-align: center;
}

.subTitle_9921 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.subTitle_9921::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: #1976d2;
    border-radius: 3px;
}

.paraText_9921 {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
    color: #000;
}

.highlightText_9921 {
    color: #e53935;
    font-weight: 600;
}

@media (max-width: 768px) {
    .uniqueResearchBox_9921 {
        padding: 30px 30px;
    }

    .mainTitle_9921 {
        font-size: 2rem;
    }

    .uniqueResearchBox_9921 {
        max-width: 1000px;

    }

    .subTitle_9921 {
        font-size: 1.3rem;
    }

    .paraText_9921 {
        font-size: 0.95rem;
    }
}

.resubSection_981 {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 40px;

    border-radius: 20px;

    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s ease-out;
}

.resubSection_981.active_981 {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.resubImage_981 {
    flex: 1 1 500px;
    min-width: 300px;
    text-align: center;
}

.resubImage_981 img {
    max-width: 100%;
    border-radius: 15px;

}

.resubContent_981 {
    flex: 1 1 400px;
    min-width: 300px;
}

.resubContent_981 h2 {
    font-size: 2rem;
    color: #0f87a8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.resubContent_981 h2 i {
    font-size: 2.4rem;
    color: #36b54a;
}

.resubContent_981 p {
    color: #000;

    margin-bottom: 18px;
    text-align: justify;
}

.resubSubHeader_981 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #36b54a;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resubSubHeader_981 i {
    font-size: 1.8rem;
    color: #0f87a8;
}

.resubHighlight_981 {
    color: #e53935;
    font-weight: 500;
}

@media(max-width:768px) {
    .resubSection_981 {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }

    .resubContent_981 h2 {
        font-size: 1.7rem;
    }

    .resubContent_981 h2 i {
        font-size: 2rem;
    }

    .resubSubHeader_981 {
        font-size: 1.3rem;
    }

    .resubSubHeader_981 i {
        font-size: 1.5rem;
    }
}

.skillySection_882 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0px 30px;

    border-radius: 25px;

    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.skillySection_882.active_882 {
    opacity: 1;
    transform: translateY(0);
}

.skillySection_882 h2 {
    font-size: 2rem;
    text-align: center;
    color: #0f87a8;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}



.skillyContent_882 {



    color: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skillyContent_882 p i {
    color: #36b54a;
    margin-right: 8px;
}

.skillyHighlight_882 {
    color: #e53935;
    font-weight: 500;
}

@media(max-width:768px) {
    .skillySection_882 {
        padding: 35px 20px;
    }

    .skillySection_882 h2 {
        font-size: 1.6rem;
    }
}

.thesisCardWrapper_007 {
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Layered Card Background */
.thesisCard_007 {
    background: linear-gradient(135deg, #36b54a 0%, #0f87a8 100%);
    border-radius: 25px;
    color: #fff;
    padding: 20px 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: all 1s ease-out;
    position: relative;
    z-index: 1;
}

/* Inner white card */
.thesisInnerCard_007 {
    background: #fff;
    border-radius: 20px;
    color: #000;
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

/* Header */
.thesisInnerCard_007 h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0f87a8;
}

/* Paragraph */
.thesisInnerCard_007 p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    display: flex;
    color: #000;
    align-items: flex-start;
    gap: 12px;
}

/* List */
.thesisInnerCard_007 ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.thesisInnerCard_007 ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.thesisInnerCard_007 ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #36b54a;
}

/* Scroll animation */
.thesisCard_007.activeCard_007 {
    opacity: 1;
    transform: scale(1);
}

/* Icon style for paragraphs */
.thesisInnerCard_007 i {
    color: #36b54a;
    margin-top: 3px;
}

/* Responsive */
@media(max-width:768px) {
    .thesisCard_007 {
        padding: 35px 25px;
    }

    .thesisInnerCard_007 {
        padding: 25px 20px;
    }

    .thesisInnerCard_007 h2 {
        font-size: 1.6rem;
    }
}

.modThesisSection_502 {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Section title */
.modThesisSection_502 h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0f87a8;
    margin-bottom: 50px;
    position: relative;
}

.modThesisSection_502 h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #36b54a;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Flex container */
.modThesisFlex_502 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Images column */
.modThesisImages_502 {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.modThesisImages_502 img {
    width: 100%;
    max-width: 200px;
    border-radius: 15px;
    object-fit: cover;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.modThesisImages_502 img.slide-right {
    opacity: 1;
    transform: translateX(0);
}

/* Content column */
.modThesisContent_502 {
    flex: 2 1 500px;
}

.modThesisContent_502 h3 {
    font-size: 2rem;
    color: #36b54a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.modThesisContent_502 h3.slide-left {
    opacity: 1;
    transform: translateX(0);
}

/* Two-column card layout for points */
.modThesisContent_502 ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.modThesisContent_502 ul li {
    background: #f1f8f7;
    border-left: 4px solid #0f87a8;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.modThesisContent_502 ul li.slide-left {
    opacity: 1;
    transform: translateX(0);
}

.modThesisContent_502 ul li i {
    color: #36b54a;
    margin-right: 10px;
}

/* Nested lists span full width */
.modThesisContent_502 ul ul {
    grid-column: span 2;
    padding-left: 20px;
    margin-top: 8px;
}

.modThesisContent_502 ul ul li {
    background: #e9f2f1;
    border-left: 4px solid #36b54a;
    font-size: 0.95rem;
}

/* Responsive */
@media(max-width:992px) {
    .modThesisFlex_502 {
        flex-direction: column;
    }

    .modThesisContent_502 ul {
        grid-template-columns: 1fr;
    }

    .modThesisImages_502 {
        grid-template-columns: 1fr 1fr;
    }
}

.synopsisSection_901 {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Image */
.synopsisImage_901 {
    flex: 1 1 400px;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.synopsisImage_901.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.synopsisImage_901 img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Content */
.synopsisContent_901 {
    flex: 2 1 600px;
}

.synopsisContent_901 h2 {
    font-size: 2.2rem;
    color: #0f87a8;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.synopsisContent_901 h2.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.synopsisContent_901 p {
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.synopsisContent_901 p.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.synopsisContent_901 ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    color: #000;
    grid-template-columns: 1fr;
    gap: 12px;
}

.synopsisContent_901 ul li {
    background: #f1f8f7;
    padding: 12px 18px;
    border-left: 5px solid #36b54a;
    border-radius: 8px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.synopsisContent_901 ul li.slide-in {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media(max-width:992px) {
    .synopsisSection_901 {
        flex-direction: column;
    }
}

.synopsisTextSection_777 {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Scroll Animation */
.synopsisBlock_777 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.synopsisBlock_777.slide-up {
    opacity: 1;
    transform: translateY(0);
}

/* Heading */
.synopsisBlock_777 h2 {
    font-size: 2rem;
    color: #0f87a8;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.synopsisBlock_777 h2 i {
    color: #36b54a;
    font-size: 2rem;
}

/* Paragraph */
.synopsisBlock_777 p {
    color: #000;

    margin-bottom: 15px;
}

/* Highlight Box */
.synopsisHighlight_777 {
    background: #f1f8f7;
    border-left: 5px solid #36b54a;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #000;
}

/* Responsive */
@media(max-width: 600px) {
    .synopsisBlock_777 h2 {
        font-size: 1.6rem;
    }
}

.plagiarismSplit_888 {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}

/* Split Layout */
.plagiarismRow_888 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Left Column - Text */
.plagiarismText_888 {
    flex: 1 1 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.plagiarismText_888.visible_888 {
    opacity: 1;
    transform: translateX(0);
}

.plagiarismText_888 h2 {
    font-size: 2rem;
    color: #36b54a;
    margin-bottom: 20px;
}

.plagiarismText_888 p {


    color: #000;
    margin-bottom: 12px;
}

/* Right Column - Icon */
.plagiarismIcon_888 {
    flex: 0 1 200px;
    text-align: center;
    font-size: 6rem;
    color: #0f87a8;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.plagiarismIcon_888.visible_888 {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media(max-width: 768px) {
    .plagiarismRow_888 {
        flex-direction: column;
    }

    .plagiarismIcon_888 {
        font-size: 5rem;
    }
}

.plagiarismBoxText_777 {
    padding: 25px 20px;
    border-left: 4px solid #0f87a8;
}

.plagiarismBoxText_777 h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0f87a8;
    margin-bottom: 15px;
}

.plagiarismBoxText_777 p {

    color: #000;

}

/* Right carousel */
.plagiarismCarouselWrap_777 .item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.plagiarismCarouselWrap_777 .item img:hover {
    transform: scale(1.05);
}

/* Custom dots */
.plagiarismCarouselWrap_777 .owl-dots .owl-dot span {
    background: #0f87a8;
}

.plagiarismCarouselWrap_777 .owl-dots .owl-dot.active span {
    background: #36b54a;
}

@media(max-width:768px) {
    .plagiarismBoxText_777 h2 {
        font-size: 1.5rem;
    }
}

.workFlowX_wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.workFlowX_title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #36b54a;
}

/* Grid */
.workFlowX_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Cards */
.workFlowX_card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.7s ease;
}

.workFlowX_card.showX {
    opacity: 1;
    transform: translateY(0);
}

.workFlowX_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Number Badge */
.workFlowX_number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(to right, var(--skilly-green), var(--skilly-blue));
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.workFlowX_card h3 {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f87a8;
    margin-bottom: 10px;
}

.workFlowX_card p {

    color: #000;

    margin: 0;
}

.apply-section {
    background: #f4f6f8;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.apply-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0F87A8;
    margin-bottom: 10px;
}

.apply-section p {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Form Card */
.apply-card {
    max-width: 650px;
    margin: auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.apply-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0F87A8, #36B54A);
    border-radius: 6px;
}

/* Form Styles */
.apply-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.apply-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #0F87A8;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: 0.3s;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    border-color: #36B54A;
    box-shadow: 0 0 8px rgba(54, 181, 74, 0.3);
}

/* Submit Button */
.apply-btn {
    display: inline-block;
    background: #36B54A;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
}

.apply-btn:hover {
    background: #0F87A8;
}

/* Success message */
.form-success {
    color: #36B54A;
    margin-top: 15px;
    display: none;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .apply-card {
        padding: 30px 20px;
    }

    .apply-section h2 {
        font-size: 28px;
    }

    .apply-section p {
        font-size: 14px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .apply-card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .apply-form input,
    .apply-form select,
    .apply-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .apply-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}