@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #234982;
    --primary-dark: #234982;
    --primary-light: #e9f2fe;
    --primary-gradiant: ;
    --secondry: #82BB84;
    --secondry-dark: #619f63;
    --secondry-light: #b9e9bb;
    --second-primary-light: #c1d0ed;
    --light-green: #45c73e;
    --dark-green: #21831b;
    --color-black: #000;
    --color-white: #fff;
    --light-gray: #c6c6c6;
    --text-gray: #828282;
    --bg-light: #f7f7f7;
    --gray: #e0e0e0;
    --how-bg-1: #f7f7f7;
    --how-bg-2: #efefef;
    --how-bg-3: #e8e8e8;
    --how-bg-4: #e1e1e1;
    --how-bg-5: #dadada;
    --font-main: "Poppins", sans-serif;
    /* --font-main: "Montserrat", sans-serif; */
    --font-sub: "Google Sans Flex", sans-serif;
    --font-des: "Dancing Script", cursive;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body,
p,
span,
li,
td,
th {
    font-family: var(--font-sub);
    font-weight: 400;
    color: var(--color-black);


}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 600;

}

button,
a {
    font-family: var(--font-main) !important;
    font-weight: 500;
}

body {
    line-height: 1.7 !important;
}




.baner-main-img {
    width: 100%;
    background-color: var(--primary);
    /* height: calc(100vh - 130px); */
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;

}

.baner-caption-card {
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.baner-caption-card h1 {
    font-size: 55px;
    color: var(--color-white);
    line-height: 65px;
    font-weight: 500;
    margin-bottom: 15px;

}

.baner-caption-card p {
    font-size: 20px;
    color: var(--color-white);
}

.baner-caption-card h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-sub);
    text-align: center;
}
.baner-caption-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 45px;
    background: linear-gradient(135deg, #234982, #3b66b1);
    color: #fff;
    text-decoration: none;
    border-radius:7px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(35, 73, 130, 0.3);
}

.baner-caption-card a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-30deg);
    transition: 0.6s;
}

.baner-caption-card a:hover::before {
    left: 120%;
}

.baner-caption-card a:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(35, 73, 130, 0.45);
    border-radius: 40px;
}

.nav-logos{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logos a:first-child img{
    width: 200px;
}
.nav-logos img{
    width: 150px;
}
.header nav{
    padding: 0 !important;
}
.navbar-menu-list li{
    margin-left: 15px !important;
}
.navbar-menu-list li a{
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    position: relative;
}

/* .navbar-menu-list li a.nav-top-btn{
    width: 130px;
    height: 43px;
    background-color: var(--primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 15px;
    border-radius: 40px;
    position: unset !important;
} */

.navbar-menu-list li a::before{
    width: 0%;
    height: 1px;
    background-color: var(--primary);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
}
.navbar-menu-list li a:hover{
    color: var(--primary);
}
.navbar-menu-list li a:hover::before{
    width: 100%;
    transition: 0.5s;
}


.navbar-menu-list li a.nav-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    background: linear-gradient(135deg, #234982, #3b66b1);
    color: #fff;
    text-decoration: none;
    border-radius:7px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.navbar-menu-list li a.nav-top-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-30deg);
    transition: 0.6s;
}

.navbar-menu-list li a.nav-top-btn:hover::before {
    left: 120%;
}

.navbar-menu-list li a.nav-top-btn:hover {
    border-radius: 40px;
}


.home-about-section{
    position: relative;
    overflow: hidden;
    background:#fff;
}

.home-about-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#234982;
    font-weight:600;
    margin-bottom:10px;
}

.home-about-subtitle i{
    font-size:20px;
}

.home-about-title{
    font-size:33px;
    font-weight:600;
    color:#1d1d1d;
    margin-bottom:15px;
}

.home-about-content p{
    color:#504f4f;
    font-size: 15px;
    margin-bottom: 10px;
    text-align: justify;
}

.home-about-image-wrapper{
    position:relative;
}

.home-about-image-wrapper img{
    position:relative;
    z-index:2;
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.home-about-image-wrapper img.img2{
    width: 80%;
    height: 300px;
    margin-left: auto;
    display: flex;
    margin-top: -130px;
    border: 5px solid var(--color-white);
    margin-right: 15px;
}
.home-about-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.home-about-shape-one{
    width:180px;
    height:180px;
    background:#234982;
    opacity:.08;
    top:-30px;
    left:-30px;
}

.home-about-shape-two{
    width:120px;
    height:120px;
    background:#f4b400;
    opacity:.18;
    bottom:-20px;
    right:-20px;
}

.home-about-floating-card{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:#fff;
    padding:15px 20px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    z-index:5;
    font-weight:600;
}

.home-about-floating-card i{
    color:#234982;
    font-size:24px;
}

.home-about-info-card{
    display:flex;
    gap:18px;
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition:.35s;
    height:100%;
    border: 1px solid #cccccc5c;
}

.home-about-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(35,73,130,.15);
}

.home-about-icon{
    width:55px;
    height:55px;
    background:#dce7f8;
    color:#234982;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    font-size:22px;
    flex-shrink:0;
}

.home-about-info-card h5{
    font-weight:600;
    font-size: 20px;
    margin-bottom:5px;
}

.home-about-info-card p{
    margin:0;
    color:#504f4f;
    margin: 0;
    text-align: left;
}

