.top-header {

    background: #002326;
    color: #fff;
    font-size: 14px;

}

.top-link {

    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;

}

.top-link:hover {

    color: #ffb703;

}

.follow-text {

    color: #ddd;
    font-weight: 500;

}

.social-icon {

    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
    transition: .35s;

}

.social-icon:hover {

    background: #ffb703;
    color: #000;
    transform: translateY(-3px);

}

@media(max-width:991px) {

    .top-header {

        text-align: center;

    }

    .follow-text {

        display: none;

    }

}

@media(max-width:576px) {

    .top-link {

        font-size: 13px;

    }

    .social-icon {

        width: 32px;
        height: 32px;

    }

}

/*=========================================
            NAVBAR
=========================================*/

.navbar {
    padding: 12px 0;
    background: #fff;
    transition: all .3s ease;
    z-index: 999;
}

.logo {
    height: 65px;
    width: auto;
    transition: .3s;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #213166 !important;
    padding: 12px 15px !important;
    transition: all .3s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/*=========================================
        UNDERLINE ANIMATION
=========================================*/

.nav-link::after {

    content: "";
    position: absolute;

    left: 15px;
    bottom: 6px;

    width: 0;
    height: 2px;

    background: #0d6efd;

    transition: .35s;

}

.nav-link:hover::after,
.nav-link.active::after {

    width: calc(100% - 30px);

}

/*=========================================
            DROPDOWN
=========================================*/

.dropdown-menu {

    border: none;
    border-radius: 12px;
    min-width: 240px;

    padding: 8px 0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    animation: dropdownFade .35s ease;

}

.dropdown-item {

    font-weight: 500;
    padding: 12px 18px;

    transition: all .3s ease;

}

.dropdown-item:hover {

    background: #0d6efd;
    color: #fff;

    padding-left: 26px;

}

/*=========================================
        FLOAT ANIMATION
=========================================*/

@keyframes dropdownFade {

    from {

        opacity: 0;
        transform: translateY(15px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

/*=========================================
        MULTI LEVEL MENU
=========================================*/

.dropdown-submenu {

    position: relative;

}

.dropdown-submenu>.dropdown-menu {

    top: 0;
    left: 100%;
    margin-top: -2px;

}

/*=========================================
        ROTATE ARROW
=========================================*/

.dropdown-toggle::after {

    transition: .3s ease;

}

@media(min-width:992px) {

    .dropdown:hover>.dropdown-toggle::after {

        transform: rotate(180deg);

    }

}

/*=========================================
        DESKTOP
=========================================*/

@media(min-width:992px) {

    .dropdown-menu {

        margin-top: 0;

    }

    .dropdown:hover>.dropdown-menu {

        display: block;

    }

    .dropdown-submenu:hover>.dropdown-menu {

        display: block;

    }

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:991px) {

    .logo {

        height: 50px;

    }

    .navbar-collapse {

        background: #fff;

        margin-top: 15px;

        padding: 15px;

        border-radius: 15px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        width: 100%;

    }

    .nav-item {

        width: 100%;

    }

    .nav-link {

        width: 100%;
        padding: 14px 15px !important;

    }

    .dropdown-menu {

        position: relative !important;

        width: 100%;

        margin-left: 15px;

        margin-top: 5px;

        border-left: 3px solid #0d6efd;

        border-radius: 8px;

        box-shadow: none;

        animation: none;

    }

    .dropdown-menu.show {

        display: block;

    }

    .dropdown-submenu>.dropdown-menu {

        left: 0;
        margin-left: 20px;

    }

    .btn {

        width: 100%;
        margin-top: 12px;

    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media(max-width:576px) {

    .logo {

        height: 45px;

    }

    .nav-link {

        font-size: 14px;

    }

    .dropdown-item {

        font-size: 14px;

        padding: 10px 16px;

    }

}

/*=================================================
                HERO SECTION
=================================================*/

.hero {

    position: relative;

    width: 100%;

    min-height: 100vh;

    /* background: url("assest/img/home.webp") center center/cover no-repeat; */

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

}

/* Dark Royal Blue Overlay */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(28, 43, 92, 0.82),
            rgba(20, 38, 95, .82));

}

/* Hero Content */

.hero-content {

    position: relative;

    min-height: 100vh;

    z-index: 2;

}

/* Center Text */

.hero-text {

    max-width: 850px;

    color: #fff;

    text-align: center;

    animation: heroFade 1.2s ease;

}

/* Badge */

.hero-badge {

    display: inline-block;

    padding: 10px 22px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .25);

    color: #FFD54F;

    font-weight: 600;

    animation: fadeDown 1s ease;

}

/* Heading */

.hero h1 {

    font-size: 65px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

.hero h1 span {

    color: #FFD54F;

}

/* Paragraph */

.hero p {

    font-size: 20px;

    line-height: 1.9;

    color: #f5f5f5;

    margin: auto;

    max-width: 760px;

    margin-bottom: 40px;

}

/* Button */

.hero .btn {

    background: #FFD54F;

    color: #213166;

    border: none;

    font-size: 18px;

    font-weight: 700;

    border-radius: 50px;

    padding: 15px 40px;

    transition: .4s;

}

.hero .btn:hover {

    background: #fff;

    color: #213166;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(255, 213, 79, .35);

}

/* Background Zoom Animation */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: inherit;

    animation: zoomBackground 18s ease-in-out infinite alternate;

    z-index: -1;

}

/* Floating Light Effect */

.hero::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background: rgba(255, 213, 79, .12);

    border-radius: 50%;

    filter: blur(100px);

    top: -120px;

    right: -150px;

    animation: floatLight 8s ease-in-out infinite;

}

/*=============================
        ANIMATIONS
=============================*/

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes fadeDown {

    from {

        opacity: 0;

        transform: translateY(-30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes zoomBackground {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.08);

    }

}

@keyframes floatLight {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(40px);

    }

    100% {

        transform: translateY(0);

    }

}

/*=============================
        RESPONSIVE
=============================*/

@media(max-width:992px) {

    .hero {

        min-height: 90vh;

    }

    .hero h1 {

        font-size: 48px;

    }

    .hero p {

        font-size: 18px;

    }

}

@media(max-width:768px) {

    .hero {

        min-height: 85vh;

        padding: 100px 0 70px;

    }

    .hero h1 {

        font-size: 36px;

    }

    .hero p {

        font-size: 16px;

        line-height: 1.7;

    }

    .hero .btn {

        width: 100%;

        max-width: 260px;

    }

    .hero-badge {

        font-size: 14px;

    }

}

@media(max-width:576px) {

    .hero h1 {

        font-size: 30px;

    }

    .hero p {

        font-size: 15px;

    }

    .hero-badge {

        font-size: 13px;

        padding: 8px 16px;

    }

}

/*====================================
        WELCOME SECTION
====================================*/

.welcome-section {

    padding: 100px 0;

    background: #ffffff;

}

/* Wrapper */

.welcome-wrapper {

    gap: 70px;

}

/* Left Side */

.welcome-content {

    flex: 1;

    animation: fadeLeft 1s ease;

}

.section-tag {

    display: inline-block;

    background: #fff8df;

    color: #f4a300;

    padding: 8px 18px;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 20px;

}

.welcome-content h2 {

    font-size: 45px;

    font-weight: 700;

    color: #213166;

    margin-bottom: 25px;

    line-height: 1.3;

}

.welcome-content h2 span {

    color: #f4a300;

}

.welcome-content p {

    color: #666;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 20px;
    text-align: justify;

}

.welcome-content .btn {

    padding: 14px 35px;

    border-radius: 40px;

    background: #213166;

    border: none;

    font-weight: 600;

    transition: .4s;

}

.welcome-content .btn:hover {

    background: #f4a300;

    color: #213166;

    transform: translateY(-3px);

}

/* Right Side */

.welcome-image {

    flex: 1;

    display: flex;

    justify-content: center;

    animation: fadeRight 1s ease;

}

.welcome-image img {

    width: 100%;

    max-width: 520px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

    transition: .5s;

}

.welcome-image img:hover {

    transform: scale(1.03);

}

/*====================================
            ANIMATION
====================================*/

@keyframes fadeLeft {

    from {

        opacity: 0;

        transform: translateX(-60px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes fadeRight {

    from {

        opacity: 0;

        transform: translateX(60px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px) {

    .welcome-wrapper {

        flex-direction: column-reverse;

        text-align: center;

        gap: 40px;

    }

    .welcome-content h2 {

        font-size: 36px;

    }

    .welcome-content p {

        font-size: 16px;

    }

    .welcome-content .btn {

        width: 220px;

    }

}

@media(max-width:768px) {

    .welcome-section {

        padding: 70px 0;

    }

    .welcome-content h2 {

        font-size: 30px;

    }

    .welcome-image img {

        max-width: 100%;

    }

}

@media(max-width:576px) {

    .welcome-content h2 {

        font-size: 26px;

    }

    .welcome-content p {

        font-size: 15px;

        line-height: 1.8;

    }

    .section-tag {

        font-size: 13px;

    }

    .welcome-content .btn {

        width: 100%;

    }

}

/*==================================
        WHY CHOOSE US
==================================*/

.why-us {

    padding: 100px 0;

    background: #f8fbff;

}

.section-title {

    max-width: 750px;

    margin: auto;

    margin-bottom: 70px;

}

.section-title span {

    color: #f4b400;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.section-title h2 {

    font-size: 45px;

    color: #213166;

    font-weight: 700;

    margin: 20px 0;

}

.section-title h2 span {

    color: #f4b400;

}

.section-title p {

    color: #666;

    line-height: 1.8;

    font-size: 17px;

}

/* Cards */

.why-wrapper {

    gap: 30px;

}

.why-card {

    flex: 1 1 320px;

    max-width: 360px;

    background: #fff;

    border-radius: 18px;

    padding: 40px 30px;

    text-align: center;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;

}

.why-card::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 5px;

    background: #213166;

    left: 0;

    top: 0;

    transition: .4s;

}

.why-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);

}

.why-card:hover::before {

    background: #f4b400;

}

/* Icon */

.icon {

    width: 90px;

    height: 90px;

    background: #eef4ff;

    color: #213166;

    border-radius: 50%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 36px;

    transition: .4s;

}

.why-card:hover .icon {

    background: #213166;

    color: #f4b400;

    transform: rotateY(180deg);

}

.why-card h4 {

    margin: 25px 0 15px;

    font-weight: 700;

    color: #213166;

}

.why-card p {

    color: #666;

    line-height: 1.8;

}

/* Responsive */

@media(max-width:992px) {

    .section-title h2 {

        font-size: 36px;

    }

}

@media(max-width:768px) {

    .why-us {

        padding: 70px 0;

    }

    .section-title {

        margin-bottom: 50px;

    }

    .section-title h2 {

        font-size: 30px;

    }

    .section-title p {

        font-size: 16px;

    }

    .why-wrapper {

        gap: 20px;

    }

    .why-card {

        max-width: 100%;

    }

}

@media(max-width:576px) {

    .section-title h2 {

        font-size: 26px;

    }

    .why-card {

        padding: 30px 20px;

    }

    .icon {

        width: 75px;

        height: 75px;

        font-size: 30px;

    }

}
/*=====================================
        ACHIEVEMENTS
======================================*/

.achievement-section{

    padding:100px 0;

    background:linear-gradient(135deg,#213166,#0b1b45);

    position:relative;

    overflow:hidden;

}

/* Background Pattern */

.achievement-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,193,7,.08);

    border-radius:50%;

    top:-180px;
    left:-150px;

    filter:blur(60px);

}

.achievement-section::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    bottom:-150px;
    right:-120px;

}

/* Heading */

.achievement-heading{

    max-width:720px;

    margin:auto;

    margin-bottom:70px;

    color:#fff;

    position:relative;

    z-index:2;

}

.achievement-heading .sub-title{

    color:#FFC107;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.achievement-heading h2{

    font-size:46px;

    font-weight:800;

    margin:20px 0;

}

.achievement-heading h2 span{

    color:#FFC107;

}

.achievement-heading p{

    color:#ddd;

    line-height:1.8;

}

/* Wrapper */

.achievement-wrapper{

    gap:30px;

    position:relative;

    z-index:2;

}

/* Card */

.achievement-card{

    width:260px;

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    transition:.4s;

}

.achievement-card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.12);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

/* Icon */

.achievement-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFC107;

    color:#213166;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    transition:.4s;

}

