html {
    scroll-behavior: smooth;
    scroll-behavior: smooth;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-color: rgb(13, 34, 72);
    scrollbar-width: thin;
  }

body {
    background: linear-gradient(to right, #fafbff, #fafbff, #fafbff); 
    /* Light Sky Blue (#87CEFA) → Purple (#8A2BE2) → Red (#FF0000) */
    min-height: 100vh;
    background-attachment: fixed; /* Keeps background static while scrolling */
    background-size: cover;
    margin: 0;
    padding: 0;
}
foo
  #main-container {      
    scroll-snap-type: y mandatory;
  }

  section {
    scroll-snap-align: start; /* Define where each section should snap */
  }

/* Override link color */
a {
    color: inherit;
    /* Change to your desired color */
}

p {
    color: #373738; 
}

.bg-green {
    background-color : #00a6f4;
}

.mesh-nav-controls {
    position: fixed;
    top: 0;
    height: 90px;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 1.5s ease-out;
    z-index: 1000;
    color:aliceblue
}

.mesh-nav-controls a:hover {
color: #38ef7d;
} 
.text-green{
    color:#14b8a6;
}

.mesh-navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.mesh-button {
    background: #00a6f4;
    box-shadow: 0 1px 1px rgba(0, 111, 180);
    text-align: center;
    color: #f6f6f6;
    border-radius: 64px;
    flex: none;
    justify-content: center;
    align-items: center;
    min-width: 128px;
    height: 46px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.1s;
    display: flex;
    position: relative;
    overflow: hidden; /* Ensures ripple stays within the button */
    max-width: fit-content;
    text-decoration: none;
}


.mesh-button:hover {
    transform: scale(1.02);
    color: rgb(220, 246, 237);
}

/* Ripple Effect */
.mesh-button::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.5s, opacity 0.6s;
}

.mesh-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
}

.mesh-button-border-sky {
    background: transparent; /* No background */
    border: 2px solid #00a6f4; /* Border instead of background */
    color: #00a6f4; /* Text color matches thec border */
    box-shadow: 0 1px 1px rgba(0, 111, 180);
    text-align: center;
    border-radius: 64px;
    flex: none;
    justify-content: center;
    align-items: center;
    min-width: 128px;
    height: 46px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
    display: flex;
    position: relative;
    overflow: hidden; /* Keeps the ripple effect inside */
    max-width: fit-content;
    text-decoration: none;
}

/* Hover Effect */
.mesh-button-border-sky:hover {
    background: #00a6f4; /* Background appears on hover */
    color: #fff; /* Text turns white */
    transform: scale(1.05);
}

/* Ripple Effect */
.mesh-button-border-sky::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(0, 188, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.5s, opacity 0.6s;
}

.mesh-button-border-sky:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
}


.mesh-button-border-red {
    background: transparent;
    border: 2px solid #ffc107 ;
    color: rgb(255 64 7);
    /* box-shadow: 0 1px 1px rgb(255 7 7); */
    text-align: center;
    border-radius: 64px;
    flex: none;
    justify-content: center;
    align-items: center;
    min-width: 128px;
    height: 46px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
    display: flex
;
    position: relative;
    overflow: hidden;
    max-width: fit-content;
    text-decoration: none;
}

/* Hover Effect */
.mesh-button-border-red:hover {
    background: #ffc107; /* Background appears on hover */
    color: #000;
    transform: scale(1.05);
}

/* Ripple Effect */
.mesh-button-border-red::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(0, 188, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.5s, opacity 0.6s;
}

.mesh-button-border-red:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
}

.mesh-price-button {
	background: #00a6f4;
	padding: 5px 10px;
	color: #fff;
	display: inline-block;
    border-radius: 28px;
	margin-top: 5px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
    text-decoration: none;
}


.mesh-price-button:hover{
    color: #fff;
	 transform: scale(1.02);
}