.section-padding{
    padding: 50px 0;
}
.section-title{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title h2{
    font-size: 28px;
}

.offred-courses-widget{
    position: relative;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg,#ffffff,#f8faff);
    border: 1px solid rgba(35,73,130,.08);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    transition: .4s ease;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}



.offred-courses-widget::after{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(35,73,130,.05);
}

.offred-courses-widget:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(35,73,130,.18);
}

.offred-courses-icon{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg,#234982,#3b66b1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:35px;
    margin-bottom: 10px;
}

.offred-courses-tag{
    display: inline-block;
    padding: 6px 14px;
    background: rgba(35,73,130,.08);
    color: #234982;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.offred-courses-content h3{
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
    line-height: 27px;
}

.offred-courses-content p{
    color: #4e4d4d;
    margin-bottom: 0;
    font-size: 15.5px;
}

.offred-courses-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #234982;
    font-weight: 600;
    transition: .3s;
}

.offred-courses-btn i{
    transition: .3s;
}

.offred-courses-btn:hover{
    color: #1b3b6f;
}

.offred-courses-btn:hover i{
    transform: translateX(6px);
}

.home-highlights-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.home-highlights-image{
    position:relative;
}

.home-highlights-image img{
    border-radius:25px;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.home-highlights-circle{
    width:180px;
    height:180px;
    background:#234982;
    opacity:.08;
    border-radius:50%;
    position:absolute;
    top:-40px;
    left:-40px;
}

.home-highlights-experience{
    position:absolute;
    bottom:30px;
    right:-10px;
    background:#234982;
    color:#fff;
    padding:18px 24px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(35,73,130,.35);
}

.home-highlights-experience i{
    font-size:34px;
}

.home-highlights-experience h4{
    margin:0;
    font-size:20px;
    font-weight:600;
}

.home-highlights-experience span{
    font-size:14px;
    opacity:.9;
    color: var(--color-white);
}

.home-highlights-subtitle{
    display:inline-block;
    color:#234982;
    font-weight:600;
    margin-bottom:6px;
}
.home-highlights-content{
    padding-left: 10px;
}
.home-highlights-content h2{
    font-size:35px;
    font-weight:600;
    margin-bottom:10px;
}

.home-highlights-content p{
    color:#4e4e4e;
    margin-bottom:15px;
}

.home-highlights-list{
    list-style:none;
    padding:0;
    margin:0;
}

.home-highlights-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
    font-weight:400;
    color:#2f2f2f;
    background-color: #fbfbfb;
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
}

.home-highlights-list i{
    color:#21831b;
    font-size:18px;
    margin-top:3px;
}
.features-carousel .item{
    padding: 2px;
}
/* .features-widget{
    position: relative;
    margin-top: 40px;
    
}

.features-widget-body{
    position: relative;
    background: #fff;
    padding: 55px 25px 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    overflow: hidden;
    transition: .4s;
    min-height: 200px;
}

.features-widget-body::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height:5px;
    background: linear-gradient(90deg,#234982,#4f7dd6);
}

.features-widget:hover .features-widget-body{
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(35,73,130,.15);
}

.features-widget-icon{
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg,#234982,#3b66b1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 5px solid #fff;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    z-index: 2;
}

.features-widget-tag{
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    background: #eef3fc;
    color: #234982;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-widget-body h3{
    font-size:21px;
    font-weight:600;
    margin-bottom: 10px;
    color: #222;
}

.features-widget-body p{
    color: #4b4b4b;
    font-size: 15px;
    margin-bottom: 0;
} */

.features-widget{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.features-widget::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #0d6efd;
    transform: scaleY(0);
    transform-origin: top;
    transition: .35s;
}

.features-widget:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.features-widget:hover::before{
    transform: scaleY(1);
}

.features-widget-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.features-widget-icon i{
    font-size: 28px;
    color: #1b3b6f;
    transition: .35s;
}

.features-widget:hover .features-widget-icon{
    background: var(--primary);
    transform: rotate(-8deg);
}

.features-widget:hover .features-widget-icon i{
    color: #fff;
}

.features-widget-body h3{
    font-size: 17px;
    font-weight:600;
    color: #222;
    margin-bottom: 5px;
}

.features-widget-body p{
    margin: 0;
    color: #6c757d;
    font-size: 15px;
}

@media (max-width: 576px){

    .features-widget{
        padding: 20px;
        gap: 15px;
    }

    .features-widget-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .features-widget-icon i{
        font-size: 24px;
    }

    .features-widget-body h3{
        font-size: 18px;
    }

}


.home-update-content{
    display: flex;
    align-items: center;
    gap: 20px;
    padding:15px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    transition: all .35s ease;
    overflow: hidden;
    height: 100%;
    padding-right: 25px;
}

.home-update-content:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(35,73,130,.15);
}

.home-update-content img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.home-update-content div{
    flex: 1;
}

.home-update-content h4{
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.home-update-content p{
    margin: 0;
    color: #474646;
}



.footer-section {
    background-color: #092249;
    /* padding-bottom: 50px; */
}

.footer-top-section {
    background-color: #633c08;
    height: 350px;
    width: 100%;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top-section img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer-top-section h1 {
    position: absolute;
    bottom: -15%;
    width: fit-content !important;
    font-size: 18vw;
    margin: 0;
    font-weight: 600;
    color: #6f4916;
    white-space: nowrap;
    width: 100%;
}

.footer-top-section-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 300px;
}

.footer-top-section-info h3 {
    color: var(--color-white);
    font-size: 35px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 45px;
    text-transform: capitalize;
}

.footer-top-section-info a {
    background-color: var(--color-white);
    padding: 7px 15px;
    border-radius: 40px;
    color: var(--color-black);
    text-decoration: none;
    font-size: 23px;
    position: relative;
    z-index: 1;

}

.footer-top-section-info a:hover {
    background-color: var(--primary);
    color: var(--color-white);
}

.footer-widget img {
    width: 220px;
}

.footer-widget p {
    color: var(--color-white);
    font-size: 14px;
    margin-top: 10px;
    line-height: 25px;
    padding-right: 25px;
}

.footer-bottom-container {
    padding-top: 20px;
}

.footer-link-widget {
    padding: 10px;
    border-right: 1px solid var(--footer-border);
    padding-top: 0;
    margin-top: 20px;
    padding-bottom: 0;
}

.footer-link-widget h3 {
    font-weight: 600;
    color: var(--color-white);
    font-size: 18px;
}

.footer-link-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 20px;
}