.achievement-card:hover .achievement-icon{

    transform:rotateY(180deg);

}

/* Counter */

.counter{

    font-size:48px;

    color:#fff;

    font-weight:800;

    margin-bottom:10px;

}

.counter::after{

    content:"+";

    color:#FFC107;

}

/* Title */

.achievement-card h5{

    color:#fff;

    font-weight:600;

}

/* Responsive */

@media(max-width:992px){

.achievement-heading h2{

    font-size:38px;

}

.achievement-card{

    width:45%;

}

}

@media(max-width:768px){

.achievement-section{

    padding:70px 0;

}

.achievement-heading{

    margin-bottom:45px;

}

.achievement-heading h2{

    font-size:30px;

}

.achievement-card{

    width:100%;

    max-width:380px;

}

}

@media(max-width:576px){

.achievement-heading h2{

    font-size:26px;

}

.counter{

    font-size:38px;

}

.achievement-icon{

    width:75px;

    height:75px;

    font-size:32px;

}

}
/*====================================
        TESTIMONIALS
====================================*/

.testimonial-section{

    padding:100px 0;

    background:#f8fbff;

}

.testimonial-section .section-title{

    max-width:700px;

    margin:auto;

    margin-bottom:60px;

}

.testimonial-section span{

    color:#FFC107;

    font-weight:700;

}