.mesh-nav-link {   
    font-weight: 500;
    text-decoration: none;
}


        .mesh-nav-link a {
            font-weight: 500;
            position: relative;
            text-decoration: none;
            transition: color 0.3s ease;
            padding-bottom: 5px; /* Adjust as needed for spacing */
        }

        /* Smooth Underline Effect */
        .mesh-nav-link a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px; /* Thickness of the underline */
            background-color: #ffc107; /* Underline color */
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.7s ease;
        }

        /* Hover Effect */
        .mesh-nav-link a:hover::before,
        .mesh-nav-link a.active::before {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* Change Text Color on Hover */
        .mesh-nav-link a:hover {
            color: #00a6f4; /* Change text color on hover */
        }
          .mesh-nav-link a:active {
            color: #00a6f4; /* Change text color on hover */
        }

   

.mesh-background-div {
    width: 100%;
    background: radial-gradient(60.63% 60.63% at 57.15% 51.07%,rgb(0 110 145) 0,#042033 100%);
    background-size: cover;
    background-position: center;
}

.lightBlue {
    color: #00a6f4
}

.mesh-section-image {
    border-radius: 23px;    
    width: 100%;
    height: 100%;
    display: block;
    top: 0%;
    bottom: 0%;
    left: 0%;    
    right: 0%;
    transition: all .19s ease-in-out, background 1s ease-in-out, border 1s ease-in-out;
    box-shadow:0 10px 18px -3px rgba(0, 0, 0, 0.01), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.mesh-section-image :hover {
    transform: scale(1.02);   
}

.mesh-hero-gradient {
    height: 100%;
    width: 100%; 
    
}

.mesh-icon-blue {
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: 15px;
    text-align:center;
    background-color: #00a6f4;
    border-radius: 50%;
    color: #f6f6f6;
    box-shadow: #0a504a;    
}


.mesh-icon-green {
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: 15px;
    text-align:center;
    background-color: #14b8a6;
    border-radius: 50%;
    color: #f6f6f6;
    box-shadow: #0a504a;
}
.circle-icon {
    height: 19px;
    width: 19px;
    line-height: 19px;
    font-size: 13px;
    text-align: center;
    border-radius: 50%;
}

.mesh-icon-red {
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: 15px;
    background-color: #db2777;
    border-radius: 50%;
    text-align:center;
    color: #f6f6f6;
    box-shadow: #0a504a;    
}

.mesh-icon-purple {
    height: 22px;
    width: 22px;
    line-height: 22px;
    font-size: 15px;
    background: #14b8a6;
    text-align:center;
    border-radius: 50%;
    color: #f6f6f6;
    box-shadow: #0a504a;    
}


 .mesh-footer{
    color:#f6f6f6;
}
/* .mesh-footer p,a{
    color:#f6f6f6;
    font-size: 16px;
    font-weight: 100;
}  */

.mesh-rate-card {
    background-color:#e9f6ff ;
    border-radius: 30px;
    max-width: 700px;
    padding: 15px;
    box-shadow: 0 10px 18px -3px rgba(0, 0, 0, 0.01), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    visibility: visible; animation-duration: 1s; animation-delay: 0.2s; animation-name: fadeInUp

}


.mesh-section-heading {
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25em;
     color:#242020;
}



.mesh-page-description.small {
    font-size: 20px;
    line-height: 1.5em;
}
.mesh-page-description {
    font-size: 24px;
    line-height: 1.5em;
    color:#f6f6f6
    
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #061c3e;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #263853;
}
.nav-link {
    /* display: block; */
    /* padding: 3px 25px; */
    color: #091322;
    /* margin-right: 67px; */
    /* border-radius: 65px; */
    /* text-decoration: none; */
    transition: all .15s ease-in-out, background-color 1s ease-in-out, border-color 1s ease-in-out;
}
.nav-pills .nav-link :hover {
    color: #141414; 
 
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 65px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #f8f9fa;
}
/* imported */
.card {
    background-color: #fff;
    border-radius: 10px;
    color: #091322;
    border: none;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    min-width: 100px;
    margin-bottom: 30px;
    transition: all 0.5s ease-out;
    text-decoration: none;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90,97,105,0.1), 0 0.9375rem 1.40625rem rgba(90,97,105,0.1), 0 0.25rem 0.53125rem rgba(90,97,105,0.12), 0 0.125rem 0.1875rem rgba(90,97,105,0.1);
}

.card:hover{
    transform: scale(1.02);
    /* color: rgb(34, 34, 34);*/ 
    
    /* background-color: #000; */
}
.l-bg-cherry {
    background: linear-gradient(to right, #0369a1, #00a6f4) !important;
    color: #fff;
}

.l-bg-blue-dark {
    background: linear-gradient(to right, #0369a1, #00a6f4) !important;
    color: #fff;
}

.l-bg-green-dark {
    background: linear-gradient(to right, #0369a1, #0284c7) !important;
    color: #fff;
}

.l-bg-orange-dark {
    background: linear-gradient(to right,#0369a1, #00a6f4) !important;
    color: #fff;
}

.card .card-statistic-3 .card-icon {
    text-align: center;
    line-height: 50px;
    margin-left: 15px;
    color: #000;
    position: absolute;
    right: 5px;
    top: 12% ;
    opacity: 0.1;
}

.l-bg-cyan {
    background: linear-gradient(135deg, #0369a1, #00a6f4) !important;
    color: #fff;
}

.l-bg-green {
    background: linear-gradient(135deg, #0369a1 0%, #43e794 100%) !important;
    color: #fff;
}

.l-bg-orange {
    background: linear-gradient(to right,rgb(6, 54, 46), rgb(0 161 133)) !important;
    color: #fff;
}

.l-bg-cyan {
    background: linear-gradient(135deg, #0369a1, #00a6f4) !important;
    color: #fff;}

    /* privcing */

.pricing-content{position:relative;}
.pricing_design{
    position: relative;
    margin: 0px 4px;
}
.pricing_design .single-pricing{
     background:rgb(0 110 145);
    padding: 10px 2px;
    border-radius:30px;
    box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
    position: relative;
    z-index: 1;
}
.pricing_design .single-pricing:before{
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 100px 18px;
    border: 1px solid #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.price-head{}
.price-head h2 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
}
.price-head h1 {
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 5px;
}
.price-head span{}

.single-pricing ul{list-style:none;margin-top: 30px;}
.single-pricing ul li {
	line-height: 26px;
	font-size: 14px;
	margin-bottom: 4px;
}
.icon-left{
    float: left;
    position: relative;
    top: 5px;
    margin-right: 9px;
}
.section-title {
    margin-bottom: 60px;
}
.text-center {
    text-align: center!important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #00a6f4;
    font-weight: 600;
}
.mesh-page-title {
    font-size: 35px;
    color: #f6f6f6;
    font-weight: 800;
    letter-spacing: -.025em;
}

    .sliding-container {
            width: 50%;
            height: 27px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

    .sliding-text {
        display: inline-block;
        position: absolute;
        left: 100%;
        animation: slideText 20s ease-out 1 forwards;
    }

    @keyframes slideText {
         0% {
                left: 100%;
            }
     
      100% {
                left: 0%; /* Stops gently */
         }
  }
  
@media screen and (min-width: 479px) {
       .sliding-container {
            width: 100%;}
    .mesh-section-heading {
        margin-bottom: 16px;
        font-size: 23px;
        line-height: 1.25em;
    }
}
@media screen and (min-width: 767px) {
    .sliding-container {
            width: 100%;}
    .mesh-section-heading {
        margin-bottom: 16px;
        font-size: 26px;
        line-height: 1.25em;
    }
    .card{
        font-size: 18px;
    }
}

@media screen and (max-width: 991px){
     .sliding-container {
            width: 100%;}
    .mesh-nav-link a{
        color:#333 !important;
    }
}
@media screen and (min-width: 992px) {
    .mesh-hero-gradient {  
             /* background: linear-gradient(to right, rgb(13, 17, 29), rgba(0, 0, 0, 0)); */
             background: linear-gradient(60.63% 60.63% at 57.15% 51.07%,rgb(0 110 145),#042033 100%)
    }
    .mesh-page-description {
        font-size: 22px;
    }
    .mesh-section-heading{
        font-size: 30px;
    }
    .nav-link {
        padding: 1.5rem 1rem !important;
    }
}
@media screen and (max-width: 1199px) {
    .nclex-desc{
        font-size: 14px !important;
        margin-bottom: 9px !important;
    }
    .icon-left {
        top: 1px;
    }
    .sunscribeFrom{
        width:100%;
    }
}
@media screen and (min-width: 1200px) {
    .sunscribeFrom{
        width: 75%;
    }
}
@media screen and (min-width: 1300px) {
    .mesh-page-title {
        font-size: 45px;
    }
}

.animate__slideUpSlightly {
  animation-name: slideUpSlightly;
}

@keyframes slideUpSlightly {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.animate__slideDownSlightly {
  animation-name: slideDownSlightly;
}

@keyframes slideDownSlightly {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate__slideRightSlightly {
  animation-name: slideRightSlightly;
}

@keyframes slideRightSlightly {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__slideLeftSlightly {
  animation-name: slideLeftSlightly;
}


@keyframes slideLeftSlightly {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



.accordion-button:not(.collapsed) {
    color: #0c88e4;
    background-color: transparent;
    box-shadow: none !important;
}
 .accordion-button:focus {
    z-index: 3;
    border: 1px solid;
    outline: 0;
    border:none;
    box-shadow: none !important;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    width: 100px;
    height: 100px;
    pointer-events: none;
    animation: animate 1.4s ease-in-out infinite;
}

@keyframes animate {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    50% {
        transform: scale(5);
        opacity: 0.6;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

    