.footer-link-widget ul li {
    margin: 10px 0;
}

.footer-link-widget ul li a {
    color: var(--how-bg-3);
    font-size: 14px;
    text-decoration: none;
    transition: 0.5s;
    display: flex;
    font-weight: 400 !important;
}

.footer-link-widget ul li a:hover {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.footer-link-widget ul li a i {
    margin-right: 10px;
}


.footer-icon-link h3 {
    font-weight: 600;
    color: var(--color-white);
    font-size: 23px;
    text-transform: none;
}

.footer-icon-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.footer-icon-link ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    transition: 0.5s;
}

.footer-icon-link ul li a i {
    margin: 0;
}

.footer-icon-link ul li a:hover {
    background-color: var(--primary);
    color: var(--color-white);
    /* margin-top: -10px; */
}

.copy-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px !important;
    border-top: 1px solid #ccc;
    padding-bottom: 10px;
}

.copy-right p {
    font-weight: 400;
    color: #ccc;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.copy-right p a {
    color: #ccc;
    text-decoration: none;
}

.copy-right p a:hover {
    color: var(--primary);
}
.ft-inner-logo{
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
}
.footer-widget-logo a{
    margin-bottom: 0;
   width: 200px;
   height: 90px;
   background-color: #fff;
   border-radius: 5px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.footer-widget-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.ps-footer{
    padding-left: 0 !important;
    margin-left: -50px;
}
.ps-footer li{
    min-width: 300px;
}


.home-newsletter-section{
    padding:50px 0;
    background:#f7f9fc;
}

.home-newsletter-wrapper{
    position:relative;
    overflow:hidden;
    padding:40px;
    border-radius:30px;
    background:linear-gradient(135deg,#234982,#3968b5);
    box-shadow:0 25px 70px rgba(35,73,130,.25);
}

.home-newsletter-wrapper::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.home-newsletter-wrapper::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-80px;
    bottom:-80px;
}

.home-newsletter-content{
    position:relative;
    z-index:2;
}

.home-newsletter-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(8px);
    font-weight:500;
}

.home-newsletter-tag i{
    font-size:18px;
}

.home-newsletter-content h2{
    color:#fff;
    font-size:35px;
    font-weight:600;
    margin:10px 0;
}

.home-newsletter-content p{
    color:rgba(255,255,255,.9);
    margin:0;
    font-size: 15px;
}

.home-newsletter-form{
    position:relative;
    z-index:2;
}

.home-newsletter-input{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:60px;
    padding:8px 10px 8px 20px;
    margin-bottom:18px;
    height: 60px;
}

.home-newsletter-input i{
    color:#234982;
    font-size:20px;
    margin-right:15px;
}

.home-newsletter-input input{
    flex:1;
    border:none;
    outline:none;
    font-size:16px;
    background:transparent;
}

.home-newsletter-form button{
    width:100%;
    border:none;
    border-radius:60px;
    background:#fff;
    color:#234982;
    padding:15px 15px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.home-newsletter-form button i{
    margin-left:8px;
}

.home-newsletter-form button:hover{
    background:#0d1f43;
    color:#fff;
    transform:translateY(-3px);
}

.home-newsletter-shape{
    position:absolute;
    border-radius:50%;
}

.home-newsletter-shape.one{
    width:90px;
    height:90px;
    background:#f4b400;
    opacity:.18;
    top:40px;
    left:45%;
}

.home-newsletter-shape.two{
    width:60px;
    height:60px;
    background:#fff;
    opacity:.12;
    bottom:35px;
    right:120px;
}


.pages-baner{
    position: relative;
    overflow: hidden;
   height: 40vh;
   display: flex;
   justify-content: center;
   align-items: center;
    
    text-align: center;
    z-index: 1;
}

/* Grid Pattern */
.pages-baner::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

/* Big Circle */
.pages-baner::after{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    top: -180px;
    right: -120px;
    animation: floatShape 8s ease-in-out infinite;
    z-index: -1;
}

.pages-baner h2{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    position: relative;
}

.pages-baner h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #3968b5;
    display: block;
    margin: 18px auto 0;
    border-radius: 20px;
}

.pages-baner p{
    color: rgba(255,255,255,.85);
    font-size: 18px;
    margin: auto;
}
.home-banner-shape{
    position:absolute;
    border-radius:50%;
    animation:floatShape 6s ease-in-out infinite;
}

.shape-one{
    width:90px;
    height:90px;
    background:rgba(255,255,255,.12);
    left:8%;
    top:25%;
}

.shape-two{
    width:35px;
    height:35px;
    background:#3968b5;
    right:18%;
    top:28%;
    animation-duration:5s;
}

.shape-three{
    width:150px;
    height:150px;
    border:2px dashed rgba(255,255,255,.25);
    right:8%;
    bottom:12%;
    background:transparent;
    animation:rotateShape 25s linear infinite;
}