.testimonial-section h2{

    font-size:45px;

    font-weight:800;

    color:#213166;

}

.testimonial-section h2 span{

    color:#FFC107;

}

.testimonial-section p{

    color:#666;

}

/* Card */

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.testimonial-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #FFC107;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#213166;

    font-weight:700;

}

.testimonial-card small{

    color:#888;

}

.stars{

    color:#FFC107;

    font-size:20px;

    margin:15px 0;

}

.testimonial-card p{

    line-height:1.8;

}

/* Swiper */

.swiper{

    padding-bottom:60px;

}

.swiper-pagination-bullet{

    background:#213166;

    opacity:.3;

}

.swiper-pagination-bullet-active{

    background:#FFC107;

    opacity:1;

}

/* Responsive */

@media(max-width:992px){

.testimonial-section h2{

    font-size:38px;

}

}

@media(max-width:768px){

.testimonial-section{

    padding:70px 0;

}

.testimonial-section h2{

    font-size:30px;

}

}

@media(max-width:576px){

.testimonial-section h2{

    font-size:26px;

}

.testimonial-card{

    padding:30px 20px;

}

}
/*====================================
            BLOG SECTION
====================================*/

.blog-section{

    padding:100px 0;

    background:#ffffff;

}

.blog-wrapper{

    gap:35px;

}

