﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none !important;
}

div:after {
    content: '';
    display: block;
    clear: both;
}

body {
    font-family: "Nunito", sans-serif !important;
}

html, body {
    height: 100%;
}

.osms-preheader {
    position: relative;
    background: #232936;
}

.search-btn img {
    height: 30px;
    margin-right: 30px;
}

.logindetails {
    position: relative;
}

.osms-header {
    /* background-color:#fff;*/
    position: relative;
    width: 100%;
    z-index: 9;
    padding: 10px 0;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.osms-preheader .dropdown-item:focus, .osms-preheader .dropdown-item:hover {
    background-color: #fdcfb7 !important;
}

.osms-header .nav-link {
    font-size: 18px !important;
    font-weight: 800 !important;
}

.dropdown-item {
    padding: 0px 10px !important;
    font-size: 14px;
}

.osms-preheader .dropdown a.dropdown-toggle {
    padding: 3px 10px !important;
    background-color: #008cd1;
    border: 0;
    margin: 5px 0;
}

.osms-hero-banner {
    height: 90vh;
    padding: 100px 0;
    /*background-image: linear-gradient(to right, #cbeeff5e 0%, #ffe5804d 100%);*/
}

.bannerbox {
    padding: 40px 0;
}

.osms-hero-banner h1 {
    font-size: 28px;
    font-weight: 900;
}

.osms-hero-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    transition: opacity 1s ease-in-out; /* Smooth fade effect */
}

.carousel-inner {
    padding-top: 100px;
}