@keyframes floatShape{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes rotateShape{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}



.home-second-baner-img {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-second-baner-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.home-baner-2-search {
    width: 120% !important;
    top: 50%;
    left: 10%;
    background-color: var(--color-white);
    padding: 30px;
    position: absolute;
    width: 100%;
    border-left: 10px solid var(--second-primary-light);
    border-right: 10px solid var(--second-primary-light);
    background-color: var(--color-white);
    position: relative;
    z-index: 555;
    transform: translate(-35%,-50%);
}


.home-search-secondry-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}



.home-baner-2-search a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 45px;
    background: linear-gradient(135deg, #234982, #3b66b1);
    color: #fff;
    text-decoration: none;
    border-radius:7px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(35, 73, 130, 0.3);
}

.home-baner-2-search a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-30deg);
    transition: 0.6s;
}

.home-baner-2-search a:hover::before {
    left: 120%;
}

.home-baner-2-search a:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(35, 73, 130, 0.45);
    border-radius: 40px;
}

.about-showcase-section{
    padding:50px 0;
}

/* .about-showcase-box{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
} */

.about-showcase-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 20px;
    background:#eef5ff;
    color:#0d6efd;
    border-radius:40px;
    font-weight:500;
    margin-bottom:10px;
    font-size: 15px;
}

.about-showcase-content h2{
    font-size:35px;
    font-weight:600;
    margin-bottom:10px;
}

.about-showcase-content p{
    color:#363636;
    font-size: 15.5px;
}

.about-feature-list{
    margin-top:40px;
}

.about-feature-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.about-feature-item i{
    width:50px;
    height:50px;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
    flex-shrink:0;
}

.about-feature-item h5{
    margin-bottom:6px;
}

.about-gallery-wrap{
    position:relative;
    min-height:520px;
}

.gallery-image{
    overflow:hidden;
    border-radius:25px;
}

.gallery-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.gallery-image.large{
    width:75%;
}

.gallery-image.small{
    width:55%;
    position:absolute;
    right:0;
    bottom:0;
    border:8px solid #fff;
}

.experience-badge{
    position:absolute;
    left:-20px;
    top:40px;
    background:#1b3b6f;
    color:#fff;
    padding:20px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(13,110,253,.35);
}

.experience-badge h3{
    font-size:30px;
    margin-bottom:0;
}
.experience-badge span{
    color: #fff;
}
.vision-card{
    background:#edf2f6;
    padding:35px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.3s;
   /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.vision-card:hover{
    transform:translateY(-8px);
}

.vision-card .icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.vision-card p{
    color:#363636;
    margin:0;
    font-size: 15.5px;
}


.about-page-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.about-page-tag{
    display:inline-block;
    padding:8px 22px;
    border-radius:40px;
    background:#edf3ff;
    color:#234982;
    font-weight:600;
    margin-bottom:20px;
}

.about-page-content h2{
    font-size:30px;
    font-weight:600;
    line-height:1.35;
    margin-bottom:10px;
    color:#222;
}

.about-page-content p{
    color:#222;
    margin-bottom:18px;
    font-size: 15.5px;
}

.about-page-card{
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:20px;
    padding:20px;
    margin-top:0px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.about-page-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:#23498210;
    right:-40px;
    top:-40px;
}

.about-page-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(35,73,130,.12);
}

.about-page-card i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#234982,#4b7cd0);
    color:#fff;
    font-size:28px;
    margin-bottom:10px;
}

.about-page-card h4{
    font-size:22px;
    margin-bottom:10px;
    font-weight: 600;
}

.about-page-card p{
    margin:0;
    font-size: 15.5px;
}

.about-page-image{
    position:relative;
}

.about-page-image img{
    border-radius:20px;
    height: 600px;
    object-fit: cover;
}

.about-page-floating{
    position:absolute;
    left:-25px;
    bottom:35px;
    display:flex;
    align-items:center;
    gap:5px;
    padding:5px 15px;
    background:#234982;
    color:#fff;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(35,73,130,.30);
}

.about-page-floating i{
    font-size:32px;
}

.about-page-floating h3{
    margin:0;
    font-size:25px;
    font-weight:600;
}
.about-page-floating span{
    color: #fff;
    font-size: 15px;
}
.about-page-floating a{
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.about-page-floating:hover{
    border-radius: 40px;
    transition: 0.5s;
}
.about-page-pattern{
    width:170px;
    height:170px;
    position:absolute;
    right:-45px;
    top:-45px;
    border:3px dashed rgba(35,73,130,.2);
    border-radius:50%;
    animation:rotatePattern 18s linear infinite;
}

@keyframes rotatePattern{

from{
transform:rotate(0);
}

to{
transform:rotate(360deg);
}

}

@media(max-width:991px){

.about-page-content h2{
font-size:34px;
}

.about-page-floating{
left:15px;
bottom:15px;
}

}

.principal-note-section{
    background:#f8fafc;
}

.principal-note-wrapper{
    /* background:#fff; */
    border-radius:18px;
    /* padding:35px; */
    /* border:1px solid #edf1f6; */
   /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}

.principal-note-image img{
    width: 100%;
    border-radius:16px;
    object-fit:cover;
    height: 380px;
}

.principal-note-content{
    padding-left: 20px;
}

.principal-note-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 16px;
    background:#eef3fc;
    color:#234982;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    margin-bottom:10px;
}

.principal-note-label i{
    font-size:16px;
}