/* Card */

.blog-card{

    width:370px;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.blog-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/* Image */

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.6s;

}

.blog-card:hover img{

    transform:scale(1.12);

}

/* Category */

.blog-category{

    position:absolute;

    top:20px;

    left:20px;

    background:#FFC107;

    color:#213166;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

/* Content */

.blog-content{

    padding:28px;

}

/* Meta */

.blog-meta{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:10px;

    font-size:14px;

    color:#777;

    margin-bottom:18px;

}

.blog-meta i{

    color:#FFC107;

}

/* Heading */

.blog-content h4{

    color:#213166;

    font-size:24px;

    font-weight:700;

    line-height:1.4;

    margin-bottom:15px;

    transition:.3s;

}

.blog-card:hover h4{

    color:#0d6efd;

}

/* Description */

.blog-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

}

/* Button */

.blog-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#213166;

    font-weight:700;

    transition:.35s;

}

.blog-btn:hover{

    color:#FFC107;

}

.blog-btn i{

    transition:.35s;

}

.blog-btn:hover i{

    transform:translateX(8px);

}

/* Responsive */

@media(max-width:992px){

.blog-card{

    width:340px;

}

}

@media(max-width:768px){

.blog-section{

    padding:70px 0;

}

.blog-card{

    width:100%;
    max-width:420px;

}

.blog-image img{

    height:220px;

}

}

