

/* @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* font-family: "Raleway", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font-family: "Inter", sans-serif; */

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');

/* font-family: 'Helvetica Neue', sans-serif; */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden !important;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Helvetica Neue', sans-serif;
}
p, ul, span{
    font-family: "Inter", sans-serif;
}
button{
    font-family: "Inter", sans-serif !important;
}
img{
    pointer-events: none;
}
a{
    text-decoration: none !important;
}


/* header {
    position: fixed;
    width: 100%;
    padding: 20px 0px;
}

.head-flex {
   display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}
.head-left {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.logo img{
    width: 233px;
}

.navs ul{
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    gap: 2rem;
    font-size: 16px;
    margin-bottom: 0;
    color: #ffff;
} */


header{
    position: fixed;
    z-index: 3 ;
    width: 100%;
    padding: 1rem 0rem;
    transition: 0.4s ease all;
}
section.sub-banner{
    padding-top: 5rem;
}

.page-header.is-sticky {
    animation: slideDown 0.35s ease-out;
    background: #fff;
    border-bottom: 1px solid #efefefba;
    padding: 0.9rem 0rem;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .page-header.is-sticky .logo img {
    width: 164px;
    filter: invert(0) brightness(1);
  }
  .page-header.is-sticky .navs ul li a {
    color: #000 !important;
  }
  .page-header.is-sticky .head_left button {
    display: block;
    border: 1.5px solid #0014e6;
    color: #0014e6;
  }
  .page-header.is-sticky .white-logo {
    display: none;
  }
  .page-header .black-logo {
    display: none;
  }
  .page-header.is-sticky .black-logo {
    display: block;
  }

  .header-inner .black-logo{
    display: block;
  }
  .header-inner .white-logo{
    display: none;
  }

.head_right{
    display: flex;
    align-items: center;
    gap: 4rem;
}
.head_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img{
    width: 180px;
    /* filter: invert(1) brightness(30.5); */
}
.navs ul{
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}
.navs ul li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}
.header-inner .navs ul li a{
    color: #000 !important;
}
.head_left button {
    border: 1px solid #ffffff;
    padding: 10px 16px;
    background: transparent;
    font-size: 17.5px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s ease all;
    display: none;
}
.head_left button:hover{
    background: #fff;
    color: #0098d0;
}
.is-sticky .head_left button:hover{
    background: #0014e6;
    color: #fff;
}

.toggle_icon{
    display: none;
}
.cp_navs{
    display: none;
}
.mobile_contact{
    display: none;
}

.dropdown-menu1 {
    /* background: #E9E9E9; */
    background: #fff;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 15%);
    display: flex;
    padding: 10px !important;
    border-radius: 20px !important;
    width: 100%;
    width: max-content;
    /* max-width: 520px; */
    height: max-content;
    position: absolute;
    left: -12px;
    top: 25px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    display: none;
}

.dropdown1:hover .dropdown-menu1 {
    visibility: visible;
    opacity: 1;
    display: flex;
}
.dropdown-menu1 ul{
    display: block;
    color: #000;
    padding-left: 0;
}

.dropdown-menu1 li a {
    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.5s;
    display: block;
    color: #000 !important;

}

.dropdown-menu1 li a:hover {
    background: #E9E9E9;
    color: var(--second-clr);
}

.submenu-overflow {
    scrollbar-color: rgb(255, 255, 255) rgb(164, 164, 164);
    scrollbar-width: 10px;
}