.principal-note-content h2{
    font-size:30px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
    line-height:1.4;
}

.principal-note-content p{
    font-size:15.5px;
    color:#343434;
    margin-bottom:8px;
}

.principal-note-footer{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:30px;
}

.principal-line{
    width:55px;
    height:3px;
    background:#234982;
}

.principal-note-footer h5{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#234982;
}

.principal-note-footer span{
    font-size:15px;
    color:#777;
}

.education-section{
    background:#051a3d;
}

.education-intro{
    position:sticky;
    top:70px;
}

.education-tag{
    display:inline-block;
    padding:7px 18px;
    border-radius:30px;
    background:#edf3ff;
    color:#234982;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.education-intro h2{
    font-size:34px;
    font-weight:600;
    color:#fff;
    margin-bottom:10px;
}

.education-intro p{
    color:#ccc;
    margin-bottom:8px;
    line-height: 30px;
    font-size: 16px;
}

.education-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    padding:14px 28px;
    background:#234982;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.education-btn:hover{
    background:#16366a;
    color:#fff;
}

.education-card{
    border-radius:18px;
    padding:30px;
    height:100%;
    transition:.35s;
    background: rgba(255, 255, 255, 0.321);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}

/* .education-card-top{
    margin-top:40px;
} */

.education-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(35,73,130,.10);
}

.education-icon{
    width:60px;
    height:60px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#21519a;
    color:#fff;
    font-size:26px;
    margin-bottom:20px;
}

.education-card h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    color: var(--color-white);
}

.education-card p{
    color:#f6f6f6;
    font-size: 15.5px;
    margin:0;
}

.education-highlight{
    background:#234982;
    color:#fff;
    border-radius:20px;
    padding:35px;
    display:flex;
    align-items:center;
    gap:25px;
}

.education-highlight h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:5px;
}

.education-highlight p{
    margin:0;
    color:rgba(255,255,255,.9);
    font-size: 15.5px;
}

.education-icon.large{
    width:80px;
    height:80px;
    font-size:34px;
    flex-shrink:0;
    background:#fff;
    color:#234982;
}


.choose-hevaco-area{
    background:#f5f8fc;
}

.choose-hevaco-wrapper{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
}

.choose-hevaco-image{
    height:100%;
    position:relative;
}

.choose-hevaco-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:550px;
}

.choose-hevaco-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(35,73,130,.88),rgba(35, 73, 130, 0.063));
}

.choose-hevaco-overlay{
    position:absolute;
    left:35px;
    bottom:35px;
    color:#fff;
    z-index:2;
}

.choose-hevaco-overlay i{
    font-size:42px;
    margin-bottom:18px;
    display:block;
}

.choose-hevaco-overlay h3{
    font-size:28px;
    font-weight:500;
    margin-bottom:6px;
}

.choose-hevaco-overlay span{
    opacity:.9;
}

.choose-hevaco-content{
    padding:55px;
}

.choose-hevaco-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#edf3ff;
    color:#234982;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.choose-hevaco-content h2{
    font-size:34px;
    font-weight:600;
    margin:20px 0 35px;
}

.choose-hevaco-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:23px 30px;
}

.choose-hevaco-list-item{
    display:flex;
    gap:14px;
    align-items:center;
    transition:.3s;
}


.choose-hevaco-list-item i{
    color:#15a72b;
    font-size:18px;
    margin-top:3px;
    min-width: 30px;
    height: 30px;
    border: 1px solid #15a72b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.choose-hevaco-list-item span{
    color:#383737;
    line-height:1.7;
    font-size:15px;
    font-weight: 500;
}

.core-values{
    position: relative;
    padding: 35px 25px;
    background: #ebedfa;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    z-index: 1;
    height: 100%;
}


/* Watermark Number */
.core-values span{
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 90px;
    font-weight: 800;
    color: #234982;
    opacity: .06;
    line-height: 1;
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.core-values h3{
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.core-values p{
    margin: 0;
    color: #383838;
    font-size: 15.7px;
}

.syllabus-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.syllabus-top h2{
    min-width: 35%;
    font-size: 25px;
    font-weight: 600;
    line-height: 38px;
}
.syllabus-top p{
    font-size: 15.7px;
    margin: 0;
    color: #4e4e4e;
}

.syllabus-top-img img{
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 20px;
}

.program-syllabus{
    /* background:#fff; */
    /* border-radius:24px; */
    /* padding:15px; */
    /* border:1px solid #edf2f7; */
    /* box-shadow:0 20px 50px rgba(0,0,0,.05); */
    position:relative;
    /* overflow:hidden; */
    margin-top: -200px;
}
/* 
.program-syllabus::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#234982;
}*/

.program-syllabus::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(35,73,130,.05);
    right:-80px;
    top:-80px;
} 

.program-syllabus-content{
    position:relative;
    z-index:2;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
}

.program-syllabus-tag{
    display:inline-block;
    padding:8px 18px;
    background:#edf3ff;
    color:#234982;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.program-syllabus-content h2{
    font-size:28px;
    font-weight:600;
    color:#222;
    margin-bottom:12px;
}

.program-syllabus-content h5{
    font-size:18px;
    color:#234982;
    font-weight:500;
    margin-bottom:10px;
}

.program-syllabus-content p{
    color:#383838;
    line-height:1.9;
    margin-bottom:7px;
}

.program-syllabus-card{
    background:#f8fbff;
    border-radius:20px;
    padding:30px;
    border:1px solid #e5edf8;
    position:relative;
    z-index:2;
}

.program-syllabus-card h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:10px;
    color:#222;
}