@media(max-width:576px){

.blog-content{

    padding:22px;

}

.blog-content h4{

    font-size:21px;

}

.blog-content p{

    font-size:15px;

}

.blog-meta{

    flex-direction:column;

    align-items:flex-start;

}

}
/*=====================================
        CALL TO ACTION
======================================*/

.cta-section{

    padding:100px 0;

    background:linear-gradient(135deg,#1b2f72,#213166,#0d47a1);

    position:relative;

    overflow:hidden;

}

/* Decorative Circles */

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,193,7,.12);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(40px);

    animation:floatCircle 8s ease-in-out infinite;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;
    right:-100px;

    animation:floatCircle 10s ease-in-out infinite;

}

/* Glass Box */

.cta-box{

    max-width:900px;

    margin:auto;

    padding:60px;

    border-radius:25px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    position:relative;

    z-index:2;

}

/* Tag */

.cta-tag{

    background:#FFC107;

    color:#213166;

    padding:10px 24px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:25px;

}

/* Heading */

.cta-box h2{

    color:#fff;

    font-size:52px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:25px;

}

.cta-box h2 span{

    color:#FFC107;

}

/* Paragraph */

.cta-box p{

    color:#eee;

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:40px;

}

/* Buttons */

.cta-buttons{

    gap:20px;

}

.btn-primary-custom{

    background:#FFC107;

    color:#213166;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.btn-primary-custom:hover{

    background:#fff;

    color:#213166;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(255,193,7,.35);

}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.btn-outline-custom:hover{

    background:#fff;

    color:#213166;

    transform:translateY(-4px);

}

/* Floating Animation */

@keyframes floatCircle{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(30px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:992px){

.cta-box{

    padding:50px 35px;

}

.cta-box h2{

    font-size:40px;

}

}

@media(max-width:768px){

.cta-section{

    padding:70px 0;

}

.cta-box{

    padding:40px 25px;

}

.cta-box h2{

    font-size:32px;

}

.cta-box p{

    font-size:16px;

}

}

@media(max-width:576px){

.cta-box{

    padding:35px 20px;

}

.cta-box h2{

    font-size:26px;

}

.cta-box p{

    font-size:15px;

}

.cta-buttons{

    flex-direction:column;

    width:100%;

}

.btn-primary-custom,

.btn-outline-custom{

    width:100%;

    text-align:center;

}

}
/*==================================
            FOOTER
===================================*/

.footer{

    background:linear-gradient(135deg,#10275d,#213166,#0b1d48);

    color:#fff;

    position:relative;

}

/* Wave */

.footer-wave{

    line-height:0;

}

.footer-wave svg{

    width:100%;

    height:80px;

    display:block;

}

/* Wrapper */

.footer-wrapper{

    padding:80px 0 50px;

    gap:40px;

}

/* Boxes */

.footer-box{

    flex:1 1 250px;

}

/* Logo */

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-box p{

    color:#d7d7d7;

    line-height:1.9;

}

/* Heading */

.footer-box h4{

    color:#FFC107;

    margin-bottom:25px;

    font-weight:700;

    position:relative;

}

.footer-box h4::after{

    content:"";

    width:45px;

    height:3px;

    background:#FFC107;

    display:block;

    margin-top:8px;

}

/* List */

.footer-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    text-decoration:none;

    color:#ddd;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#FFC107;

    padding-left:8px;

}

/* Contact */

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#ddd;

}

