te*,
ul,
p,
li,
h1,
h2,
h3
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    transition: all 0.4s;
}

h2 {
    font-size: 20px;
}

h5 {
    font-size: 18px !important;
}

.jic {
    justify-items: center;
}

p {
    font-size: 15px !important;
}


.dropdown-toggle::after{
	margin-left: 0 !important;
	border-top: none !important
}

.heroBtn::after{
	top: -8px;
}

/* body {
    background: #CBEBF5;
} */

:root {
    --theme: #000276;
    --white: #ffffff;
    --black: #000;
}

::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--theme) 0%, var(--theme) 50%, rgb(1, 8, 14) 100%);
    border-radius: 10px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.logo {
    font-weight: 700;
    width: 8%;
}

.logo img {
    width: 100%;
}

/* ***********************modal style*************** */

.alpha-modal{
    background-image: url(../images/disclaimer-bg.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 25px !important;
    background-color: transparent !important;
    border: none !important;
}

.alpha-title{
    color: #000;
	margin-bottom: 20px;
}

.alpha-header{
    border-bottom: none;
	padding: 60px 0 0 0;
}

.alpha-footer{
    border-top: none;
}

.alpha-footer button{
	margin-bottom: 10px;
}

.mdl-con{
	height: 300px;
	overflow-y: scroll;
}

@media(max-width:425px){
	.alpha-modal{
    	padding: 0 !important;
    }
}

/*---------get to whatsapp--------*/

.wp-holder {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float {
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 12px;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 47px;
    overflow: hidden;
    transition: width 0.4s ease;
    height: 47px;
    position: relative;
}

.whatsapp-float i {
    font-size: 24px;
    z-index: 2;
}

/* Slide-in text (desktop only) */
.wp-text {
    white-space: nowrap;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-weight: 500;
    z-index: 1;
}

/* Desktop hover effect */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-float:hover {
        width: 275px;
    }

    .whatsapp-float:hover .wp-text {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile tooltip style */
@media (hover: none) and (pointer: coarse) {
    .wp-text {
        display: none;
    }

    .whatsapp-float::after {
        content: "Need Any Help? Chat With Us";
        position: absolute;
        bottom: 60px;
        right: 0;
        background: #fff;
        color: #333;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 13px;
        white-space: nowrap;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .whatsapp-float:active::after {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------get to whatsapp--------*/

/*---------dlt registration--------*/

.dlt-sec{
	padding-bottom: 20px;
    position: relative;
}

.dlt-content{
	background: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 2px #5c5c5c;
	position: relative;
    top: 70px;
    z-index: 2;
	animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.dlt-content p{
	margin: auto 0;
    font-size: 18px !important;
    font-weight: 600;
}

.dlt-btn{
	background-color: #000276;
    color: #fff;
}

/*---------dlt registration--------*/

/* --------customize button -------- */
.heroBtn {
    /* --c: #000; */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    font-weight: 500 !important;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.heroBtn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    background: #ff9b00;
    z-index: -1;
    transition: 0.4s;
}

.heroBtn:hover {
    color: var(--white);
}

.heroBtn:hover::after {
    height: 100%;
    top: unset;
    bottom: 0;
    /* color: var(--white) !important;
    font-weight: 500 !important;
    transition: all 1s;
    background: var(--black) !important; */
}


/* -------------header------------- */
header {
    z-index: 10;
    position: fixed;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: top 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    z-index: 10;
    position: fixed;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100%;
    display: block;
    justify-content: center;
}

.navbar {
    background: var(--white);
	padding: 0;
	box-shadow: 1px 1px 6px 0px #a9a9a9;
}

.navbar-nav {
    background: #00000000;
    font-family: "Lato", serif;
}

header .nav-link {
    padding: 0 !important;
    color: var(--theme);
    font-size: 15px;
    font-weight: 600;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
}

header .nav-link i {
    font-size: 14px;
}

header .nav-link::after {
    content: '';
    height: 2px;
    width: 0;
    background: var(--theme);
    /* position: absolute; */
    bottom: -3px;
    left: 0;
    display: block;
    transition: all 0.4s;
    margin: auto;
}

header .nav-link:hover::after {
    width: 100%;
}

header .nav-link:hover {
    color: var(--theme);
}

header .heroBtn {
    background: var(--theme);
    color: #fff;
}

header .heroBtn:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

header .dropdown-menu {
    background: var(--theme);
}

header .dropdown-item {
    color: var(--white);
}

header .dropdown-menu li:hover {
    background: transparent !important;
}

header .subMenu {
    position: relative;
    background: #0a698f;
}

.topHeader {
    background: #000;
    padding: 5px 0;
    color: var(--white);
    /* display: none; */
}

.topHeader-social {
    gap: 15px;
    justify-content: end;
    font-size: 12px;
    align-items: center;
}

.topHeader-social a {
    font-size: 16px;
}

.topHeader a {
    color: var(--theme);
}



/* -------------header end------------- */

/* -----------------------banner----------------- */

.carousel {
    position: relative;
}

.carousel-item img {
    height: calc(100vh - 56px);
    max-height: 800px;
    object-fit: cover;
    transition: transform 8s ease;
    position: relative;
}

.carousel-item::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #00000070 0%, #000000 100%);
}

.carousel-item.active img {
    animation: zoomEffect 8s infinite;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.carousel-item {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

.carousel-caption {
    position: absolute;
    top: 55%;
    left: 10%;
    right: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    max-width: 40%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1rem;
}

.ban-alpha {
    margin-top: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.slideInUp {
    animation-name: slideInUp;
}

.zoomIn {
    animation-name: zoomIn;
}

.carousel-item {
    transition: transform 1s ease, opacity 1s ease-in-out;
}

.slideInUp-delayed {
    animation-name: slideInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
}

.zoomIn-delayed {
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
}

.fadeIn-delayed {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
}

.banner-vertical-box {
    position: absolute;
    padding: 5px 2px;
    height: 30%;
    min-height: 250px;
    width: 50px;
    background: var(--theme);
    border-top-right-radius: 20px;
    bottom: 0;
    left: 0;
    top: 50%;
    border: 5px solid var(--white);
    border-left: none;
    z-index: 1;
}

.banner-vertical-box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
	padding: 0;
}

.banner-vertical-box ul a {
    color: var(--white);
    font-size: 20px;
}

.banner .heroBtn {
    background: #0069a9;
    color: var(--white);
    z-index: 5;
    box-shadow: none;
}

/* Parent container: better control */
.banner .col-lg-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Outer circular border with animation */
.banner-clock-box-border {
    background: transparent;
    animation: bannerClockReverse 15s linear infinite;
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border-top: 2px solid var(--theme);
    border-right: 2px solid var(--white);
    border-bottom: 2px solid #75008b;
    border-left: 2px solid yellow;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Inner rotating clock with icons */
.banner-clock-box {
    background: transparent;
    animation: bannerClock 30s linear infinite;
    position: absolute;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Main circular image in center */
.banner-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    border: 5px solid var(--white);
}

/* Icon circles around the clock */
.banner-clock-box span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    position: absolute;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 4;
}

.banner .red {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/stock.png);
}

.banner .blue {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/profit.png);
}

.banner .yellow {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/exchange.png);
}

.banner .green {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/cash-on-delivery.png);
}

@keyframes bannerClock {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    0% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes bannerClockReverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.banner {
    position: relative !important;
}

/* -----------------------banner end----------------- */

/* -------------aboutUs-------------- */
.about {
    background-image: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.custom-shape-divider-bottom-1744619943 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1744619943 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1744619943 .shape-fill {
    fill: #FFFFFF;
}

.about h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.about img {
    max-height: 400px;
}

.about h2 {
    color: #CBEBF5;
    margin-bottom: 20px;
}

.about p {
    color: #ffffff;
    margin-bottom: 15px;
	text-align: justify;
}

.about ul li {
    display: flex;
    color: #ffffff;
    align-items: baseline;
    gap: 10px;
    margin: 10px 0;
	text-align:justify;
}

.about ul i {
    color: #CBEBF5;
}

.about .heroBtn {
    background: #0069a9;
    color: var(--white);
}

.about span {
    /* width: 150px; */
    /* height: 50px; */
    padding: 5px 10px;
    background: var(--white);
    border-radius: 30px;
    position: absolute;
    z-index: 3;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
    color: var(--theme);
    font-size: 14px;
    animation: aboutspan 4s infinite;
    /* border: 1px solid transparent; */
}

.about .span1 {
    top: 45%;
    left: -80px;
}

.about .span2 {
    top: 75%;
    left: -80px;
}

.about .span3 {
    top: 60%;
    right: -80px;
}

/* @keyframes aboutspan {
    0% {
        border-top: 1px solid var(--theme);
        border-bottom: 1px solid var(--black);
        border-left: 1px solid var(--theme);
        border-right: 1px solid var(--black);
    }

    50% {
        border-top: 1px solid var(--black);
        border-bottom: 1px solid var(--theme);
        border-left: 1px solid var(--black);
        border-right: 1px solid var(--theme);
    }

    100% {
        border-left: 1px solid var(--theme);
        border-right: 1px solid var(--black);
        border-top: 1px solid var(--theme);
        border-bottom: 1px solid var(--black);
    }
} */

/* -------------aboutUs end-------------- */

/* -------------price-chart starts--------------*/

.vertical-progress-container {
    width: 80px;
    height: 300px;
    margin: auto;
}

.progress.vertical {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.progress.vertical .progress-bar {
    width: 100%;
    height: 0%;
    transition: height 2s ease;
}

.bg-one {
    background: linear-gradient(45deg, #4cc9f0, #4895ef);
}

.bg-two {
    background: linear-gradient(45deg, #4895ef, #4361ee);
}

.bg-three {
    background: linear-gradient(45deg, #f72585, #b5179e);
}

.price-chart {
    background-color: #fff;
    padding: 50px 0;
}

.text-side h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #0f96cb40;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
}

.price-chart h2 {
    color: var(--theme);
    margin-top: 20px;
}

/* -------------price-chart ends--------------*/

/* ------------why us -------------- */
.whyUs {
    position: relative;
    background-image: url(../images/whyus-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.whyUs .col10 {
    position: relative !important;
}

.whyUs .box {
    /*position: absolute;
    top: -100px;*/
    left: calc(var(--bs-gutter-x)* .5);
}

.whyUs h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.whyUs h2 {
    color: #fff;
}

.whyUs .boxInner {
    padding: 20px;
    height: 100%;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-align: left;
    transition: all 0.4s;
    border-radius: 30px;
    overflow: hidden;
}

.whyUs svg {
    margin-bottom: 15px;
}

.whyUs svg path {
    fill: var(--theme);
    transition: 1s;
}

.whyUs .boxInner:hover svg path {
    fill: #ff9b00;
}

.whyUs h4 {
    color: var(--theme);
    margin: 0 30px 10px 0;
    font-size: 18px;
    transition: 1s;
}

.whyUs p {
    color: #777;
}

.whyUs span {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme);
    padding: 7px 10px;
    color: var(--white);
    border-top-right-radius: 30px;
    transition: 1s;
}

.whyUs .boxInner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    background: var(--theme);
    border-radius: 30px;
    z-index: -1;
    margin: auto;
    transition: 1s;
}

.whyUs .boxInner:hover:after {
    height: 100%;
    top: unset;
    bottom: 0;
}

.whyUs .boxInner:hover h4 {
    color: #ff9b00;
}

.whyUs .boxInner:hover p {
    color: var(--white);
}

.whyUs .boxInner:hover span {
    background: #ff9b00;
}

/* ------------why us end -------------- */

/* ------------telegram---------- */

.telegram {
    position: relative;
    text-align: center;
    background-image: url(../images/tele-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: floatTelegram 3s ease-in-out infinite alternate;
    overflow: hidden;
    padding: 50px 0 100px 0;
}

@keyframes floatTelegram {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 15px;
        /* moves down slightly */
    }
}

.telegram h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.custom-shape-divider-top-1743073079 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1743073079 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1743073079 .shape-fill {
    fill: #CBEBF5;
}

.custom-shape-divider-bottom-1743073130 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1743073130 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1743073130 .shape-fill {
    fill: #CBEBF5;
}

.sub-head {
    color: var(--theme);
    margin: 20px 0;
}

.flow-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 30px auto;
    font-family: sans-serif;
}

.flow-box {
    position: relative;
    padding: 0px 20px;
    color: white;
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-box h4 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.flow-box h6 {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000;
}

.tele-box1 {
    background-color: #000276;
    color: #ffffff;
    z-index: 2;
}

.tele-box2 {
    background-color: #ff9b00;
    color: white;
    z-index: 1;
}

.tele-box2 p {
    margin-left: 30px;
}

.tele-box3 {
    background-color: #000276;
    color: white;
}

.tele-box3 p {
    margin-left: 30px;
}

/* Arrow effect on box 1 (right side) */
.tele-box1::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 149px solid transparent;
    border-bottom: 151px solid transparent;
    border-left: 39px solid #000276;
    z-index: 1;
}

/* Arrow effect on box 2 (right side) */
.tele-box2::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 149px solid transparent;
    border-bottom: 151px solid transparent;
    border-left: 39px solid #ff9b00;
    z-index: 1;
}

@media (max-width: 767px) {
    .flow-container {
        flex-direction: column;
        gap: 40px;
        /* spacing between boxes */
    }

    .flow-box {
        padding: 30px 20px;
        min-height: auto;
    }

    /* Remove the default right arrows */
    .tele-box1::after,
    .tele-box2::after,
    .tele-box3::after {
        content: none;
    }

    /* Add downward arrows for mobile */
  	  .tele-box1::after,
    .tele-box2::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 113px solid transparent;
        border-right: 129px solid transparent;
        border-top: 60px solid currentColor;
        top: 100%;
    }

    /* Give arrows the right color */
    .tele-box1::after {
        border-top-color: #000276;
    }

    .tele-box2::after {
        border-top-color: #ff9b00;
    }

    /* Remove arrow for last box */
    .tele-box3::after {
        content: none;
    }

    .tele-box1,
    .tele-box2 {
        margin-bottom: 30px;
    }
}

/* ------------telegram end---------- */

/* ------------plan------------- */
.plan {
    overflow: hidden;
    background: #CBEBF5 url(../images/plan-bg.png) no-repeat center center / cover;
    padding-top: 10px;
	animation: floatBg 5s ease-in-out infinite alternate;
    overflow: hidden;
}

@keyframes floatBg {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 20px;
        /* moves down slightly */
    }
}

.plan h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.plan h2 {
    color: var(--theme);
}


.plan .swiper {
   width: 100%;
    padding-top: 20px;
    padding-bottom: 82px;
    margin: 30px 0 0 0;
}

.plan .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 500px;
}

.plan h3 {
    color: var(--theme);
    font-size: 24px;
    margin-bottom: 10px;
}

.plan h4 {
    color: var(--black);
}

.plan h4 span {
    color: red;
    text-decoration: line-through;
    margin-bottom: 10px;
    font-size: 18px;
}

.plan h4 sub {
    font-size: 12px;
    color: #555;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.plan .box {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    padding-bottom: 60px;
    position: relative;
    background: var(--white);
	min-height: 500px;
}

.plan .topBox {
    background: linear-gradient(90deg, rgba(15, 149, 203, 1) 0%, rgba(163, 45, 253, 0.219) 100%);
    padding: 40px 30px 60px 0;
    position: relative;
    z-index: 2;
}

.plan .box:hover {
    z-index: 4;
    transition: all 0.4s ease-in-out !important;
}

.plan .ammount-box {
    background: var(--white);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 15px;
    max-width: 300px;
    text-align: left;
}

.plan .ammount-box p {
    color: var(--theme);
    font-weight: 500;

}

.plan .para {
    color: #555;
    padding: 10px;
}

.pln-para{
color: #000;
}

.plan .heroBtn {
    background: #0069a9;
    color: var(--white);
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

.all-plan-view-btn {
    position: relative !important;
    left: 0 !important;
    transform: translateX(0) !important;
    bottom: 0 !important;
}
/*

.swiper-slide:nth-of-type(1) {
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, -115px) rotateX(0deg) rotateY(46deg) scale(1) !important;
    z-index: -1;
}

.swiper-slide:nth-of-type(5) {
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, -200px) rotateX(0deg) rotateY(-60deg) scale(1) !important;
    z-index: -1;
}

.swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active {
    transition-duration: 0ms;
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) scale(1) !important;
    z-index: 1;
}
*/
.custom-shape-divider-bottom-1743149166 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1743149166 svg {
    position: relative;
    display: block;
    width: calc(107% + 1.3px);
    height: 40px;
}

.custom-shape-divider-bottom-1743149166 .shape-fill {
    fill: #ffffff;
}


/* ------------plan end------------- */

/* ------------bank details starts------------- */

.bank-details-zigzag {
  padding: 60px 15px;
   background-image: url(../images/bank-details.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.bank-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.bank-row.reverse {
  flex-direction: row-reverse;
}

.bank-img {
  flex: 1;
  text-align: center;
}

.bank-img img {
  max-width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bank-info {
  flex: 2;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 1px 1px 7px 1px #7a7a7a;
}

.bank-info h3 {
  margin-bottom: 15px;
  color: #003366;
}

.bank-info p {
  margin: 6px 0;
  font-size: 16px;
}

/* ------------bank details ends------------- */

/* -------------vision & Mission--------- */

.visionMission {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ebebeb 0%,#ebebeb 100%);
}

.visionMission h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.mission,
.vision {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.mission span,
.vision span {
	color: #0069a9;
    opacity: 0;
    transform: translateY(-20px);
}

.mission.animate span,
.vision.animate span {
    animation: slideIn 0.5s forwards;
}

.mission.animate span:nth-child(1),
.vision.animate span:nth-child(1) {
    animation-delay: 0s;
}

.mission.animate span:nth-child(2),
.vision.animate span:nth-child(2) {
    animation-delay: 0.1s;
}

.mission.animate span:nth-child(3),
.vision.animate span:nth-child(3) {
    animation-delay: 0.2s;
}

.mission.animate span:nth-child(4),
.vision.animate span:nth-child(4) {
    animation-delay: 0.3s;
}

.mission.animate span:nth-child(5),
.vision.animate span:nth-child(5) {
    animation-delay: 0.4s;
}

.mission.animate span:nth-child(6),
.vision.animate span:nth-child(6) {
    animation-delay: 0.5s;
}

.mission.animate span:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-tab,
.mission-tab {
    border-radius: 30px;
    box-shadow: 3px 2px 6px 0px #707070;
    padding: 20px;
    min-height: 400px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 15%, #000276 15%, #000276 22%, #0052bf 100%);
}

.vision-tab p,
.mission-tab p {
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 15px;
}

.mission-tab img,
.vision-tab img {
    border-radius: 50%;
    margin-bottom: 20px;
}


/* -------------vision & Mission end--------- */

/* -------------youtubeLearning------------- */
.youtubeLearning {
    background: linear-gradient(#000000ee, #000000cc), url(../images/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden !important;
    position: relative;
    padding: 50px 0 0 0;
}

.custom-shape-divider-top-1744806671 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1744806671 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
}

.custom-shape-divider-top-1744806671 .shape-fill {
    fill: #ebebeb;
}

.youtubeLearning h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.youtubeLearning h2 {
    margin: 20px 0;
    font-weight: 600;
    color: var(--white);
    font-size: 24px;
}

.youtubeLearning .heroBtn {
    background: #0069a9;
    color: var(--white);
}

.youtubeLearning img {
    filter: grayscale(90%);
}

/* -------------youtubeLearning end------------- */

/******* testimonial *******/
.testimonial {
    background: linear-gradient(var(--white), var(--theme));
}

.testimonial h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.testimonial img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial p {
    font-size: 24px !important;
    color: #555;
    font-style: italic;
}

.testimonial p i {
    font-size: 36px;
    color: var(--theme);
}

.testimonial h6 {
    color: var(--theme);
    white-space: nowrap;
}

.testimonial h6 span {
    color: #555;
    font-size: 12px;
}

.testi-clint-profile {
    float: left;
    width: 50px !important;
    height: 50px !important;
    margin-right: 20px;
}

.testi-star-group {
    display: flex;
    gap: 15px;
    margin-left: 70px;
}

.testi-star-group i {
    color: orange;
}

.testimonial .heroBtn {
    background: var(--white);
    color: var(--theme);
}

.testimonial .card-box {
    background: #CFEAE3;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
    padding: 20px;
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.9s;
    animation: scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 50%;
}

@keyframes scroll {
    from {
        opacity: 1;
        scale: 0.9;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.testimonial:root {
    overflow-y: auto;
}

.testimonial .card-box:nth-child(1) {
    top: 120px;
}

.testimonial .card-box:nth-child(2) {
    top: 130px;
}

.testimonial .card-box:nth-child(3) {
    top: 140px;
}

@media screen and (min-width:320px) and (max-width:990px) {
    .testimonial .card-box {
        height: auto;
    }
}

@media(max-width:991px) {
	.head-btn{
        margin-bottom: 20px;
    }

    .testimonial img {
        height: 200px;
        width: inherit;
    }

    .testimonial p {
        font-size: 15px !important;
        line-height: 24px;
    }

    .testimonial p i {
        font-size: 24px;
    }

    .testi-star-group {
        gap: 10px;
    }

    .testi-star-group i {
        font-size: 14px;
    }

    .vision-tab,
    .mission-tab {
        margin: 10px 0;
    }

	.dlt-content{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
	}

	.dlt-content p{
   		margin-bottom: 10px;
		text-align: center;
    }
}

/******* testimonial end *******/

/*-------------- chart-graph--------- */
.chart-graph {
    position: relative;
    background: var(--white);
}

.chart-graph h2 {
    position: relative;
    z-index: 1;
    margin: 20px 0;
    top: 100px;
    color: var(--theme);
}

.chart-graph h5 {
    position: relative;
    font-weight: 500;
    color: var(--white);
    display: inline;
    background: #0f96cba3;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
}

.chart-graph .wrapper {
    /*background: url(../images/Screenshot.png);*/
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.chart-graph .wrapper img {
    object-fit: cover;

}

.chart-graph .wrapper::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #ffffff91;
    left: 0;
    top: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
}


.chart-graph a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.chart-graph .heroBtn {
    background: #0069a9;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.custom-shape-divider-top-1744353253 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.custom-shape-divider-top-1744353253 svg {
    position: relative;
    display: block;
    width: calc(135% + 1.3px);
    height: 40px;
}

.custom-shape-divider-top-1744353253 .shape-fill {
    fill: #ebebeb;
}

.custom-shape-divider-bottom-1744353383 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom-1744353383 svg {
    position: relative;
    display: block;
    width: calc(135% + 1.3px);
    height: 40px;
}

.custom-shape-divider-bottom-1744353383 .shape-fill {
    fill: #CBEBF5;
}

/*-------------- chart-graph end--------- */

/* ----------blog----------- */
.blog {
    color: #555;
    overflow: hidden;
    background: #CBEBF5;
}

.blog h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.blog .heroBtn {
    background: #0069a9;
    color: var(--white);
}

.blog img {
    border-radius: 20px;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.blog h4 {
    margin: 15px 0;
    color: #212121;
}

.blog p {
    color: #555;
}

.blog ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog ul h6 {
    margin: 0;
}

.blog ul li {
    color: var(--mainBlue);
    font-weight: 500;
}

.blog ul li span {
    display: block;
    color: #555;
    font-size: 14px;
    margin-top: 8px;
}

.blog ul li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.blog-left {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    padding: 10px;
    background: var(--white);
}

.blog-left:hover {
    box-shadow: rgba(84, 155, 18, 0.548) 0px 5px 15px;
}

.blog .right img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.blog .right ul li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.blog .right h4 {
    font-size: 18px;
    margin-top: 0;
    width: 100%;
}

.blog small {
    text-align: right;
    display: block;
    margin-top: 20px;
    color: #000276;
    font-weight: 600;
}

.blog-cell {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
}

/* ----------blog end----------- */

/* --------------faq------------------ */
.faq {
    overflow: hidden;
    background: var(--white);
	padding-top: 50px;
}

.faq h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.faq p {
    color: #555;
}

.faq .accordion-item {
    border-radius: 20px !important;
}

.faq .accordion-button {
    padding: 20px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 20px !important;
    outline: none;
    color: var(--theme);
    /* background: #CFEAE3; */
    border: 1px solid #ddd;
}

/* --------------faq end------------------ */

/* ----------------contact----------------- */
.contact {
    background: linear-gradient(#00000099, #000000ad), url(../images/2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 50px 0 20px;
}

.contact h5 {
    position: relative;
    font-weight: 500;
    color: var(--theme);
    display: inline;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
}

.contact-left-ul {
    color: var(--white);
    border-left: 4px solid #fff;
    padding-left: 15px;

}

.contact-left-ul li {
    margin: 30px 0;
    font-size: 15px;
}

.contact-left-ul i {
    margin-right: 5px;
}

.contact-right-box {
    /* height: 400px;
    width: 300px; */
    background: #0f96cb11;
    position: relative;
    padding: 50px 10px 10px;
}

.contact-right-box-one {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
    background: transparent;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.contact-right-box-two {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: -20px;
    background: transparent;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.contact-right-box-three {
    position: absolute;
    width: 70px;
    height: 70px;
    left: -20px;
    bottom: -20px;
    background: transparent;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}

.contact-right-box-four {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -20px;
    left: -20px;
    background: transparent;
    border-top: 2px solid var(--white);
    border-left: 2px solid var(--white);
}

.contact-form-label {
    position: absolute;
    color: var(--theme);
    top: -15px;
    left: 50%;
    transform: translate(-50%);
    background: var(--white);
    padding: 4px 10px;
}

.contact input,
.contact textarea {
    color: #ccc;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    /* background: transparent; */
    background: rgb(255 255 255 / 33%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(5px);
    border: none;
    outline: none;
    /* border-bottom: 1px solid #ccc; */
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #ccc;
}

.contact .heroBtn {
    background: #0069a9;
    color: var(--white);
}

/* ----------------contact end----------------- */

/* ------------footer------------- */

.footer-sec {
    position: relative;
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0 20px 0;
}

footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.footer-logo img {
    width: 10%;
}


.footerLink {
    display: flex;
    flex-direction: column;
    gap: 10px;
	padding: 0;
}

footer h5 {
    color: var(--black);
    border-bottom: 2px dashed var(--black);
    display: inline-block;
}

footer .socialLink {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-top: 30px;
}

footer .socialLink i {
    font-size: 20px;
    color: var(--theme);
    /* background: var(--black);
    padding: 10px;
    border-radius: 40%; */
}

footer .socialLink i:hover {
    color: #ff9b00;
}

.footerLink a {
    color: #000276;
    font-weight: 500;
	transition: margin-left 0.3s ease, color 0.3s ease; 
}

.footerLink a i {
    font-size: 12px;
}

.footerLink a:hover {
    margin-left: 15px;
    color: #ff9b00;
}

.footerLink a:hover i {
    color: #ff9b00;
}

.footerInformation {
    display: flex;
	padding: 0;
    flex-direction: column;
    gap: 10px;
}

.footerInformation li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #000276;
}

footer i {
    color: var(--theme);
}

footer hr {
    border: 1px solid red;
    display: block;
}

.foot-para {
    color: #000;
    text-align: justify;
	font-size: 12px !important;
}

.copyRight {
    border-top: 1px solid #000276;
    font-size: 14px;
    color: var(--black);
    padding-top: 15px;
    margin-top: 20px;
}

.copyRight a {
    color: var(--theme);
    font-weight: 500;
}

/* ------------footer end------------- */



/* ----------------media Querry----------------- */

@media(max-width:991px) {
    header .topHeader a {
        font-size: 14px;
    }

    .logo {
        width: 13%;
    }

    header {
        top: 0;
        z-index: 10;
        position: fixed;
        top: 0;
        width: 100%;
        display: block;
        transition: top 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .navbar-nav {
        background: transparent;
    }

    header .nav-link {
        margin-top: 15px;
    }

    header .nav-link:hover::after {
        width: 0;
    }

    .banner {
        height: calc(100vh - 56px);
        max-height: 800px;
        position: relative;
        border-bottom: 1px solid #5555551b;
        overflow: hidden;
        background-position: left;
    }

    .carousel-caption {
        max-width: 100%;
    }

    .faq .accordion {
        width: 100%;
    }

    footer p {
        width: 80%;
    }

    .block-bottom {
        margin-bottom: 70px;
        text-align: center;
    }

	.footer-sec {
        text-align: center;
    }

	.footerInformation li {
        display: block;
        align-items: baseline;
        gap: 8px;
        color: #000276;
    }

	footer .socialLink {
        justify-content: center;
    }
}

@media(max-width:767px) {

    .logo {
        width: 20%;
    }

    p {
        font-size: 15px !important;
    }

    .banner {
        height: 70vh;
    }

    .banner .roow {
        height: 60vh;
    }

    .carousel-caption {
        top: 48%;
    }

    .whyUs {
        height: inherit;
    }

    .whyUs .box {
        position: inherit;
        top: inherit;
        left: calc(var(--bs-gutter-x)* .5);
        width: 100%;
    }

    .telegram .tabcontent p {
        min-height: 160px;
    }

    .telegram-center {
        padding: 10px;
    }

    .who .roow {
        grid-template-columns: repeat(1, 1fr);
    }

    .faq .accordion-button {
        font-size: 16px;
    }

    footer p {
        width: 100%;
    }

    footer h5 {
        font-size: 16px;
    }

    .footerLink a {
        font-size: 14px;
    }

    .footerInformation li {
        font-size: 14px;
    }
}


@media(max-width:575px) {
    .banner h1 {
        font-size: 20px !important;
    }

    .whyUs .col10 {
        padding: 0;
    }

    .whyUs h4 {
        font-size: 18px;
    }

    .blog .right img {
        width: 80px;
        height: 80px;
    }

    .blog .right ul li img {
        width: 30px;
        height: 30px;
    }

    .blog .right h4 {
        font-size: 16px;
    }

    .blog .right h6 {
        font-size: 14px;
    }

    .footer-logo img {
        width: 25%;
    }
    .tele-box1::after, .box2::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 200px solid transparent;
        border-right: 190px solid transparent;
        border-top: 60px solid currentColor;
        top: 100%;
    }

    .tele-box1::after {
        border-top-color: #000276;
    }

    .tele-box2::after {
        border-top-color: #ff9b00;

    .block-bottom {
        margin-bottom: 10px;
    }

	.dlt-content{
        align-items: normal !important;
	}
}

@media(max-width:424px) {
    .about span {
        /* right: 0; */
        white-space: nowrap;
        left: 50% !important;
        transform: translateX(-50%);
    }

    .about .span1 {
        top: 55%;
    }

    .about .span2 {
        top: 75%;
    }

    .about .span3 {
        top: 65%;
    }
       .tele-box1::after, .box2::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 113px solid transparent;
        border-right: 129px solid transparent;
        border-top: 60px solid currentColor;
        top: 100%;
    }

    .tele-box1::after {
        border-top-color: #000276;
    }

    .tele-box2::after {
        border-top-color: #ff9b00;
    }

}

@media(max-width: 400px) {
    .carousel-caption h1 {
        margin-bottom: 5px;
    }

    .carousel-caption {
        top: 44%;
    }
}