.program-syllabus-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.program-syllabus-card li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
    color:#555;
    line-height:1.6;
}

.program-syllabus-card li:last-child{
    margin-bottom:0;
}

.program-syllabus-card i{
    color:#234982;
    margin-top:3px;
    font-size:18px;
}

.bg-gradiant {
    background: radial-gradient(circle, #bed1ee5f 0%, rgba(255, 255, 255, 1) 100%);
}


.courses-widget{
    height:100%;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #edf2f7;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition:.35s;
}

.courses-widget:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(35,73,130,.12);
}

.courses-widget-image{
    overflow:hidden;
}

.courses-widget-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.5s;
}

.courses-widget:hover .courses-widget-image img{
    transform:scale(1.08);
}

.courses-widget-content{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:15px;
    position:relative;
}

.courses-widget-number{
    position:absolute;
    right:20px;
    top:18px;
    font-size:60px;
    font-weight:700;
    color:#234982;
    opacity:.06;
    line-height:1;
    pointer-events:none;
}

.courses-widget h6{
    font-size:14px;
    font-weight:600;
    color:#234982;
    margin-bottom:5px;
}

.courses-widget h3{
    font-size:20px;
    font-weight:600;
    color:#222;
    line-height:1.4;
    margin-bottom:8px;
}

.courses-widget p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.courses-widget-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#234982;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.courses-widget-btn i{
    transition:.3s;
}

.courses-widget-btn:hover{
    color:#16356b;
}

.courses-widget-btn:hover i{
    transform:translateX(6px);
}


.course-modal{
    border:none;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.course-modal-header{
    padding:25px;
    background:linear-gradient(135deg,#234982,#3b66b1);
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.course-modal-tag{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    font-size:13px;
    margin-bottom:10px;
    color: #fff;
}

.course-modal-header h2{
    font-size:23px;
    font-weight:500;
    margin-bottom:8px;
}

.course-modal-header p{
    margin:0;
    opacity:.9;
   
}

.course-modal-close{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.course-modal-close:hover{
    background:#fff;
    color:#234982;
}

.modal-body{
    padding:35px;
}

.course-modal-desc{
    line-height:1.9;
    margin-bottom:20px;
     font-size: 15.6px;
    color: #222;
}

.modal-body h5{
    font-size:18px;
    font-weight: 600;
    margin-bottom:10px;
    color:#073273;
}

.course-modal-list{
    list-style:none;
    padding:0;
    margin:0;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 15px;
}

.course-modal-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#555;
    margin-bottom: 10px;
}

.course-modal-list i{
    color:#234982;
    font-size:18px;
}

.course-modal-footer{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    padding:10px 15px;
    background:#f7f9fc;
    border-top:1px solid #edf2f7;
}

.course-btn-light,
.course-btn-primary{
    padding:7px 20px;
    border-radius:8px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
    font-size: 15px;
}

.course-btn-light{
    background:#fff;
    color:#444;
    border:1px solid #dfe5ef;
}

.course-btn-light:hover{
    background:#eceff4;
}

.course-btn-primary{
    background:#234982;
    color:#fff;
}

.course-btn-primary:hover{
    background:#17356b;
    color:#fff;
    border-radius: 40px;
}



.learning-method-card{
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:20px;
    border:1px solid #ccc;
    transition:.35s;
    position:relative;
    overflow:hidden;
}


.learning-method-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#edf3ff;
    color:#234982;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:15px;
}

.learning-method-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.learning-method-card p{
    color:#535353;
    margin-bottom:15px;
    font-size: 15.5px;
}

.learning-method-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.learning-method-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    color:#353535;
    line-height:1.6;
}

.learning-method-card ul li i{
    color:#518eea;
    margin-top:2px;
    font-size:18px;
}

.learning-method-note{
    margin-top:25px;
    padding:18px;
    background:#edf3ff;
    border-left:4px solid #234982;
    border-radius:10px;
    color:#555;
    line-height:1.7;
    font-size:15px;
}

.pdf-viewer{
    width: 100%;
    min-height: 600px;
}

.choose-hevaco-image-2 img{
    min-height: 350px;
}

.choose-hevaco-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(2 11 24 / 88%), rgba(35, 73, 130, 0.063));
}