.contact-info i{

    color:#FFC107;

    font-size:18px;

    margin-top:3px;

}

/* Social */

.footer-social{

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.4s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#FFC107;

    color:#213166;

    transform:translateY(-6px);

}

/* Copyright */

.copyright{

    border-top:1px solid rgba(255,255,255,.12);

    padding:20px 0;

    background:rgba(0,0,0,.15);

}

.copyright p{

    margin:0;

    color:#ddd;

    font-size:15px;

}

/*==================================
        RESPONSIVE
===================================*/

@media(max-width:991px){

.footer-wrapper{

    justify-content:center;

}

.footer-box{

    flex:1 1 45%;

}

}

@media(max-width:768px){

.footer-wrapper{

    padding:60px 0 40px;

}

.footer-box{

    flex:1 1 100%;

    text-align:center;

}

.footer-box h4::after{

    margin:10px auto 0;

}

.contact-info li{

    justify-content:center;

    text-align:left;

}

.footer-social{

    justify-content:center;

}

.copyright-content{

    gap:10px;

    text-align:center;

}

}

@media(max-width:576px){

.footer-logo{

    width:150px;

}

.footer-box h4{

    font-size:20px;

}

.footer-box p,

.footer-box ul li,

.copyright p{

    font-size:14px;

}

.footer-social a{

    width:42px;

    height:42px;

}

}
/*=====================================
            LOGIN SECTION
======================================*/

.login-section{

    display:flex;

    min-height:100vh;

    background:#f5f8ff;

}

/*==============================
        LEFT SIDE
===============================*/

.login-left{

    flex:1;

    position:relative;

    background:url("images/login-bg.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    rgba(33,49,102,.88),
    rgba(18,39,88,.82));

}

.login-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

    max-width:550px;

    animation:fadeLeft 1s ease;

}

.login-logo{

    width:90px;

    margin-bottom:25px;

}

.login-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 25px;

    border-radius:30px;

    backdrop-filter:blur(10px);

    margin-bottom:20px;

    color:#FFC107;

    font-weight:600;

}

.login-content h1{

    font-size:52px;

    font-weight:800;

    margin-bottom:20px;

}

.login-content h1 span{

    color:#FFC107;

}

.login-content p{

    font-size:18px;

    line-height:1.9;

    color:#eee;

}

/*==============================
        RIGHT SIDE
===============================*/

.login-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

}

/* Card */

.login-card{

    width:100%;

    max-width:450px;

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    animation:fadeRight 1s ease;

}

.login-card h2{

    color:#213166;

    font-weight:700;

    text-align:center;

}

.login-card p{

    color:#777;

    text-align:center;

    margin-bottom:30px;

}

/* Input */

.input-box{

    position:relative;

    margin-bottom:20px;

}

.input-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#213166;

    font-size:18px;

}

.input-box .form-control{

    height:55px;

    padding-left:50px;

    border-radius:12px;

    border:1px solid #ddd;

    transition:.3s;

}

.input-box .form-control:focus{

    border-color:#213166;

    box-shadow:0 0 0 .2rem rgba(33,49,102,.15);

}

/* Option */

.login-option{

    margin-bottom:25px;

    font-size:15px;

}

.login-option a{

    text-decoration:none;

    color:#213166;

    font-weight:600;

}

/* Button */

.btn-login{

    width:100%;

    height:55px;

    border:none;

    border-radius:50px;

    background:#213166;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.4s;

}

.btn-login:hover{

    background:#FFC107;

    color:#213166;

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(255,193,7,.35);

}

/* Register */

.register-link{

    text-align:center;

    margin-top:30px;

}

.register-link a{

    color:#213166;

    text-decoration:none;

    font-weight:700;

}

/*=====================================
        ANIMATIONS
======================================*/

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.login-section{

    flex-direction:column;

}

.login-left{

    min-height:350px;

}

.login-content h1{

    font-size:38px;

}

.login-right{

    padding:40px 20px;

}

}

