/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
	color: #555;
	font-family: 'Urbanist', sans-serif;
	font-size: 17px;
	line-height: 1.9;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
}
html,
body { height: 100% ;}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px; 
	font-family: 'Urbanist', sans-serif;
	color: #222;
	font-weight: 700;
}

a{
    color: #444;
    text-decoration: none;
	transition: all 0.2s ease 0s;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #0D5FF9;
}

p {
    margin-bottom: 15px;
}

ul,
li {
    margin: 0;
    padding: 0;
}
img{
	max-width: 100%;
}
.mb50{
	margin-bottom: 50px;
}
.mb30{
	margin-bottom: 30px;
}
.section-padding{
	padding: 90px 0;
}
.section-title {
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}
.section-title span {
	font-weight: 600;
	font-size: 20px;
	color: #0D5FF9;
	display: block;
	margin-bottom: 5px;
}
.section-title h2{
	font-size: 35px;
}
.white-title h2{
	color: #fff;
}

/* Preloader */
.preloader {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #275EFE;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
}

/* Buttons */
.bt{
	padding: 8px 35px;
	border-radius: 30px;
	font-size: 17px;
	font-weight: 600;
	display: inline-block;
	transition: .5s;
	position: relative;
	z-index: 1;
	overflow: hidden;	
}

.bg_btn{
	background-color: #0D5FF9;
	border: 2px solid #0D5FF9;
	color: #fff;
	transition: .5s;
}

.wborder_btn{
	border: 2px solid #fff;
	color: #fff;
}

.bg_btn:before,
.wborder_btn:before{
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 15%;
	height: 30px;
	border-radius: 50%;	
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}

.bg_btn:before{
	background: #fff;
}
.wborder_btn:before{
	background-color: #0D5FF9;
}

.bg_btn:hover::before,
.wborder_btn:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
.bg_btn:hover,
.bg_btn:focus{
	color: #222;
	border-color: #0D5FF9;
}

.wborder_btn:hover,
.wborder_btn:focus{
	color: #fff;
	border-color: #fff;	
}

/* header */

    /* Header Styles */
    header {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        padding: 3px 10px;
        position: fixed;
        width: 100%;
        top: 0;
        border-radius: 0px 0px 50px 50px;
        border-bottom: 4px solid #0D5FF9;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .header-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Logo Styles */
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        height: 100px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
    }

    /* Desktop Navigation */
    .desktop-nav {
        display: flex;
        align-items: center;
    }

    .nav-links {
        display: flex;
        list-style: none;
        align-items: center;
    }

    .nav-links li {
        margin: 0 15px;
        position: relative;
    }

    /* Updated Active Link Styling */
    .nav-links li a {
        text-decoration: none;
        color: #001a33;
        font-weight: 600;
        margin-right: 12px;
        font-size: 15px;
        padding: 4px 0;
        transition: all 0.3s;
        position: relative;
        display: inline-block;
    }

    .nav-links li a.active {
        color: #0d5ff9;
    }

    .nav-links li a.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #0d5ff9;
        animation: underline 0.3s ease-out;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #0d5ff9;
        transition: width 0.3s;
    }

    .nav-links li a:hover::after {
        width: 100%;
    }
    
    ul {
        padding-left: 20px;
        margin: 0;
        color:#000000;
    }
    
    @keyframes underline {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }
    
    /* Responsive Auth Buttons Container */
    .auth-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    /* Desktop Auth Buttons */
    .desktop-auth {
        display: flex;
        gap: 10px;
        margin-left: 20px;
    }

    /* Mobile Auth Buttons */
    .mobile-auth {
        display: none;
    }

    /* Responsive Button Styles */
    .login-btn {
        background-color: #002936;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 15px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        white-space: nowrap;
    }

    .login-btn.register {
        background-color: #0d5ff9;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color:white;
    }

    .login-btn.register:hover {
        background-color: #0d5ff9;
    }

    /* Mobile Menu Auth Buttons */
    .mobile-auth-buttons {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .mobile-auth-btn {
        background-color: #001a33;
        color: white;
        border: none;
        padding: 15px 25px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 16px;
        text-decoration: none;
        display: block;
        text-align: center;
        width: 100%;
    }

    .mobile-auth-btn.register {
        background-color: #3498db;
    }

    .mobile-auth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Hamburger Styles */
    .hamburger {
        display: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger div {
        width: 27px;
        height: 3px;
        background-color: #2c3e50;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -300px;
        padding-top: 120px !important;
        width: 280px;
        height: 100%;
        background-color: #ffffff;
        z-index: 999;
        transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding: 90px 25px 30px;
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
        left: 0;
    }

    .mobile-links {
        list-style: none;
    }

    .mobile-links li {
        margin-bottom: 20px;
    }

    .mobile-links li a {
        text-decoration: none;
        color: #34495e;
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 10px 15px;
        border-radius: 5px;
        transition: all 0.3s;
    }

    .mobile-links li a:hover {
        background-color: #f8f9fa;
        color: #3498db;
        transform: translateX(5px);
    }

    /* Hamburger Animation */
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }

    /* Scrolled Header */
    .header-scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    /* Responsive Breakpoints */
    @media (max-width: 1228px) {
        .login-btn {
            padding: 8px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 1024px) {
        .desktop-nav {
            display: none;
        }
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
            padding: 3px 25px;
        }
        .header-container {
            justify-content: space-between !important;
        }
        .hamburger {
            display: block;
        }
        .desktop-auth {
            display: none;
        }
        .mobile-auth {
            display: block;
        }
        .mobile-auth-buttons {
            display: flex;
        }
    }

    @media (min-width: 1025px) {
        .mobile-nav,
        .mobile-overlay {
            display: none !important;
        }
    }
    
    @media (min-width: 1024px) and (max-width: 1136px) {
        .nav-links li a {
            margin-right: 0 !important;
        }
    }
    @media (min-width: 1025px) and (max-width: 1199px) {

    .nav-links li a {
        font-size: 11px;
    }

}
    @media (max-width: 480px) {
        .mobile-auth-btn {
            padding: 12px 20px;
            font-size: 15px;
        }
    }

    /* Modal Styles */
    .login-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
    }

    .login-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        width: 300px;
        padding: 30px;
        background-color: white;
        border-radius: 8px;
        text-align: center;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .login-modal.active .login-modal-content {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .login-close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }

    .login-modal-content h2 {
        color: #4CAF50;
        margin-bottom: 15px;
    }

    .login-modal-content p {
        color: #555;
        font-size: 16px;
    }