.btns-ctas{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btns-ctas a{
    width: 48%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 7px;
    transition: 0.5s;
    position: relative;
    z-index: 55;
}
.btns-ctas a:hover{
    border-radius: 40px;
    background-color: #05255d;
    color: #fff;
}



.contact-section {
    padding: 50px 0;
}

.contact-top-widget {
    width: 100%;
    padding: 30px;
    padding-top: 8px;
    overflow: hidden;
    border-radius: 20px;
    height: 230px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    background-color: var(--color-white);
    transition: 0.5s;
}

.contact-top-widget i {
    font-size: 35px;
    color: var(--primary);
}

.contact-top-widget h4 {
    font-size: 18px;
    color: var(--primary);
    margin: 12px 0;
    text-transform: uppercase;

}

.contact-top-widget p {
    font-size: 15px;
    color: var(--primary);
    position: relative;
    z-index: 5;
    margin: 0;
}

.contact-top-widget i.contact-icon {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 100px;
    color: #bfc9d7  ;
}

.contact-up-container {
    max-width: 1300px;
    margin: auto;
    margin-top: -80px;
    position: relative;
    z-index: 2;

}

.contact-top-widget.call-us {
    background-color: var(--primary);
}

.contact-top-widget.call-us h4,
.contact-top-widget.call-us p,
.contact-top-widget.call-us i {
    color: var(--color-white);
}

.contact-top-widget.call-us i.contact-icon {
    color: var(--color-white);
}

.contact-top-widget:hover {
    margin-top: -20px;
    background-color: var(--primary);
}

.contact-top-widget:hover h4,
.contact-top-widget:hover p,
.contact-top-widget:hover i {
    color: var(--color-white);
}

.contact-top-widget:hover i.contact-icon {
    color:#011f4856;
}

.contact-form{
    background:#fff;
    padding:25px;
    border-radius:12px;
    border:1px solid #edf0f5;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-form-tag{
    display:inline-block;
    background:#edf3ff;
    color:#234982;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.contact-form h3{
    font-size:25px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.contact-form p{
    color:#474646;
    margin-bottom:15px;
    line-height:1.8;
}

.contact-enquiry-form label{
    font-weight:500;
    color:#333;
    margin-bottom:0;
    display:block;
    font-family: var(--font-main);
    font-size: 14px;
}

.contact-enquiry-form .form-control,
.contact-enquiry-form .form-select{
    height:50px;
    border:1px solid #dfe5ef;
    border-radius:12px;
    padding:0 18px;
    box-shadow:none;
    transition:.3s;
    font-family: var(--font-main);
    font-size: 14px;
}

.contact-enquiry-form textarea.form-control{
    height:150px;
    padding:15px 18px;
    resize:none;
    font-family: var(--font-main);
    font-size: 14px;
}

.contact-enquiry-form .form-control:focus,
.contact-enquiry-form .form-select:focus{
    border-color:#234982;
    box-shadow:0 0 0 .2rem rgba(35,73,130,.12);
}

.contact-submit-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:none;
    background:#234982;
    color:#fff;
    padding:10px 25px;
    border-radius:12px;
    font-weight:500;
    font-size: 14px;
    transition:.35s;
}

.contact-submit-btn:hover{
    background:#18386b;
    transform:translateY(-3px);
}

.contact-submit-btn i{
    font-size:18px;
}


.contact-map iframe{
    width: 100%;
    height: 450px;
    border-radius: 10px;
}


.faqAccordion .accordion-item{
    border:0;
    margin-bottom:10px;
    border-radius:16px !important;
    overflow:hidden;
    background:#fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.faqAccordion .accordion-button{
    background:#fff;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding:16px 25px;
    box-shadow:none;
    border-radius:16px !important;
}

.faqAccordion .accordion-button i{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:#edf3ff;
    color:#234982;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:16px;
    font-size:18px;
    transition:.35s;
}

.faqAccordion .accordion-button:not(.collapsed){
    background:#234982;
    color:#fff;
}

.faqAccordion .accordion-button:not(.collapsed) i{
    background:rgba(255,255,255,.18);
    color:#fff;
}

.faqAccordion .accordion-button:focus{
    box-shadow:none;
}

.faqAccordion .accordion-button::after{
    width:38px;
    height:38px;
    border-radius:50%;
    background-color:#edf3ff;
    background-position:center;
    background-size:16px;
}

.faqAccordion .accordion-button:not(.collapsed)::after{
    background-color:rgba(255,255,255,.18);
    filter:brightness(0) invert(1);
}

.faqAccordion .accordion-body{
    padding:15px 25px 25px 25px;
    color:#3b3b3b;
    line-height:1.8;
    font-size:15.6px;
    background:#fff;
    font-family: var(--font-sub);
}

.faqAccordion .accordion-button:hover{
    color:#234982;
}

.faqAccordion .accordion-button:not(.collapsed):hover{
    color:#fff;
}

.consulting-top{
    text-align: center;
}

.consulting-top h2{
    font-size: 30px;
}
.consulting-top h4{
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.consulting-top p{
    font-size: 16px;
    margin-bottom: 5px;
    color: #3a3939;
}



.rrl-service-card {
    position: relative;
    display: flex;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

.rrl-service-image {
    position: relative;
    width: 50%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eeeeee;
}

.rrl-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.8s ease,
        filter 0.6s ease;
}

/* Image Hover Effect */
.rrl-service-card:hover .rrl-service-image img {
    transform: scale(1.08);
    filter: brightness(0.35);
}

.rrl-service-hover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 35px 30px;
    background:
        rgba(3, 9, 34, 0.459);
    transform: translateX(-100%);
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Slide Panel On Hover */
.rrl-service-card:hover .rrl-service-hover {
    transform: translateX(0);
}

.rrl-service-hover-title {
    display: block;
    margin-bottom: 15px;
    color: #155ac3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rrl-service-hover-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    margin-top: 12px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.rrl-service-card:hover .rrl-service-hover-title::after {
    width: 75px;
}

.rrl-service-hover ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rrl-service-hover li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: #dddddd;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-25px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* List Animation */
.rrl-service-card:hover .rrl-service-hover li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered List Animation */
.rrl-service-card:hover .rrl-service-hover li:nth-child(1) {
    transition-delay: 0.15s;
}

.rrl-service-card:hover .rrl-service-hover li:nth-child(2) {
    transition-delay: 0.20s;
}

.rrl-service-card:hover .rrl-service-hover li:nth-child(3) {
    transition-delay: 0.25s;
}

.rrl-service-card:hover .rrl-service-hover li:nth-child(4) {
    transition-delay: 0.30s;
}

.rrl-service-card:hover .rrl-service-hover li:nth-child(5) {
    transition-delay: 0.35s;
}

/* Gold Bullet */
.rrl-service-hover li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.rrl-service-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
}

.rrl-service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    color: rgba(67, 99, 213, 0.35);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.rrl-service-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #b38a3d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rrl-service-content h3 {
    margin: 0 0 7px;
    color: #111111;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.rrl-service-content h4 {
    margin: 0 0 10px;
    color: #b38a3d;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
}