@media(max-width:768px){

.login-left{

    min-height:300px;

    padding:40px 20px;

}

.login-card{

    padding:35px 25px;

}

.login-content h1{

    font-size:32px;

}

.login-content p{

    font-size:16px;

}

}

@media(max-width:576px){

.login-left{

    display:none;

}

.login-right{

    min-height:100vh;

    padding:20px;

}

.login-card{

    padding:30px 20px;

    border-radius:15px;

}

.login-card h2{

    font-size:28px;

}

.login-option{

    flex-direction:column;

    gap:10px;

}

}
/*=====================================
            ABOUT US
======================================*/

.about-section{

    background:#f8fbff;

    overflow:hidden;

}

.about-image{

    position:relative;

    text-align:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.experience-box{

    position:absolute;

    bottom:25px;

    right:25px;

    background:#213166;

    color:#fff;

    padding:20px 25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    animation:float 3s ease-in-out infinite;

}

.experience-box h2{

    color:#FFC107;

    font-size:36px;

    font-weight:700;

    margin-bottom:5px;

}

.experience-box span{

    font-size:15px;

}

.about-content{

    padding-left:25px;

}

.section-tag{

    display:inline-block;

    background:#e9f1ff;

    color:#213166;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    font-weight:700;

    color:#213166;

    margin-bottom:20px;

}

.about-content h2 span{

    color:#FFC107;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

    text-align:justify;

}

.about-features{

    margin:30px 0;

}

.feature-item{

    display:flex;

    align-items:center;

    margin-bottom:15px;

}

.feature-item i{

    color:#FFC107;

    font-size:22px;

    margin-right:15px;

}

.feature-item span{

    color:#213166;

    font-weight:600;

}

.btn-about{

    display:inline-block;

    padding:14px 40px;

    background:#213166;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-about:hover{

    background:#FFC107;

    color:#213166;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(255,193,7,.35);

}

/* Floating Animation */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================
        Responsive
===============================*/

@media(max-width:991px){

.about-content{

    padding-left:0;

    text-align:center;

}

.about-content p{

    text-align:center;

}

.feature-item{

    justify-content:center;

}

.experience-box{

    right:15px;

    bottom:15px;

    padding:15px 20px;

}

.about-content h2{

    font-size:34px;

}

}

@media(max-width:768px){

.about-content h2{

    font-size:30px;

}

.about-content p{

    font-size:15px;

}

.experience-box{

    position:static;

    margin-top:20px;

    display:inline-block;

}

}

@media(max-width:576px){

.about-content h2{

    font-size:26px;

}

.section-tag{

    font-size:14px;

}

.btn-about{

    width:100%;

    text-align:center;

}

}
/*=====================================
        DIRECTOR SECTION
======================================*/

.director-section{

    background:#f8fbff;

}

.director-image{

    position:relative;

    text-align:center;

}

.director-image img{

    border-radius:20px;

    width:100%;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.5s;

}

.director-image img:hover{

    transform:scale(1.03);

}

.director-badge{

    position:absolute;

    bottom:20px;

    right:20px;

    background:#213166;

    color:#fff;

    padding:20px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.director-badge h5{

    color:#FFC107;

    font-size:34px;

    margin:0;

    font-weight:700;

}

.director-content h2{

    color:#213166;

    font-weight:700;

    margin:15px 0;

}

.director-content h3{

    color:#FFC107;

    font-weight:700;

    margin-bottom:10px;

}

.qualification{

    background:#eef4ff;

    border-left:5px solid #FFC107;

    padding:15px;

    border-radius:10px;

    color:#213166;

    font-weight:600;

    margin-bottom:25px;

}

.director-content p{

    color:#666;

    line-height:1.9;

    text-align:justify;

}

.expert-box{

    background:#fff;

    padding:15px;

    margin-bottom:15px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    font-weight:600;

}

.expert-box:hover{

    transform:translateY(-5px);

}

.expert-box i{

    color:#FFC107;

    margin-right:10px;

}

.vision-box{

    background:#213166;

    color:#fff;

    padding:25px;

    border-radius:15px;

}

.vision-box h5{

    color:#FFC107;

    margin-bottom:15px;

}

.vision-box p{

    color:#fff;

    margin:0;

    text-align:justify;

}

/* Responsive */

@media(max-width:991px){

.director-content{

text-align:center;

}

.director-content p{

text-align:center;

}

.director-badge{

position:static;

margin-top:20px;

display:inline-block;

}

}

@media(max-width:576px){

.director-content h2{

font-size:30px;

}

.director-content h3{

font-size:24px;

}

.qualification{

font-size:14px;

}

}
/*=====================================
      ANNOUNCEMENT BAR
======================================*/

.announcement-section{

    background:#213166;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.announcement-bar{

    display:flex;

    align-items:center;

    min-height:60px;

}

.announcement-label{

    background:#FFC107;

    color:#213166;

    padding:18px 25px;

    font-weight:700;

    display:flex;

    align-items:center;

    white-space:nowrap;

}

.announcement-label i{

    margin-right:10px;

    font-size:20px;

    animation:blink 1s infinite;

}

.announcement-text{

    flex:1;

    overflow:hidden;

    white-space:nowrap;

}

.scroll-text{

    display:inline-block;

    color:#fff;

    font-size:17px;

    font-weight:600;

    padding-left:100%;

    animation:marquee 18s linear infinite;

}

.scroll-text span{

    color:#FFC107;

    font-weight:700;

}

.announcement-btn{

    background:#fff;

    color:#213166;

    text-decoration:none;

    font-weight:700;

    padding:10px 28px;

    margin-right:15px;

    border-radius:40px;

    transition:.3s;

}

.announcement-btn:hover{

    background:#FFC107;

    color:#213166;

    transform:translateY(-3px);

}

/* Marquee Animation */

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-100%);

    }

}