.submenu a {
    display: flex;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.submenu a:hover {
    background-color: #f1f1f1;
}


.liquidGlass-wrapper {
    position: relative;
    display: flex;
    font-weight: 500;
    overflow: hidden;
  
    color: black;
    cursor: pointer;
  
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  }
  
  .liquidGlass-effect {
    position: absolute;
    z-index: 0;
    inset: 0;
  
    backdrop-filter: blur(3px);
    filter: url(#glass-distortion);
    overflow: hidden;
    isolation: isolate;
  }
  
  .liquidGlass-tint {
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
  }
  
  .liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
  
    overflow: hidden;
  
    box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
      inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
  }
  
  .liquidGlass-text {
    z-index: 3;
    font-size: 2rem;
    color: black;
  }



.hero-content h1 {
    overflow: hidden;
}

.hero-content p {
    overflow: hidden;
}

.hero-content .abhay {
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 1.5s;
}

.hero-content h1 span {
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 1.5s;
}

.hero-content p span {
    display: block;
    animation: reveal 3.6s cubic-bezier(0.77, 0, 0.175, 1) 1.5s;
}

@keyframes reveal {
    0% {
        transform: translate(0, 100%);
    }

    100% {
        transform: translate(0, 0);
    }
}





.banner{
    background-image: url(../images/banner.avif);
    background-size: cover;
    background-position: right;
    height: 100dvh;
    display:grid;
    align-items: end;
}

.banner_cnt{
    width: 50%;
    padding-bottom: 10rem;
}
span.abhay{
    display: block;
    color: #fff;
}
.banner_cnt h1{
    font-size: 55px;
    color: #fff;
    font-weight: 500;
    margin: 0.5rem 0rem;
}
.banner_cnt p{
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.banner-heading span{
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
}


.pop{
    transition: all ease 0.3s;
}
.pop:hover{
    transform: translateY(-3px) scale(1.01) !important;
    /* box-shadow: 0 35px 39px -15px rgba(0, 0, 0, 0.1); */
}


/* ---------------------------- */


.get-consult{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000ea3;
    border-radius: 100px;
    padding: 11px 17px;
    width: 75%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.consult-img{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.consult-cnt{
    text-align: left;
}
.consult-cnt h6{
    font-size: 17px;
    margin-bottom: 2px;
}
.consult-cnt p{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: #ffffffc2;
}
.consult-img img{
    width: 80px;
    border-radius: 50px;
}
.consult-btn button{
    border: none;
    background-color: #fff;
    padding: 14px 17px;
    font-size: 18px;
    color: #0014e6;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    transition: 0.3s ease all;
}
.consult-btn button:hover{
    background-color: #0014e6;
    color: #fff;
}
.consult-btn i{
    display: none;
}

.about{
    background: #1111ED;
    background: linear-gradient(185deg, rgba(17, 17, 237, 1) 0%, rgba(10, 10, 135, 1) 93%);
    color: #fff;
    padding: 5rem;
    text-align: center;
    position: relative;
}
.about_cnt{
    padding: 0rem 5rem;
    margin-top: 2rem;
}
.about_cnt h2{
    font-size: 50px;
    font-weight: 500;
}
.about_cnt h3{
    font-size: 35px;
    font-weight: 400;
    width: 50%;
    margin: auto;
}
.about_cnt p{
    margin-top: 2rem;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    text-align: justify;
}

.abt-abay{
    position: relative;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.abt-abay img{
    border-radius: 12px;
    width: 100%;
}

.abt-abay_cnt{
    position: absolute;
    bottom: 20%;
    left: 0;
    padding-left: 3rem;
    text-align: left;
}
.abt-abay_cnt h4{
    font-size: 35px;
    width: 65%;
    font-weight: 500;
}
.abt-abay_cnt button{
    border: none;
    background-color: #fff;
    font-size: 17px;
    padding: 5px 13px;
    border-radius: 10px;
    margin-top: 10px;
}

/* ---------------------------------- */

.service_main{
    margin: 5rem 0rem;
}
.service_main a{
    color: inherit !important;
}
.servi_title{
    display: grid;
    height: 100%;
    align-content: space-between;
}
.servi_title span{
    background-color: #F2F2F2;
    padding: 5px 10px;
    border-radius: 6px
}
.servi_title h2{
    font-size: 35px;
    font-weight: 500;
    margin-top: 1.2rem;
}
.servi_title p{
    font-size: 17px;
    font-weight: 400;
}
.view_btn button{
    font-size: 17px;
    padding: 5px 13px;
    border-radius: 10px;
    margin-top: 10px;
    color: #0014e6;
    background-color: #fff;
    border: 1px solid #0014e6;
}
.view_btn button:hover{
    background-color: #0014e6;
    color: #fff;
}


.servi_img{
    margin-bottom: 1rem;
}
.servi_img img{
    border-radius: 10px;
    width: 100%;
}
.service_card{
    position: relative;
    height: 100%;
    background-color: #d0d0fb57;
    border-radius: 15px;
    padding: 2rem 1rem;
}
.service_card::before{
    content: '';
    position: absolute;
    background: #0014E6;
    background: linear-gradient(180deg, rgba(0, 20, 230, 0) 50%, rgb(143 152 255 / 30%) 125%);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.service_card:hover::before{
    opacity: 1;
}
.service_card h5{
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 1rem;
    margin-top: 3rem;
}
.service_card p{
    font-size: 14px;
}
.servi_cnt_padding{
    padding: 0rem 1rem;
}
.view_servi{
    color: #0014e6;
    padding: 0rem 1rem;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.view_servi p{
    font-size: 16px;
}
.service_card:hover .view_servi{
    visibility: visible;
    opacity: 1;
}


/* -------------------------------- */

.award_bg{
    background-color: #F0F0FF;
    padding: 3rem 3rem;
    border-radius: 15px;
}
.award_card{
    position: relative;
    margin: 0.5rem;
}
.award_card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 95%);
    border-radius: 15px;
}
.award_card img{
    width: 100%;
    border-radius: 12px;
}
.award_cnt{
    color: #fff;
    position: absolute;
    bottom: 0;
    padding: 1rem;
    z-index: 1;
}
.award_bg h2{
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: #0A0A87;
    font-size: 35px;
}
.award_cnt h5{
    font-weight: 500;
}
.award_cnt p{
    font-size: 12px;
    font-weight: 300;
}
.award_section{
    background-color: #f0f0fe;
    padding: 3rem 0rem;
}

.award-slider .slick-next{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -1%;
}
.award-slider .slick-prev {
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: -2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 45%;
    left: -2%;
}
/* .read-arrow{
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: none;

}
.award_card:hover .read-arrow{
    transform: translateY(0%);
    opacity: 1;
    display: block;
}
.read-arrow img{
    width: 50px;
} */

/* -------------------------------- */

.reel-section{
    margin: 6rem 0rem;
}
.reel_main img{
    width: 100%;
    padding: 0.5rem;
    border-radius: 20px;
}
.reel-slider .slick-next{
    background-color: #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
    border: none;
    box-shadow: 1px 0px 8px -3px #666666bf;
    font-size: 17px;
    position: absolute;
    right: -16px;
    top: 50%;
}

/* ------------------------------------ */


.testimonial-bg{
    background-color: #F0F0FF;
    padding: 5rem 0rem;
}
.testi-title p{
    width: 100%;
}
.testi-title span{
    background-color: #dcdfff;
}
.testi_cnt{
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    height: 259px;
    display: grid;
    align-content: space-around;
    margin: 0.5rem;
}
.test-cnt-marg{
    margin-top: 3rem;
}
.testi_cnt h6{
    margin-bottom: 2px;
    font-weight: 500;
}
.testi_cnt span{
    font-weight: 400;
    font-size: 14.5px;
}
.testi_cnt p{
    font-size: 15px;
}
.testi-profile img{
    width: 50px;
    border-radius: 50px;
}
.testi-flex{
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-testi .slick-next{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -3%;
}



.index_blog_bg{
    background-color: #ffffff;
    padding: 5rem 0rem;
    margin-top: 0rem;
}
.index_blog_title {
    text-align: center;
    margin-bottom: 3rem;
}
.index_blog_title span{
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
}
.index_blog_title h2{
    font-size: 35px;
    font-weight: 500;
    margin-top: 1rem;
}
.index_blog_title p{
    font-size: 15px;
    width: 35%;
    margin: auto;
}

.cloumn_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.video_blog{
    position: relative;
}
.video_blog img{
    width: 100%;
    border-radius: 12px;
}
.video_blog::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 95%);
    border-radius: 12px;
}
.vd_blog_cnt {
    position: absolute;
    bottom: 8px;
    color: #fff;
    z-index: 1;
    padding: 1rem 1.5rem;
}
.btn_flex{
    display: flex;
    justify-content: space-between;
}
.btn_flex button{
    border: none;
    padding: 5px 12px;
    border-radius: 10px;
    margin-top: 10px;
    background-color: #fff;
}

.btn_flex img{
    width: auto;
}

.blog_index{
    background-color: #f0f0fe;
    border-radius: 12px;
    margin-bottom: 1rem;
    height: calc(100% - 1rem);
}
.height-blog{
    height: 100%;
}
.blog_index img{
    width: 100%;
    border-radius: 12px;
    height: 260px;
    object-fit: cover;
}
.blog_cnt_index {
    padding: 1rem;
    /* height: calc(100% - 250px); */
    display: grid;
    align-content: space-around;
}
.blog_cnt_index h6{
    font-size: 20px;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog_cnt_index p{
    font-size: 14px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blog_cnt_index button{
    border: none;
    background-color: #0014e6;
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 9px;
    margin-top: 10px;
    color: #fff;
    font-weight: 400;
    width: fit-content;
}

/* ------------------------------ */


footer{
    background-color: #000052;
    color: #fff;
    padding: 4rem 0rem 2rem 0rem;
}
footer a{
    color: inherit !important;
}
.ftr-cnt-flex{
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.ftr-cnt-flex p{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
    width: 55%;
}
.ftr_cnt ul{
    display: inline-flex;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin-top: 2.5rem;
}
.ftr_cnt ul img{
    background-color: #fff;
    height: 33px;
    width: 33px;
    border-radius: 15px;
    padding: 4px 6px;
}
.quick_links h6{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    /* padding-top: 2.5rem; */
}
.quick_links ul{
    list-style: none;
    padding-left: 0;
    line-height: 2;
    font-size: 15px;
    font-weight: 300;
}
.quick_links p{
    font-size: 15px;
    font-weight: 300;
}
.cp-right{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid #ffffff42;
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.cp-right p{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}



#splash {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  #splash.hidden {
    opacity: 0;
    pointer-events: none;
  }



/* Core Values Section */


/* .video-card video{
    width: 100%;
    height: 275px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
} */
.video-card img{
    width: 100%;
    height: 275px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
}


.core-values {
    background-color: #f2f3fd;
    position: relative;
    overflow: hidden;
    padding: 5rem 0rem;
}

.core-values .section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.core-values .section-subtitle {
    color: #36393b;
    font-size: 0.92rem;
    margin-bottom: 2rem;
    font-weight: 300;
    width: 55%;
}

.value-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05); */
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 20, 230, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #0014e6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover::before {
    height: 100%;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 20, 230, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #0014e6;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 28px;
    color: #0014e6;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: #fff;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    color: #0014e6;
}

.value-card p {
    color: #3e4346;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.value-card:hover p {
    color: #495057;
}



.banner-bg{
    background-size: cover;
    background-position: center;
    height: 330px;
    border-radius: 15px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 4rem 6rem;
}
.abt-banner{
    background-image: url(../images/sub-banner.png);
}
.course-banner{
    background-image: url(../images/sub-slider1.png);
}
.blog-banner{
    background-image: url(../images/sub-slider2.png);
}
.media-banner{
    background-image: url(../images/sub-slider3.png);
}
.contact-banner{
    background-image: url(../images/sub-slider4.png);
}



.banner_left h6{
    background-color: #ffffff14;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 18px;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff2b;
    box-shadow: inset 0px 1px 6px 0px #ffffff26;
}
.banner_right{
    width: 40%;
}
.banner_right p{
    font-size: 14px;
    font-weight: 300;
}

.size-font{
    font-size: 53px;
}




/* Heritage of Trust Section */
.heritage-section {
    padding: 5rem 0;
    background-color: #fff;
}

.heritage-section .section-title {
    font-size: 2.9rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.heritage-section .section-title span {
    color: #0014e6;
    display: block;
}

.heritage-section p {
    color: #595959;
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.drp-item{
    background-color: #f4f5fc !important;
    padding: 1rem;
    border-radius: 9px;
    border: none !important;
}

.about-img{
    position: relative;
    width: 85%;
    margin: auto;
}
.about-img::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 95%);
    border-radius: 12px;
}
.social-buttons{
    position: absolute;
    bottom: 6%;
    z-index: 1;
    left: 8%;
}
.img-head{
    width: 250px;
}

/* Accordion Styles */
.heritage-section .accordion-button {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.heritage-section .accordion-button:not(.collapsed) {
    color: #0014e6;
    background-color: transparent;
    box-shadow: none;
}

.heritage-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.heritage-section .accordion-button::after {
    display: none;
}

.heritage-section .accordion-button i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.heritage-section .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.heritage-section .accordion-body {
    padding: 0;
}

.heritage-section .accordion-body p {
    margin-bottom: 0;
    padding-right: 2rem;
    color: #2d2d2d;
    font-size: 0.94rem;
    font-weight: 400;
}

/* Image and Social Buttons */
.heritage-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.heritage-section .social-buttons {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.heritage-section .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heritage-section .social-icon:hover {
    background-color: #0014e6;
    color: #fff;
    transform: translateY(-3px);
}

.heritage-section .btn-primary {
    background-color: #00000000;
    border: none;
    font-weight: 400;
    padding: 0.5rem 1.5rem;
    border-radius: 33px;
    transition: all 0.3s ease;
    color: #fff;
    border: 1px solid #ffffff70;
    font-family: 'Inter';
}

.heritage-section .btn-primary:hover {
    background-color: #000fa3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 20, 230, 0.3);
}







/* Video Section */
.videos-section {
    padding: 80px 0;
    background-color: #fff;
}

.videos-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: left;
}

.videos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Featured Video */
.featured-video {
    margin-bottom: 30px;
    padding: 10px;
    aspect-ratio: 16 / 9;
}

.featured-video h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.4;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 9 / 16;
    margin: 0.5rem;
}
.blog-video{
    aspect-ratio: 16 / 9;
    margin: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.03);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgb(8 8 8 / 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background-color: #0014e6;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button.small {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

/* Video Playlist */
.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 380px; /* Height for 3 videos + gaps */
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px; /* Compensate for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
    scroll-behavior: smooth;
    scroll-padding: 5px;
}

/* Custom scrollbar for WebKit browsers */
.video-playlist::-webkit-scrollbar {
    width: 6px;
}

.video-playlist::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.video-playlist::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.video-playlist::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.youtube-main{
    background-color: #f6f6f6;
    padding: 4rem 0rem;
}
.video-item {
    display: flex;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    gap: 1.2rem;
}
.youtube-video{
    flex-direction: column;
}
.video-item .youtube-thumb{
    width: auto;
    border-radius: 8px;
    position: relative;
}
.youtube-thumb img{
    border-radius: 8px;
}
/* .video-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.video-link:hover .video-item {
    background-color: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

.video-item:hover {
    background-color: #f8f9ff;
    transform: translateX(0px);
    box-shadow: 0 2px 8px rgba(0, 20, 230, 0.1);
}

.video-item .video-thumbnail {
    width: 160px;
    min-width: 160px;
    border-radius: 8px;
}

.video-info {
    flex: 1;
    min-width: 0;
}

.video-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-info p {
    font-size: 13px;
    color: #666;
    margin: 0 0 5px 0;
}

.video-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #888;
}

.video-more {
    align-self: flex-start;
    color: #666;
    padding: 5px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-item:hover .video-more {
    opacity: 1;
}


.blog-reel-item img{
    width: 100%;
    border-radius: 20px;
    padding: 0.5rem;
}

/* Tax Solutions Section */
.tax-solutions {
    padding: 80px 0;
    background-color: #fff;
}

.tax-solutions h2 {
    font-size: 35px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tax-solutions p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.solution-feature {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background-color: #f2f3fd;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    /* border: 1px solid #e9ecef; */
}

.solution-feature:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 20 230 / 15%);
}
.solution-feature:hover span{
    color: #0014e6;
}

.feature-icon {
    width: 42px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0014e6;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 5px;
}

.solution-feature span {
    font-weight: 500;
    font-size: 15px;
}

.solution-image {
    position: relative;
    padding-left: 30px;
    text-align: end;
}

.solution-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.crs-enquiry button{
    border: none; padding: 10px 13px; border-radius: 18px; font-size: 18px; background-color: #0014e6; color: #fff;
    transition: all 0.3s ease; margin-top: 3rem;
}
.crs-enquiry button:hover{
    background-color: #0016df;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 20, 230, 0.1);
}


.news_section{
    padding: 4rem 0rem;
}
.news_section h2{
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.innerBlogMain{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.blog_reel_main{
    text-align: center !important;
    text-align: -webkit-center !important;
}
.reel-blog{
    margin-bottom: 0rem;
    margin-top: 4rem;
}
.reel-blog h2{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: left;
}
.blog-reel .slick-prev{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: -2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -1%;
}
.blog-reel .slick-next{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -1%;
}


.testi-slider .slick-prev{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: -2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 45%;
    left: -2%;
}
.testi-slider .slick-next{
    border: none;
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 2px 0px 6px 0px #66666652;
    position: absolute;
    z-index: 1;
    top: 45%;
    right: -1%;
}


.news_section h2{
    margin-top: 1rem;
}

.blog_inner img{
    width: 100%;
    min-height: 260px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.blog_inner span{
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}
.blog_inner h1{
    font-weight: 500;
    margin-top: 1rem;
}
.blog_inner p{
    font-size: 15px;
}
.blog_inner ul{
    padding-left: 20px;
}

.resent-video {
    background-color: #f2f2f2;
    border-radius: 9px;
    padding: 1rem 4px;
    margin-top: 2rem;
}
.video-re-head{
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 1.5rem;
    padding-left: 11px;
}

.recent_head{
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 1.5rem;
}

.recent_post_item{
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #66666629;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.recent_post_item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.recent_post_img img{
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}
.recent_post_cnt span{
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}
.recent_post_cnt h5{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.recent_post_cnt p{
    font-size: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}
.recent_post_cnt button{
    border: none;
    color: #0014e5;
    padding: 15px 0px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 0;
    background: none;
}






.preloader{
    position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #fff;
  transition: all ease 0.55s;
  transform: translateY(0%);
  opacity: 1;
}

.loader-gif {
    position: absolute;
    width: 100px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
.loader_video {
    position: absolute;
    width: 500px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
          border-radius: 500px;
  }
  /* .loader-gif::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    border-radius: 50%;
    animation: loader 1s ease-in-out infinite;
} */


/* ============================================= */
#splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(0deg, rgba(80, 185, 85, 1) 0%, rgba(4, 133, 80, 1) 100%); */
      background: #fff;
      color: #000;
      font-weight: 500;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      z-index: 9999;
      text-align: center;
        transition: all ease 0.55s;
  transform: translateY(0%);

  }

  /* #splash video {
      width: 600px;
      border-radius: 500px;
  } */
  #splash img {
      border-radius: 500px;
  }

  #splash.hidden {
      display: none;
  }

  #main-content {
      display: none;
  }

  #main-content.visible {
      display: block;
  }

  /* =============================== */


.conatct_space {
    text-align: left;
    font-family: "Inter", sans-serif;
    padding: 5rem 4rem;
}

.getin_box {
    /* padding: 30px; */
    background: #fff;
    border-radius: 20px 0px 0px 20px;
}

.getin_box h2 {
    font-size: 28px;
    color: var(--second-clr);
}

.getin_box p {
    font-size: 16px;
}

.getin_box .address {
    padding-left: 0%;
}

.getin_box .address i {
    font-size: 18px;
    margin-top: 4px;
}

.getin_box .address a {
    font-size: 15px;
    text-decoration: none;
    color: black;
    transition: all 0.3s;
}

.head-adrs {
    border-radius: 12px;
    padding: 0rem 1rem 0rem 0rem;
    /* background-color: #f4f4f4; */
    margin-bottom: 1rem;
}

.head-adrs h6 {
    font-size: 18px;
    margin-bottom: 1.2rem;
}

.marg-adrs {
    margin-top: 2.5rem;
}

.marg-adrs {
    color: #0014e6 !important;
}

.getin_box .address a:hover {
    color: var(--second-clr);
    transition: all 0.3s;
}

.getin_box .social_icons {
    margin-top: 15px;
    padding: 0%;
    display: flex;
    gap: 5px;
    list-style: none;
}

.getin_box .social_icons li a {
    list-style: none;
    float: left;
    font-size: 17px;
    height: 35px;
    width: 35px;
    background-color: var(--second-clr);
    color: #0014e6;
    text-align: center;
    line-height: 35px;
    border-radius: 30px;
}


.getin_box .social_icons li a:hover {
    margin-left: 0%;
    color: #ffff;
    background-color: #0014e6 !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.getin_box .social_icons li i:hover {
    /* background-color: #333 !important; */
    color: #fff !important;
    /* transition: all 0.3s !important;
    transform: translateY(-5px) !important; */
}

.form_box {
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(233, 233, 233, 0.478);
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    height: 100%;
}

.form_box h2 {
    font-size: 25px;
    color: var(--second-clr);
    margin-bottom: 10px;
}

.form_box input,
.form_box textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 13px;
    border: 1px solid #0000003d;
    font-weight: 300;
}

.form_box input:focus-visible,
.form_box textarea:focus-visible {
    outline: 1px solid #000;
}

.form_box .main_btn2 {
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background-color: #0014e6;
    padding: 11px 20px;
    border: none;
    border-radius: 13px;
    transition: all 0.3s ease 0s;
    text-align: center;
}

.plane_pic2 {
    transform: rotate(45deg) translateY(-2px);
    width: 17px;
    transition: all 0.2s ease 0s;
}

.form_box .main_btn2:hover {
    color: #0014e6;
    background-color: #e7e9ff;
    transition: all 0.3s ease 0s;
}

.form_box .main_btn2:hover .plane_pic2 {
    transform: rotate(45deg) translateY(-9px);
    transition: all 0.2s ease 0s;
}

/* Video Popup Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.video-close:hover {
    color: #ff0000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}





#splash {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hidden {
    display: none !important;
  }

  .visible {
    display: block !important;
  }

  #main-content.hidden {
    visibility: hidden;
  }