.rrl-service-content p {
    margin: 0 0 10px;
    color: #464545;
    font-size: 15px;
    line-height: 1.7;
}

.rrl-service-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 13px 0;
    border: none;
    background: var(--primary) !important;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.4s ease,
        border-color 0.4s ease;
    padding: 5px 10px;
    border-radius: 7px;
    /* position: absolute;
	bottom: 15px;
	left: 15px; */
    text-decoration: none;
}

.rrl-service-button span {
    color: #fff;
}

.rrl-service-button i {
    color: #fff;
    font-size: 17px;
    transition: transform 0.4s ease;
}

.rrl-service-button:hover {
    color: #fff;
    background-color: #041634;
}

.rrl-service-button:hover i {
    transform: translateX(7px);
}

.rrl-service-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    width: 2px;
    height: 70%;
    background:
        linear-gradient(to bottom,
            transparent,
            #c9a45c,
            transparent);
}

.rrl-service-content::after {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 35px;
    height: 35px;
    border-right: 1px solid rgba(201, 164, 92, 0.4);
    border-bottom: 1px solid rgba(201, 164, 92, 0.4);
    pointer-events: none;
}


.rrl-service-hover::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.rrl-service-hover::-webkit-scrollbar-track {
    background-color: #f7f7f7;
    border-radius: 10px;
}

/* Handle */
.rrl-service-hover::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}


.consult-choose{
    position: relative;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    padding: 25px 20px 20px;
    overflow: hidden;
    transition: .35s ease;
    height: 100%;
    z-index: 1;
}

.consult-choose::before{
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: rgba(35,73,130,.05);
    border-radius: 50%;
    transition: .35s;
}


.consult-choose-icon{
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg,#234982,#3b66b1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.consult-choose-icon i{
    font-size: 28px;
    color: #fff;
}

.consult-choose h3{
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 7px;
}

.consult-choose p{
    margin: 0;
    color: #494949;
    font-size: 15.6px;
}

.consult-benefit-section{
    position: relative;
    background: #f8fafd;
}

.consult-benefit-content{
    position: sticky;
    top: 100px;
}

.consult-benefit-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(35,73,130,.08);
    color: #234982;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.consult-benefit-content h2{
    font-size: 35px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.consult-benefit-content p{
    color: #414040;
    margin-bottom: 10px;
}

.consult-benefit-content img{
    width: 100%;
    height: 350px;
    
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.consult-benefit-card{
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    border: 1px solid #edf1f7;
    transition: .35s;
    height: 100%;
}

.consult-benefit-card i{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg,#234982,#3b66b1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.consult-benefit-card h5{
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

.consult-benefit-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(35,73,130,.12);
    border-color: #234982;
}

/* Default icon */
.consult-benefit-card i{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    flex-shrink:0;
}

/* Different icon colors */
.consult-benefit-card.bgi1 i{
    background:#234982;
}

.consult-benefit-card.bgi2 i{
    background:#16a34a;
}

.consult-benefit-card.bgi3 i{
    background:#ea580c;
}

.consult-benefit-card.bgi4 i{
    background:#7c3aed;
}

.consult-benefit-card.bgi5 i{
    background:#0284c7;
}

.consult-benefit-card.bgi6 i{
    background:#d97706;
}

.consult-benefit-card.bgi7 i{
    background:#dc2626;
}

.consult-benefit-card.bgi8 i{
    background:#0f766e;
}

.consult-benefit-card.bgi9 i{
    background:#4f46e5;
}

.consult-benefit-card.bgi10 i{
    background:#be185d;
}

.consult-benefit-card.bgi11 i{
    background:#475569;
}

.consult-benefit-card.bgi12 i{
    background:#0891b2;
}

.baner-tag{
    display: none;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.baner-tag h6{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #073273;
}
.baner-tag span{
    height: 20px;
    width: 1px;
    background-color: #000;
}

.baner-tag1{
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff8a;
    z-index: 5;
    width: 100%;
    padding:25px 20px;
    backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);

}

.baner-tag1 h6{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #073273;
}
.baner-tag1 span{
    height: 20px;
    width: 1px;
    background-color: #000;
}


.hvac-programs-section {
  padding: 80px 0;
  background: #f5f8fb;
  overflow: hidden;
}

.hvac-card {
  position: relative;
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid #e7edf2;
  border-radius: 20px;
  overflow: hidden;
 box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.35s ease;
}

.hvac-icon {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
      background: linear-gradient(135deg, #234982, #3b66b1);
  color: #fff;
  font-size: 30px;
}

.hvac-card-content {
  position: relative;
  z-index: 2;
}

.hvac-card h3 {
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
  color: #172b3a;
}

.hvac-para {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3d3f;
}

/* Decorative shapes */
.hvac-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hvac-shape-one {
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  background: rgba(13, 110, 253, 0.06);
}

.hvac-shape-two {
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -120px;
  background: rgba(13, 110, 253, 0.06);
}

.hvac-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: #0d6efd;
  border-radius: 0 5px 0 0;
}

.hvac-card-title-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.hvac-card-title-top h3{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.hvac-card-title-top p{
    color: #073273;
}

.certification-gal a{
    width: 100%;
    height: 100%;
}
.certification-gal img{
    width: 100%;
    border: 1px solid #ccc;
}