/* Footer */
 /* Custom styles using only the specified color scheme: #ffffff, #275ef5, #002935 */
        /* No font-family, no universal (*) tag selectors - fully responsive */
        
        /* ========== BEST FOOTER DESIGN ========== */
        .ws-footer {
            background: #002935;
            color: #ffffff;
            padding: 60px 0 20px;
            position: relative;
        }
        
        .ws-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #275ef5, #275ef5, #275ef5);
        }
        
        .ws-footer-logo {
            margin-bottom: 20px;
        }
          .ws-footer-logo img{
width: 100px;
height: 100px;

        }
        .ws-footer-logo-icon {
            font-size: 42px;
            color: #275ef5;
            display: inline-block;
        }
        
        .ws-footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-top: 8px;
            margin-bottom: 0;
        }
        
        .ws-footer-tagline {
            color: #275ef5;
            font-size: 0.85rem;
            margin-top: 5px;
            letter-spacing: 1px;
        }
        
        .ws-footer-about {
            color:#ffffff;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.9rem;
            text-align:justify;
        }
        
        .ws-footer-heading {
            color: #275ef5;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .ws-footer-heading:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #275ef5;
        }
        
        .ws-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ws-footer-links li {
            margin-bottom: 12px;
        }
        
        .ws-footer-links li a {
            color:#ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.9rem;
        }
        
        .ws-footer-links li a:hover {
            color: #275ef5;
            transform: translateX(5px);
        }
        
        .ws-footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ws-footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color:#ffffff;
            font-size: 0.9rem;
        }
        
        .ws-footer-contact li i {
            width: 32px;
            height: 32px;
            background: rgba(255, 217, 102, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #275ef5;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .ws-footer-contact li span {
            line-height: 1.4;
        }
        
        .ws-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .ws-footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .ws-footer-social a:hover {
            background: #275ef5;
            color: #002935;
            transform: translateY(-3px);
        }
        
        .ws-footer-newsletter {
            margin-top: 20px;
        }
        
        .ws-footer-newsletter p {
            color:#ffffff;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        
        .ws-newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ws-newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 50px;
            background: rgba(255,255,255,0.12);
            color: #ffffff;
            outline: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .ws-newsletter-input:focus {
            background: rgba(255,255,255,0.2);
            box-shadow: 0 0 0 2px rgba(255, 217, 102, 0.3);
        }
        
        .ws-newsletter-input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        .ws-newsletter-btn {
            background: #275ef5;
            color: #002935;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ws-newsletter-btn:hover {
            background: #ffffff;
            transform: scale(1.02);
        }
        
        .ws-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 25px;
            text-align: center;
        }
        
        .ws-footer-bottom p {
            color:#ffffff;
            font-size: 0.85rem;
            margin: 0;
        }
        
        .ws-footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        
        .ws-footer-bottom-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .ws-footer-bottom-links a:hover {
            color: #275ef5;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .ws-footer {
                padding: 50px 0 20px;
            }
        }
        
        @media (max-width: 768px) {
            .ws-footer {
                padding: 40px 0 20px;
            }
            .ws-footer-heading {
                margin-top: 25px;
                margin-bottom: 20px;
            }
            .ws-footer-heading:first-of-type {
                margin-top: 0;
            }
            .ws-footer-bottom-links {
                gap: 15px;
            }
        }