.getstarted {
    font-weight: 800;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 46px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    background: linear-gradient(94.32deg,#135ea0 4.78%,#008dd2 96.98%);
    width: 202px;
}

    .getstarted:hover {
        color: #0581c6 !important;
        background: #fff !important;
        border: 3px solid #1f3965 !important;
    }

.getstarted-border {
    font-weight: 800;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 46px;
    margin-bottom: 30px;
    width: 202px;
    text-align: center;
    background: transparent !important;
    border: 3px solid #1f3965 !important;
    color: #1f3965 !important;
    margin-left: 15px;
}

    .getstarted-border:hover {
        color: #0581c6 !important;
        background: #fff !important;
        border: 3px solid #1f3965 !important;
    }

.carousel-control-next, .carousel-control-prev {
    width: 7% !important;
}

.carousel-item {
    transition: opacity 1s ease-in-out; /* Smooth fade */
}

.carousel-inner {
    transition: transform 1s ease-in-out !important; /*background-image: linear-gradient(to right, #cbeeff5e 0%, #ffe5804d 100%);*/
    background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}

.section {
    padding: 50px 0;
}

.whychoose-section .sub-title {
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.whychoose-section h2 {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
}

.features-list {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: -5px;
    margin-left: -8px;
    margin-right: -8px;
}

    .features-list li {
        list-style-type: none;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 10px;
        display: block;
        width: 100%;
    }

.features-content img {
    padding-top: 100px;
}

.features-list li span {
    display: block;
    position: relative;
    color: var(--blackColor);
    font-size: 18px;
    font-weight: 700;
    padding-left: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .features-list li span img {
        position: absolute;
        left: 0;
        top: 3px;
        width: 30px;
        height: 30px;
        overflow: hidden;
        text-align: center;
        background-image: url('../images/circle-border.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .9s ease-in-out;
    transition-property: transform;
}

.features-list img {
    height: 20px;
}

.default-btn {
    margin-top: 30px;
    background-color: #FE4A55;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    transition: 0.5s;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    padding-left: 55px;
    padding-right: 30px;
    padding-top: 11px;
    padding-bottom: 11px;
}

    .default-btn span {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-radius: 50%;
        background-color: #000;
        transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
        transform: translate(-50%, -50%);
        z-index: -1;
        border-radius: 5px;
    }

    .default-btn:hover {
        color: #fff;
    }

        .default-btn:hover span {
            width: 225%;
            height: 562.5px;
        }


/*-=-=-=-=-=-=-=-=-=-=-=- */
/* Column Grids */
/*-=-=-=-=-=-=-=-=-=-=-=- */

.col_half {
    width: 49%;
}

.col_third {
    width: 32%;
}

.col_fourth {
    width: 23.5%;
}

.col_fifth {
    width: 18.4%;
}

.col_sixth {
    width: 15%;
}

.col_three_fourth {
    width: 74.5%;
}

.col_twothird {
    width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
    position: relative;
    display: inline;
    display: inline-block;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
}

.end {
    margin-right: 0 !important;
}
/* Column Grids End */

.wrapper {
    width: 980px;
    margin: 30px auto;
    position: relative;
}

.counter {
    background-color: #ffffff;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.countersection {
    background-color: #FFFAF3;
}

.card-counts {
    text-align: center;
    padding: 50px 0;
    background-color: transparent !important;
    border: 0 !important;
}

    .card-counts h3 {
        margin-bottom: 0;
        font-size: 44px;
        font-weight: 800;
        color: #FE4A55;
    }

    .card-counts p {
        text-transform: uppercase;
        color: var(--blackColor);
        line-height: 1;
        margin-top: 10px;
        font-weight: 700;
        font-size: 16px;
    }

.countersection .col-lg-3 {
    border-right: 1px solid #eaecf0;
}

.countersection :last-child {
    border-right: none;
}

.banner-osmsbtn {
    display: flex;
}


/* Menu side slider */
@media screen and (max-width: 600px) {
    .pushNav {
        width: 75%;
        right: -75%;
    }

    iframe {
        border: 0;
        width: 90%;
    }

    .osms-logo.float-start {
        float: none !important;
        text-align: center;
    }

    .float-end.navigationall {
        float: none !important
    }

    .osms-hero-banner {
        height: 100% !important;
    }

    .bannerbox {
        padding: 20px 0 0px 0;
    }

    .whychoose-content {
        text-align: center;
    }

    .features-list li span {
        text-align: left;
    }

    .navbar-collapse {
        top: 148px !important;
    }

    .footercontact {
        text-align: center;
    }

    osms-hero-banner {
        padding: 23rem 2rem !important;
    }

    .notification-button {
        position: fixed;
        top: 41px !important;
        right: 20px;
        z-index: 99 !important;
    }

    .banner-osmsbtn {
        display: block;
    }

        .banner-osmsbtn a {
            display: block;
            width: 100%;
            margin: 0 0 10px 0;
        }

    .osms-hero-banner {
        padding: 6rem 0;
    }
}

@media screen and (max-width: 999px) {
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: fixed;
        left: 0;
        top: 100px;
        background-color: #fff;
        width: 100%;
        padding: 10px;
    }

    .carousel-inner {
        /*padding-top: 200px;*/
    }

    .osms-hero-banner {
        height: 100vh;
        display: block !important;
        align-items: center;
    }

    .carousel-inner .container {
        max-width: 100%;
    }
    /*.osms-logo {display:none;}
    .nav-brand .osms-logo {display:block !important;}*/
    .osms-header .navbar {
        width: 100% !important;
    }

    .pseudo-search input {
        width: 94px !important;
    }

    .features.clouds {
        display: none;
    }

    .featurem-show {
        display: block !important;
    }

    .features-content img {
        padding-top: 20px;
    }

    .getstarted-border {
        font-weight: 800;
        font-size: 14px !important;
    }
}

@media screen and (min-width: 601px) {
    .pushNav {
        width: 350px;
        right: -350px;
    }
}

.nav-brand .osms-logo {
    display: none;
}

ul.pushNav {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pushNav {
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: ease-in-out 0.5s;
}

    .pushNav hr {
        border: 1px solid #555;
    }

    .pushNav, .pushNav a {
        font-size: 1em;
        font-weight: 500;
        color: #000;
        text-decoration: none;
    }

.pushNavIsOpen {
    overflow: auto;
    height: 100%;
}

.js-topPushNav.isOpen, .pushNav_level.isOpen {
    right: 0;
}

.closeLevel, .openLevel {
    cursor: pointer;
}

.openLevel, .closeLevel, .pushNav a {
    padding: 1em 0;
    display: block;
    text-indent: 20px;
    transition: background 0.4s ease-in-out;
}

    .openLevel:hover, .closeLevel:hover, .pushNav a:hover {
        color: #e9e9e9;
    }

.sticky-top {
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1030;
}
/* Default styles */
#osmsPreheader {
    transition: all 0.5s ease;
}

#osmsMainHeader {
    transition: all 0.5s ease;
}

/* When scrolled */
.scrolled #osmsPreheader {
    display: none;
}

.scrolled #osmsMainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Optional: Push page content down so it doesn't jump under fixed header */
.body-padding {
    padding-top: 100px; /* adjust based on your header height */
}

.hdg {
    background-color: #29495b;
}

.closeLevel, closelevel > i {
    font-size: 1em;
    color: #fff;
}

.burger {
    /*position: absolute; 
    top: 24px; 
    right: 0;*/
    width: 50px;
    margin-top: 10px;
}

.navigationall {
    position: relative;
    display: flex;
    padding: 6px 0 0 0;
}

.logindetails .btn-primary {
    background-color: #002c54 !important;
    border: 1px solid #002c54;
}

.logindetails .navbar {
    padding: 0 !important;
    margin: 0;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #000 !important;
}

.nav-link {
    color: #000 !important;
}

.burger i {
    font-size: 2em;
}

.burger img {
    height: 40px;
}

.screen {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#searchInputWrapper {
    display: none;
}

#searchInputWrapper {
    position: absolute;
    right: 114px;
    bottom: -38px;
    width: 200px;
    z-index: 999;
}