/* Blink */

@keyframes blink{

    0%,100%{

        opacity:1;

    }

    50%{

        opacity:.3;

    }

}

/* Responsive */

@media(max-width:768px){

.announcement-bar{

    flex-direction:column;

    padding:10px 0;

}

.announcement-label{

    width:100%;

    justify-content:center;

    padding:12px;

}

.announcement-text{

    width:100%;

    padding:10px 0;

}

.scroll-text{

    font-size:15px;

}

.announcement-btn{

    margin:10px 0 15px;

}

}
/*=====================================
        PRICING SECTION
======================================*/

.pricing-section{

    background:#f7f9ff;

}

.section-tag{

    display:inline-block;

    background:#213166;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:15px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#213166;

}

.section-title span{

    color:#FFC107;

}

.section-subtitle{

    color:#666;

    max-width:650px;

    margin:auto;

}

.price-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.price-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(33,49,102,.20);

}

.plan-name{

    font-size:22px;

    font-weight:700;

    color:#213166;

}

.price-card h2{

    font-size:55px;

    font-weight:800;

    color:#FFC107;

    margin:20px 0 10px;

}

.price-card p{

    color:#777;

}

.price-card ul{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.price-card ul li{

    margin:12px 0;

    color:#444;

    text-align:left;

}

.price-card ul li i{

    color:#28a745;

    margin-right:10px;

}

.price-card .btn{

    width:100%;

    border-radius:50px;

    padding:12px;

    font-weight:600;

}

.popular{

    border:3px solid #FFC107;

    transform:scale(1.05);

}

.popular:hover{

    transform:scale(1.08);

}

.popular-tag{

    position:absolute;

    top:18px;

    right:-40px;

    width:170px;

    background:#FFC107;

    color:#213166;

    font-weight:700;

    transform:rotate(45deg);

    padding:6px;

    font-size:13px;

}

/* Mobile */

@media(max-width:991px){

    .popular{

        transform:none;

    }

}

@media(max-width:768px){

    .section-title{

        font-size:32px;

    }

}

@media(max-width:576px){

    .section-title{

        font-size:28px;

    }

    .price-card{

        padding:30px 20px;

    }

    .price-card h2{

        font-size:42px;

    }

}