/* Home Banner */
.home-banner{
	background-size: cover;
	background-color: #002935;
	color: #fff;
	position: relative;
	height: 700px;
	width: 100%;
}
.banner-content{
	height: 750px;
	position: relative;
	z-index: 1;
}
.banner-content .title {
	font-size: 60px;
	color: #fff;
	line-height: 86px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.bbtns{
	display: inline-block;
	margin-top: 25px;
}
.banner-content .title span{
	color: #0D5FF9;
}
.banner-content .bg_btn{
	margin-right: 23px;
}
.banner_img {
	position: absolute;
	bottom: 0;
	right: 5%;
	z-index: 1;
}
.banner_img img{
	width: 470px;
}
.banner_img_inner{
	position: relative;
}
.book_icon {
	position: absolute;
	bottom: 50px;
	left: 50px;
	font-size: 40px;
	color: rgba(255,255,255,0.2);
}
.bg_shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.bshape1 {
	position: absolute;
	top: 19%;
	right: 2%;
}
.bshape1 svg{
	width: 160px;
}
.tpshape {
	position: absolute;
	left: -4px;
	top: -65px;
}
.tpshape svg {
	width: 83px;
}
.align{text-align: justify;}

/* Features */
.feature-item{
	border: 2px solid #F5F5F5;
	padding: 80px 30px 50px;
	position: relative;
	transition: .5s;
	border-radius: 8px ;
	margin-bottom: 30px;
}
.feature-item:hover{
	border-radius: 8px 60px 8px 8px;
	background-color: #fff;
	border-color: #0D5FF9;
}
.fea-icon{
	width: 75px;
	height: 75px;
	line-height: 75px;
	background: #E5F8F8;
	text-align: center;
	border-radius: 50%;
	margin-bottom: 25px;
	display: inline-block;
	transition: .5s;
}
.feature-item:hover svg path{
	fill: #fff;
}
.feature-item:hover .fea-icon{
	background: #0D5FF9;
}
.fea-icon svg{
	width: 40px;
}
.fea-icon svg path{
	fill: #0D5FF9;
}
.feature-item h3{
	font-size: 24px;
	transition: .5s;
}
.feature-item p{
	transition: .5s;
	margin-bottom: 0;
}
.fnumber {
	background: #0D5FF9;
	color: #fff;
	border-radius: 0 0 7px 7px;
	padding: 0 8px;
	display: inline-block;
	position: absolute;
	top: -2px;
	left: 31px;
	line-height: 33px;
}

/* About */
.about-title{
	margin-bottom: 30px;
}
.single_about {
	margin-bottom: 45px;
}
.single_about .aicon{
	float: left;
	margin-right: 20px;
}
.single_about .aicon svg{
	width: 50px;
}
.mt-5{
	margin-top: 50px;
}

/* Counter Up */
.counter-title{
	margin-bottom: 70px;
}
.counter-title h2{
	font-size: 28px;
	position: relative;
	display: inline-block;
}
.counter-title h2 span{
	color: #0D5FF9;
}
.counter-item {
	border: 2px dashed #E9EEF4;
	border-radius: 8px;
	text-align: center;
	padding: 25px;
	position: relative;
	margin-bottom: 30px;
}
.counter-item h4{
	font-size: 24px;
	margin-bottom: 0;
}

/* Working Process */
.working-process{
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.working-process:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #002935;
	opacity: .87;
	z-index: -1;
}
.single-work{
	text-align: center;
	color: #fff;
	margin-top: 20px;
	position: relative;
}
.single-work h4{
	font-size: 24px;
	color: #fff;
}
.wicon {
	width: 80px;
	height: 80px;
	line-height: 93px;
	background: #0D5FF9;
	display: inline-block;
	margin-bottom: 45px;
	border: 3px solid #fff;
	border-radius: 8px;
	transform: rotate(50deg);
}
.wicon i{
	font-size: 40px;
	transform: rotate(-50deg);
	display: inline-block;
	color: #fff;
}

/* Instructors */
.instructors .bg_btn{
	margin-bottom: 25px;
}
.single-instructor{
	box-shadow: 0 6px 26px rgba(0,0,0,.04);
	border: 1px solid #f5f5f5;
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
	padding-top: 35px;
	transition: .5s;
	margin-bottom: 30px;
}
.single-instructor h3 a{
	transition: .5s;
}
.single-instructor h3 a:hover,
.single-instructor h3 a:focus{
	color: #0D5FF9;
}
.inimage {
	position: relative;
	width: 245px;
	margin: 0 auto;
	margin-bottom: 25px;
}
.single-instructor h3{
	font-size: 24px;
	margin-bottom: 5px;
}
.single-instructor h3 a{
	color: #222;
}
.single-instructor .designation{
	font-size: 15px;
	color: #0D5FF9;
	font-weight: 500;
}
.inmeta {
	border-top: 1px solid #f5f5f5;
	padding-top: 10px;
	margin-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden;
}
.inmeta span p,
.inmeta span i{
	display: inline-block;
	color: #555;
}
.inmeta span i{
	margin-right: 5px;
}

/* Video Area */
.pb170{
	padding-bottom: 170px;
}
.video-area{
	position: relative;
	z-index: 1;
}
.video-area img{
	width: 100%;
}
.vbtn {
	position: absolute;
	top: 50%;
	left: 50%;
	background: transparent;
	transform: translate(-50% , -50%);
}
svg#play_icon {
	width:150px;
	margin: 120px auto;
	display:block;
	cursor: pointer;
	transform-origin: 50% 50%;
}
svg#play_icon path{
	stroke: #fff;
}
svg#play_icon #triangle {
	fill:#fff;
	transition:500ms;
	transform-origin: 50% 50%;
}