.pushNavIsOpen .screen {
    height: 100%;
    opacity: 1;
}

.fa {
    display: inline;
    padding: 5px;
}

.downloadlist ol, .downloadlist ul {
    padding-left: 15px;
}

.downloadlist {
    padding: 10px 30px;
}

    .downloadlist ul li {
    }

        .downloadlist ul li a {
            padding: 2px 0;
            font-size: 14px;
            text-indent: 0 !important;
        }

            .downloadlist ul li a:hover {
                color: #1f3965;
            }
/* Scroll */
.scroll-y {
    overflow-y: scroll;
    position: relative;
}

div,
ol,
pre,
span,
ul {
    scrollbar-width: thin;
    scrollbar-color: #eff2f5 transparent;
}

.scroll-y::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.scroll-y::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.scroll-y::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

    .scroll-y::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(255, 255, 255, 0.3);
    }
/* Important */
.single-box-item {
    top: -130px;
    margin-bottom: -130px;
}

    .single-box-item:hover {
        box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
        transform: translateY(-10px);
    }

.single-box-item {
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    padding: 70px 30px 40px;
    transition: 0.5s;
    top: -50px;
    position: relative;
    margin-bottom: -50px;
}

    .single-box-item .image {
        margin-bottom: 30px;
        text-align: center;
    }

        .single-box-item .image img {
            height: 40px;
        }

    .single-box-item h3 {
        margin-bottom: 12px;
        font-size: 23px;
        font-weight: 800;
    }

    .single-box-item p {
        margin-bottom: 12px;
    }

.link-btn {
    /*color: #FE4A55;*/
    color: darkgreen;
}

.importantsection {
    position: relative;
    z-index: 99;
}

.videosection {
    height: 500px;
    background-image: url('../images/videobg.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

    .videosection:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000000;
        opacity: 0.5;
        z-index: -1;
    }

    .videosection iframe {
        border: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 100px;
    }
/* Footer */
.footercontact {
    background-color: #232936;
    padding: 40px 0 0;
    color: #fff;
    font-size: 13px;
}

.footerBottom {
    border-top: 1px solid rgba(72,72,72,.8);
    text-align: center;
    padding: 10px 0;
}

.footercontact h3 {
    font-size: 16px;
    font-weight: 600;
}

.footercontact p {
    font-size: 14px;
    font-weight: 300;
}

    .footercontact p strong {
        display: block;
        font-weight: 500;
    }

.servr_name {
    position: fixed;
    color: #000;
    /*    background-color: #FF8B23;*/
    background: linear-gradient(94.32deg, #f05924 4.78%,#FF8B23 96.98%);
    left: 8px;
    font-size: 14px;
    bottom: 8px;
    text-align: center;
    padding: 5px;
    z-index: 99;
}

    .servr_name img {
        height: 15px;
    }

.footer {
    background-color: #232936;
    padding: 0 0 0;
    color: #fff;
    font-size: 13px;
    border-top: 1px solid rgba(72, 72, 72, .8);
    text-align: center;
}

button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    button.back-to-top:hover,
    button.back-to-top:active,
    button.back-to-top:focus, {
        outline: 0 !important;
    }

    button.back-to-top::before,
    button.back-to-top::after {
        content: "";
        display: block;
        vertical-align: middle;
        border-bottom: solid 10px #0D5076;
        border-left: solid 10px transparent;
        line-height: 0;
        border-right: solid 10px transparent;
        height: 0;
        margin: 18px auto 0;
        width: 0;
        border-radius: 20px;
        visibility: hidden;
    }

    button.back-to-top.show::after,
    button.back-to-top.show::before {
        visibility: visible;
    }

    button.back-to-top::after {
        border-bottom-color: #fff;
        position: relative;
        top: -24px;
    }

    button.back-to-top.show {
        display: block;
        background: #fff;
        color: #00ab6c;
        font-size: 25px;
        right: 25px;
        bottom: 74px;
        height: 50px;
        width: 50px;
        visibility: visible;
        box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    }

        button.back-to-top.show:active {
            box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
            -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
            -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
        }

.follow-section h2 {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.follow-section .sub-title {
    display: block;
    text-transform: uppercase !important;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.follow-section p {
    text-align: center;
}


.profile-card-social {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.profile-card-social__item.facebook {
    background: linear-gradient(45deg, #3b5998, #0078d7);
    box-shadow: 0px 4px 30px rgba(43, 98, 169, 0.5);
}

.profile-card-social .icon-font {
    display: inline-flex;
}

.profile-card-social__item.twitter {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.7);
}

.profile-card-social__item.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0px 4px 30px rgba(120, 64, 190, 0.6);
}

.profile-card-social__item {
    display: inline-flex;
    width: 55px;
    height: 55px;
    margin: 15px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #405de6;
    box-shadow: 0px 7px 30px rgba(43, 98, 169, 0.5);
    position: relative;
    font-size: 21px;
    flex-shrink: 0;
    transition: all 0.3s;
}

    .profile-card-social__item:hover {
        transform: scale(1.2);
    }

.icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.profile-card-social__item.link {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.6);
}


/* Bell button fixed to top-right */
.notification-button {
    position: fixed;
    top: 1px;
    right: 20px;
    z-index: 1051;
}

    /* Optional: Styling the notification icon */
    .notification-button .btn {
        border-radius: 50%;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0 !important;
        -webkit-animation: ring 4s .7s ease-in-out infinite;
        -webkit-transform-origin: 50% 4px;
        -moz-animation: ring 4s .7s ease-in-out infinite;
        -moz-transform-origin: 50% 4px;
        animation: ring 4s .7s ease-in-out infinite;
        transform-origin: 50% 4px;
    }

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}
/* Search Box */
.pseudo-search {
    display: inline;
    border: 2px solid #ccc;
    border-radius: 100px;
    padding: 3px 15px;
    margin-right: 5px;
    transition: background-color 0.5 ease-in-out;
}

    .pseudo-search input {
        border: 0;
        background-color: transparent;
        width: 200px;
        color: #fff;
    }

        .pseudo-search input:focus {
            outline: none;
        }

    .pseudo-search button,
    .pseudo-search i {
        border: none;
        background: none;
        cursor: pointer;
        color: #fff;
    }

    .pseudo-search select {
        border: none;
    }
/* Clouds */
.cloud {
    position: relative;
    overflow: hidden;
    width: 100vw; /* Full screen width */
    /*height: 500px;*/ /* Adjust height as needed */
}

    .cloud img {
        /*height:500px;*/
    }

#homer {
    position: absolute;
    top: 0;
    left: 100%; /* Start just outside the right edge */
    animation: moveCloud 30s linear infinite;
}

@keyframes moveCloud {
    0% {
        left: 0%;
    }

    100% {
        left: -100%;
    }
}

.feature-section {
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
    z-index: 0;
}

    .feature-section:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/subtle-white-feathers.png');
        background-position: center;
        z-index: -1;
        content: '';
    }

    .feature-section .sub-title {
        display: block;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    .feature-section h2 {
        margin-bottom: 15px;
        font-size: 36px;
        font-weight: 800;
    }

.cloud-track {
    display: flex;
    width: 200%; /* Because it holds two images side by side */
    animation: scrollCloud 60s linear infinite;
}

    .cloud-track img {
        width: 100vw; /* Each image takes full screen width */
        /*height: auto;*/
        margin-right: 100px;
    }

@keyframes scrollCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100vw);
    }
}