/* Review Section */
.review{
	background: linear-gradient(148deg, rgba(2,0,36,0.7848273098301821) 0%, rgba(13,95,249,0.9697012594100141) 100%); 
	width: 100%;
	position: relative;
}
.review .section-title span,
.review .section-title h2{
	color: #fff;
}
.review-item{
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 6px 26px rgba(0,0,0,0.04);
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
}
.review-item h4{
	margin-top: 20px;
	font-size: 24px;
	color: #fff;
}
.review-item i{
	color: #FFA113;
}
.rimage {
	width: 120px;
	height: 120px;
	transform: rotate(-50deg);
	border-radius: 12px;
	border: 2px solid #ddd;
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
	display: inline-block;
}
.rimage img{
	border-radius: 12px;
	transform: rotate(50deg);
}
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}
.circles li:nth-child(1){ left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles li:nth-child(2){ left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.circles li:nth-child(3){ left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.circles li:nth-child(4){ left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5){ left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.circles li:nth-child(6){ left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.circles li:nth-child(7){ left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.circles li:nth-child(8){ left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.circles li:nth-child(9){ left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.circles li:nth-child(10){ left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }
@keyframes animate {
    0%{ transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
    100%{ transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/* Blog */
.blog-item{
	border: 1px solid #E9EEF4;
	border-radius: 8px;	
	margin-bottom: 30px;
}
.blog-image{
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.blog-image img{
	border-radius: 8px 8px 0 0;
	width: 100%;
}
.blog-content{
	padding: 30px;
}
.blog-content h3{
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 10px;
}
.blog-content h3 a{
	color: #222;
	transition: .5s;
}
.blog-content h3 a:hover,
.blog-content h3 a:focus{
	color: #0D5FF9;
}
.bmeta{
	font-size: 15px;
	margin-bottom: 25px;
}
.bmeta i{
	color: #0D5FF9;
}
.bmeta .bcat a {
	display: inline-block;
	padding: 1px 20px;
	background: #0D5FF9;
	color: #fff;
	border-radius: 5px 25px 5px 25px;
}
.bbtn{
	color: #444;
	font-weight: 600;
}

/* Scroll Top */
.topcontrol{
	width: 45px;
	height: 45px;
	line-height: 44px;
	background-color: #0F2B5A;
	border: 2px solid #0F2B5A;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	transition: .5s;
	font-size: 16px;
	z-index: 999;
}
.topcontrol:hover,
.topcontrol:focus{
	background-color: #0D5FF9;
	color: #fff;
}

/* Why Choose Section - Modern Design */
.why-choose-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.why-choose-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-choose-section .feature-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(13, 95, 249, 0.08);
}
.why-choose-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(13, 95, 249, 0.12);
    border-radius: 8px 60px 8px 8px;
    background-color: #fff;
    border-color: #0D5FF9;
}
.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 95, 249, 0.08), rgba(255, 107, 44, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.why-choose-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0d5ff9, #0D5FF9);
}
.why-choose-section .feature-icon svg {
    width: 30px;
    height: 30px;
}
.why-choose-section .feature-card:hover .feature-icon svg path {
    fill: white;
}
.why-choose-section .feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2c3e;
    margin-bottom: 12px;
    line-height: 1.3;
}
.why-choose-section .feature-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #6c7f8f;
    margin-bottom: 18px;
}
.why-choose-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-choose-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4a5c6b;
    margin-bottom: 8px;
}
.why-choose-section .feature-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    background: rgba(13, 95, 249, 0.1);
    color: #0d5ff9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}
.why-choose-section .feature-number {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(13, 95, 249, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .why-choose-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* youtube video */

.YouTubePopUp-Wrap{
    position:fixed;
    width:100%;
    height:100%;
    background-color:#000;
    background-color:rgba(0,0,0,0.8);
    top:0;
    left:0;
    z-index:9999999999999;
}

.YouTubePopUp-animation{
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUp;
    animation-name: YouTubePopUp;
}

@-webkit-keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.logged-in .YouTubePopUp-Wrap{ /* For WordPress */
    top:32px;
    z-index:99998;
}

.YouTubePopUp-Content{
    max-width:680px;
    display:block;
    margin:0 auto;
    height:100%;
    position:relative;
}

.YouTubePopUp-Content iframe{
    max-width:100% !important;
    width:100% !important;
    display:block !important;
    height:480px !important;
    border:none !important;
    position:absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.YouTubePopUp-Hide{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUpHide;
    animation-name: YouTubePopUpHide;
}

@-webkit-keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.YouTubePopUp-Close{
    position:absolute;
    top:0;
    cursor:pointer;
    bottom:528px;
    right:0px;
    margin:auto 0;
    width:24px;
    height:24px;
    background:url(close.png) no-repeat;
    background-size:20px 20px;
    -webkit-background-size:20px 20px;
    -moz-background-size:20px 20px;
    -o-background-size:20px 20px;
}

.YouTubePopUp-Close:hover{
    opacity:0.5;
}

@media all and (max-width: 768px) and (min-width: 10px){
    .YouTubePopUp-Content{
        max-width:90%;
    }
}

@media all and (max-width: 600px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:320px !important;
    }

    .YouTubePopUp-Close{
        bottom:362px;
    }
}

@media all and (max-width: 480px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:220px !important;
    }

    .YouTubePopUp-Close{
        bottom:262px;
    }
}


/* responsive css */
/* Responsive Design */

@media only screen and (max-width:1366px) { 
	.banner_img img {
		width: 320px;
	}
	.bshape1 {
		top: 23%;
		right: 3%;
	}
	.bwavehape svg {
		width: 1366px;
	}	
}

@media only screen and (max-width: 1284px) {
	.bwavehape svg {
		width: 1284px;
	}	
}

@media only screen and (max-width:1199px) {
	.bwavehape svg {
		width: 1199px;
	}		
	.banner-content .title {
		font-size: 56px;
		line-height: 80px;
	}	
	.banner-content .sinfo {
		margin-left: 0;
		top: 18px;
	}	
	.single-work{
		margin-top: 40px;
	}
	.single-work::after	{
		display: none;
	}
	.single-footer{
		margin-bottom: 30px;
	}
	.copyright {
		margin-top: 40px;
	}
	.course-sidebar {
		margin-left: 0;
		margin-top: 40px;
	}	
}

@media only screen and (max-width:1024px) { 
	.bwavehape svg {
		width: 100%;
	}
	.banner_search_form {
		width: 464px;
	}	
	.video-area::after{
		display: none;
	}
}

@media only screen and (max-width: 991px){
	.banner_search_form {
	  width: 500px;
	}
	.banner_img {
		display: none;
	}
	.banner-content .sinfo {
	  margin-left: 15px;
	  top: -22px;
	}	
	.about-title{
		margin-top: 50px;
	}
	.sidebar{
		padding-top: 60px;
	}
}

@media only screen and (max-width: 767px){
	.banner-content .sinfo {
		margin-left: 0;
		top: 18px;
	}	
	.title_btn{
		display: none;
	}
	.counter-title h2:before,
	.counter-title h2:after{
		display: none;
	}
	#topcontrol{
		display: none;
	}
}

@media only screen and (max-width: 668px){
	#sm_menu_ham {
		top: 26px;
		right: 19px;
		float: right;
		left: auto;
	}
	.site-logo {
		float: left;
		padding-left: 0;
	}
}

@media only screen and (max-width: 575px){
	.banner-content .subtitle {
		font-size: 22px;
	}
	.banner-content .title {
		font-size: 35px;
		line-height: 45px;
	}
}

.features .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make columns equal height */
.features .col-xl-4,
.features .col-lg-4,
.features .col-md-6 {
    display: flex;
}

/* Make card full height */
.feature-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Why Choose Section - Modern Design */
.why-choose-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 95, 249, 0.03) 0%, rgba(13, 95, 249, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.03) 0%, rgba(255, 107, 44, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1321px) and (min-width: 1199px) {
    .nav-links li a {
        margin-right: 0px;
        font-size: 14px;
    }
}
/* Section Header */
.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0D5FF9;
    background: rgba(255, 107, 44, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.why-choose-section .section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a2c3e;
    margin-bottom: 16px;
}

.why-choose-section .section-title span {
    background: linear-gradient(135deg, #0d5ff9, #0D5FF9);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.why-choose-section .section-desc {
    font-size: 16px;
    color: #5a6e7c;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid Layout */
.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Feature Card */
.why-choose-section .feature-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(13, 95, 249, 0.08);
}

.why-choose-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(13, 95, 249, 0.12);
   border-radius: 8px 60px 8px 8px;
	background-color: #fff;
	border-color: #0D5FF9;
}

/* Icon */
.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 95, 249, 0.08), rgba(255, 107, 44, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.why-choose-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0d5ff9, #0D5FF9);
}

.why-choose-section .feature-icon svg {
    width: 30px;
    height: 30px;
}

.why-choose-section .feature-card:hover .feature-icon svg path {
    fill: white;
}

/* Card Content */
.why-choose-section .feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2c3e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-choose-section .feature-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #6c7f8f;
    margin-bottom: 18px;
}

/* Feature List */
.why-choose-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4a5c6b;
    margin-bottom: 8px;
}

.why-choose-section .feature-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    background: rgba(13, 95, 249, 0.1);
    color: #0d5ff9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Number Badge */
.why-choose-section .feature-number {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(13, 95, 249, 0.05);
    line-height: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.why-choose-section .feature-card:hover .feature-number {
    color: rgba(13, 95, 249, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-choose-section .section-title {
        font-size: 34px;
    }
    .why-choose-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .why-choose-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-choose-section .section-title {
        font-size: 28px;
    }
    .why-choose-section .section-header {
        margin-bottom: 35px;
    }
    .why-choose-section {
        padding: 50px 0;
    }
    .why-choose-section .feature-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .why-choose-section .container {
        padding: 0 16px;
    }
    .why-choose-section .section-title {
        font-size: 26px;
    }
    .why-choose-section .section-desc {
        font-size: 14px;
    }
}
.mobile-links li a.active {
    color: #0D5FF9;
    font-weight: 600;
    background: rgba(13, 95, 249, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    display: block;
}

        .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            text-decoration: none;
            color: white;
            font-size: 24px;
            will-change: transform;
        }
        
        .scroll-top {
            background-color: #1a1a2e;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: #0d5ff9;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            color:white;
        }
        
        .scroll-top {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }
            .float-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .float-btn {
                transition: none;
            }
        }.whatsapp-btn {
  animation: pulse-green 1.8s infinite;
}

.call-btn {
  animation: pulse-blue 1.8s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(13,95,249,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(13,95,249,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,95,249,0); }
}