/* New scrollable content */
.features.clouds {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 140px; /* slightly increased for breathing room */
    height: 140px;
    background: white;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    box-shadow: 0px 16px 12px rgba(16, 96, 134, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .circle img {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .circle p {
        font-size: 11px;
        color: #333;
        margin: 0;
        font-weight: 700;
    }

/* Updated positions with better spacing */
.circle-1 {
    top: 8%;
    left: 5%;
    background-color: #ffface;
}

.circle-2 {
    top: 10%;
    left: 35%;
    background-color: #fffff0;
}

.circle-3 {
    top: 8%;
    right: 8%;
    background-color: #ffdeb4;
}

.circle-4 {
    top: 28%;
    left: 18%;
    background-color: #c2f0c2;
}

.circle-5 {
    top: 32%;
    right: 15%;
    background-color: #bafbfb;
}

.circle-6 {
    bottom: 23%;
    left: 3%;
    background-color: #ffe4c4;
}

.circle-7 {
    bottom: 25%;
    right: 3%;
    background-color: #e0ffff;
}

.circle-8 {
    bottom: 28%;
    left: 28%;
    background-color: #e6e6fa;
}

.circle-9 {
    bottom: 20%;
    right: 22%;
    background-color: #fffaf0;
}

.circle-10 {
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #eee8a0;
}

.circle-11 {
    bottom: 8%;
    left: 38%;
    background-color: #b3e2e3;
}

.circle-12 {
    top: 25%;
    right: 30%;
    background-color: #ffd6d6;
}


.circle {
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }
}


/* Slick slide carousel */
.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.schoolrank-section h2 {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.schoolrank-section .sub-title {
    display: block;
    text-transform: uppercase !important;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.customer-logos .card {
    margin: 0 0;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 5px #ddd;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: grab;
    height: 119px;
}

    .customer-logos .card .card-title {
        font-size: 16px;
        font-weight: 600;
    }

    .customer-logos .card .card-subtitle {
        font-size: 14px;
    }


    .customer-logos .card img {
        height: 200px;
        object-fit: cover;
    }

.customer-logos .card-img-abs {
    height: 200px;
    object-fit: cover;
    top: -85px;
    position: absolute;
    margin: 0 auto;
    z-index: -1;
}

.medal1 {
    right: -100px;
}

.medal2 {
    right: -190px;
}

.medal3 {
    right: 0;
}

.follow-section {
    background-color: #edf3fd66;
}
/* Contact */
.contactSection {
    padding: 50px 0 0;
}

.contactdetails {
    padding: 50px 0;
}

    .contactdetails h3 {
        font-size: 40px;
        text-align: left !important;
    }

    .contactdetails p {
        text-align: left !important;
    }

.contactSection {
    padding: 50px 0 0;
}

.contact-title {
    font-size: 20px;
    position: relative;
}

    .contact-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60%;
        height: 2px;
        transition: .5s all;
        background-color: #4d7ece;
        opacity: .4;
    }

.hightlighted {
    position: relative;
    background-color: yellow;
    padding: 0.1em 0.1em;
}

.address-contact ul {
    margin: 0;
    padding: 10px 0 0 0px;
    margin-bottom: 30px;
}

    .address-contact ul li {
        list-style-position: inside;
    }

.address-contact:hover .contact-title:after {
    transition: .5s all;
    width: 100%;
    height: 40%;
    z-index: -1;
}

.osms-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px 10px;
    margin-bottom: 10px;
}

    .osms-table th {
        padding: 8px;
        border-bottom: #d9d9d9 1px solid;
        background: #ddd;
        color: #000;
        font-size: 17px;
        margin: 0 0 0 0;
        font-weight: normal;
    }

    .osms-table td {
        padding: 6px;
        border-bottom: #ddd 1px solid;
        text-align: left;
    }


/* Presentation */
/* Need not body and h2 css  */
/* Slider CSS Start  */

.thumbnail_slider {
    max-width: 900px;
    margin: 30px auto;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 580px;
    overflow: hidden;
    transition: .2s;
    border-width: 2px !important;
    margin: 10px 4px;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    box-shadow: 2px 3px 8px #000000a3;
}

.splide__slide img {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}
/* Slider CSS End  */
.presentation-section h2 {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.presentation-section .sub-title {
    display: block;
    text-transform: uppercase !important;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.process-journey-section {
    background-color: #edf3fd66;
}

    .process-journey-section h2 {
        margin-bottom: 15px;
        font-size: 36px;
        font-weight: 800;
        text-align: center;
    }

    .process-journey-section .sub-title {
        display: block;
        text-transform: uppercase !important;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }

.hide {
    display: none !important;
}
/* chatbot */
.chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-header {
    background-image: linear-gradient(to right, #aedcfe 0%, #ffcab9 100%);
    color: #000;
    padding: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.chat-input {
    border-top: 1px solid #ddd;
    padding: 8px;
}

.message {
    margin-bottom: 10px;
}

.user-message {
    text-align: right;
}

.bot-message {
    text-align: left;
}

.message-text {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 18px;
    max-width: 75%;
}

.user-message .message-text {
    background-color: #0d6efd;
    color: white;
}

.bot-message .message-text {
    background-color: #e9ecef;
    color: black;
}

.chatbtn {
    border: 0;
}

#chatToggleBtn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1001;
    border-radius: 50px;
    height: 60px;
    width: 60px;
}

    #chatToggleBtn img {
        height: 40px;
    }














/*Search panel start*/

.tab-wrapper {
    margin: -58px auto 70px auto;
    width: 100%;
}

.tab-content {
    box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
}

.tab-menu li {
    position: relative;
    background-color: #efefef;
    color: #414141;
    display: inline-block;
    padding: 18px 20px;
    opacity: 0.9;
    cursor: pointer;
    z-index: 0;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
}

    .tab-menu li:hover {
        color: #464646;
    }

    .tab-menu li.active {
        color: #464646;
        opacity: 1;
    }

        .tab-menu li.active:hover {
            color: #464646;
        }

ul.tab-menu {
    margin: 0;
    padding: 0;
    text-align: left;
}

.line {
    position: absolute;
    width: 0;
    height: 7px;
    background-color: #157efb;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
}

.search_panel {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    border-radius: 0 10px 10px 10px;
}

    .search_panel select {
        padding: 7px;
        background-color: #fff;
        width: 99%;
        border-radius: 8px;
        height: 39px;
    }


    .search_panel input[type="text"] {
        padding: 7px;
        background-color: #fff;
        width: 99%;
        border-radius: 8px;
        height: 39px;
        border: 1px solid #ccc;
    }

.search_area {
    width: 96%;
    margin: 0 auto;
}

.search_panel select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    border: 1px solid #ccc;
}

.osms_button {
    padding: 7px;
    background-color: #157efb;
    border: none;
    border-radius: 8px;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    min-width: 113px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: calc(100% - 89px) calc(1em + -6px), calc(100% - 15px) calc(1em + 2px), 100% 0;
}

    .osms_button:hover {
        background-color: #0052B3 !important;
        transition: 0.5s !important;
    }

select.downarrow {
    background-image: url(../images/down.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
}

.captcha_search {
    width: 96%;
    margin: 0 auto;
    display: flex !important;
}




/*Search panel End*/




/*css for responsive*/

@media screen and (min-width:320px) and (max-width:768px) {
    .form_captcha {
        width: 100% !important;
    }

    .welcome_area {
        height: 100% !important;
    }

    .captcha_search {
        width: 96%;
        margin: 0 auto;
    }

    .tab-menu li {
        display: block !important;
        margin-bottom: 10px;
    }

    .footer-content {
        border-bottom: 1px dashed #dddddd3d;
        padding: 10px 0;
        text-align: center;
    }

    .logo img {
        max-width: 100%;
    }

    .search_panel input[type="submit"] {
        display: block !important;
        width: 100% !important;
    }

    .captcha_area1 img {
        width: 100%;
        border: none;
        vertical-align: middle;
        margin-top: 3px;
    }

    .col-40 {
        width: 35%;
        float: left;
        font-size: 10px;
    }






    .col-10 {
        width: 15%;
        float: left;
    }

    .captcha_area1 input[type="text"] {
        padding: 6px;
        border-radius: 4px;
        background-color: #fff;
        border: #ddd 1px solid;
        font-size: 12px;
        width: 34px !important;
    }

    .col-90 {
        width: 100% !important;
        display: block;
        float: none !important;
    }



    .col-45 {
        width: 100%;
        display: block;
        float: none !important;
    }

    .col-20 {
        width: 100%;
        display: block;
    }

    .col-40 {
        width: 100%;
        display: block;
    }

    .col-60 {
        width: 100%;
        display: block;
    }

    .search_panel input[type="text"] {
        width: 100%;
    }

    .popup-ajax {
        width: 90% !important;
    }

    .fp_area {
        width: 90% !important;
    }

    .tab_content {
        width: 100% !important;
    }

    .track_bg {
        display: none;
    }

    .form_table4 td {
        width: 100% !important;
        display: block;
        margin-top: -1px;
    }

    .form_table td {
        width: 100% !important;
        display: block;
        margin-top: -1px;
    }

    .form_table th {
        width: 100% !important;
        display: block;
        margin-top: -1px;
    }

    .form_table4 th {
        width: 100% !important;
        display: block;
        margin-top: -1px;
    }

    .logo {
        width: 100% !important;
    }

        .logo img {
            display: block;
            margin: 0 auto;
            float: none !important;
        }

    .school_name {
        width: 100% !important;
        text-align: center;
    }

    .disclaimer {
        display: none;
    }

    .goschool_btn {
        padding: 7px;
        background-color: #157efb;
        width: 100%;
        border: none;
        border-radius: 8px;
        height: 40px;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        vertical-align: middle;
        background-image: none;
    }

    li {
        display: block;
        width: 100%;
        border-radius: 0 !important;
    }

    .line {
        height: 6px;
        border-radius: 10px 10px 0 0 !important;
    }

    .tab-menu li.active {
        color: #000;
    }

    .tab-content .col-30 {
        width: 100%;
        display: block;
        float: none !important;
        margin: 10px 0;
    }

    .tab-content .col-45 {
        width: 100%;
        display: block;
        float: none !important;
        margin: 10px 0;
    }

    .search_area .col-10 {
        width: 100%;
        display: block;
        float: none !important;
        margin: 10px 0;
    }

    .search_panel select {
        width: 100%;
    }


    .search_panel input[type="text"] {
        width: 100% !important;
    }


    .search_panel {
        border-radius: 0 10px 10px 10px;
        margin: 9px 0 0 0;
    }

    .col-33 {
        width: 100%;
        display: block;
        float: none !important;
    }

    .col-50 {
        width: 100%;
        display: block;
        float: none !important;
    }

    .tab-menu li {
        display: inline;
        padding: 10px;
        font-size: 15px;
        border-radius: 10px 10px 0 0 !important;
    }

    .tab-wrapper {
        width: 100%;
    }

    .login_area {
        width: 100% !important;
    }

    .feildarea {
        width: 100% !important;
    }

        .feildarea input[type="text"] {
            width: 100% !important;
        }

    .title_heading {
        padding: 10px 0 0 0;
        font-size: 40px !important;
        margin: 0;
    }

    .welcome_area {
        padding: 0 0 1px 0;
    }

    .goschool_btn {
        background-image: none !important;
    }


    .content_bg {
        padding: 0 !important;
        height: auto !important;
    }

    .mpo_logo {
        display: none;
    }

    .login_icn img {
        border: none;
        font-family: 'Abel', 'Sansita', sans-serif;
        vertical-align: middle;
        width: 50%;
    }

    .login_icn p {
        font-size: 16px;
    }

    .intro_osms img {
        display: none;
    }
}

.col-30 {
    width: 30%;
    float: left;
}

.col-45 {
    width: 45%;
    float: left;
}

.col-65 {
    width: 65%;
    float: right;
}

.col-33 {
    width: 33.3%;
    float: left;
}

.col-50 {
    width: 50%;
    float: left;
}

.col-20 {
    width: 20%;
    float: left;
}

.col-40 {
    width: 40%;
    float: left;
}

.col-60 {
    width: 60%;
    float: left;
}

.presentation-section .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation-section {
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    background-size: contain !important;
}

.goschool_btn {
    padding: 7px;
    background-color: #157efb;
    width: 100px !important;
    border: none;
    border-radius: 8px;
    height: 40px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    vertical-align: middle;
    background-image: url(/portal/sms/home/images/arrow_go.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 68px) calc(1em + -1px), calc(100% - 15px) calc(1em + 2px), 100% 0;
}


    .goschool_btn:hover {
        background-color: #0052B3 !important;
        transition: 0.5s !important;
    }

/* 17.06.2025 */
.slick-list {
    width: 100%;
    margin: 0 auto;
}

.customer-logos .card {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .slick-list {
        width: 80% !important;
        margin: 0 auto;
    }
}
