:root {
    --black: #181D24;
    --white: #ffffff;
    --btnbg: #fdec19;
    --gray: #F5F5F5
}


html,
body {
    background: var(--black);
    color: var(--black);
}

body,
input,
textarea,
select,
button {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    font-style: normal;
}

.c {
    max-width: 1440px;
    padding: 0 20px;
}
.hb_menu {
   
    color: #fff;
}
p.banner_text {
   
   
    color: #fff;
}
.sec_padd {
    padding: 80px 0;
}
.sec_white{
    background-color: var(--white);
    color: var(--black);
}
.sec_gray {
    background: var(--gray);
}

.sec_white+.sec_white {
    margin-top: -80px;
}

.sec_white .btn:hover {
    color: var(--black);
}

.sec_black {
    background-color: var(--black);
    color: var(--white);
}

.section_title {
    font-size: 72px;
}

.letter_title {
    font-size: 64px;
}

.subsection_title {
    font-size: 36px;
}

.grid_title {
    font-size: 32px;
}

.subtext {
    font-size: 24px;
}

.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--btnbg);
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn:hover {
    border-color: var(--btnbg);
    background: transparent;
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header_top {
    text-align: right;
    padding: 7px 0;
    border-bottom: 1px solid var(--btnbg);
}

header .c {
    max-width: none;
}

.ht_col {
    display: inline-block;
    padding: 0 25px;
}

a.top_heada {
    display: inline-block;
    color: var(--white);
}

a.top_heada i {
    padding: 5px 2px 0 0;
}

section.banner {
    position: relative;
}

.banner_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 1;
    opacity: .45;
}

.header_bottom {
    padding: 16px 0;
    /* text-align: center; */
}



.burgermenu {
    display: none;
}




.hb_layout {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
}

.hb_logo {
    display: inline-block;
    width: 160px;
    vertical-align: middle;
    transition: width 0.3s ease, margin-top 0.3s ease;
    margin-top: 5px;
    flex-shrink: 0;
}

.hb_menus {
    margin: 0;
    color: var(--white);
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
}

.hb_menu {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding: 0 4px;
}

/* Arrow indicator for submenu */
.has_submenu:before {
    position: absolute;
    content: "\f0d7"; /* Font Awesome arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: -1px;
    right: 2px;
}

.hb_submenusec {
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially transparent */
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--btnbg);
    color: var(--black);
    box-shadow: 1px 0 10px 0 rgba(255, 255, 255, 0.5);
    z-index: 999;
    text-align:left;
    padding: 20px;
    display: grid; /* Using grid layout for 3 columns */
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px; /* Gap between items */
    transition: visibility 0s, opacity 0.3s ease; /* Smooth transition */
}

/* Styling for submenu links */
.hb_submenusec a {
    padding: 10px;
    display: block;
}

/* Show submenu on hover of the parent menu item */
.hb_menu:hover .hb_submenusec {
    visibility: visible; /* Make it visible on hover */
    opacity: 1; /* Fully opaque */
}

a.has_submenu {
    position: relative;
    padding-right: 20px;
}

.hb_contact {
    display: inline-block;
    padding: 0 15px;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}
a.hb_btn {
    margin-left: 41px;
}

.middle-wrap-table.banner_middle {
    height: 100vh;
}

.banner_middle .middle {
    padding: 178px 0 60px;
}

img.banner_image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
     /*filter: brightness(50%);*/
}

.banner_sec {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 834px;
    margin: auto;
    padding-bottom: 65px;
}

h2.banner_title {
    line-height: 1.3;
    margin: 0;
    font-size:40px;
}

h2.banner_title span {
    color: var(--btnbg);
    font-size:inherit;
}

p.banner_text {
    max-width: 620px;
    margin: auto;
    padding-top: 34px;
    font-size: 20px;
    font-weight: 500;
}

p.banner_hashtag {
    padding-top: 24px;
    max-width: 210px;
    margin: auto;
    text-shadow: rgb(0 0 0 / 74%) 2px 2px 0px, rgb(0 0 0 / 72%) 1px -4px 2px, rgb(0 0 0 / 70%) 2px 2px 2px;
}

a.btn.banner_btn {
    margin-top: 47px;
}

.position-absolute {
    position: absolute;
}

.banimg_one {
    right: 100%;
    width: 165px;
    bottom: 90%;
}

.banimg_two {
    top: -47px;
    width: 199px;
    left: 100%;
}

.banimg_three {
    bottom: 0;
    left: 0;
    width: 187px;
}

.banimg_four {
    right: 24px;
    bottom: 0;
    width: 123px;
}

h2.subsection_title.rating_title {
    max-width: 833px;
    margin: auto;
    font-weight: normal;
}

.about-btn {
    margin-top: 90px;
}

.rating_lists {
    margin: 0 -10px 0;
}

.rating_list {
    display: inline-block;
    margin-top: 40px;
    padding: 0 10px;
    width: 16.6%;
    font-size: 0;
}

.rating_layout {
    padding: 5px;
    background: var(--gray);
    border-radius: 5px;
}

img.rating_listimg {
    width: auto;
}

h3.about_title {
    /* max-width: 1005px; */
    /* margin: 29px; */
    text-align: center;
    text-align: center;
}
.contact_map .about_text {
    width: 100% !important;
    max-width: 100%;
}
h3.about_title span {}

.highlighthtag {
    background: var(--black);
    padding: 5px;
    color: var(--btnbg);
    border-top-left-radius: 14px;
    border-bottom-right-radius: 14px;
    position: relative;
    border-bottom: 4px solid var(--btnbg);
    display: inline-block;
    vertical-align: middle;
}

.about_text {
    max-width: 1100px;
    margin: 34px auto 0;
    font-size:1.2rem;
    text-align: justify;
}

.achievement_list {
    display: inline-block;
    width: 25%;
    padding: 0 20px;
    margin-top: 36px;
}

.achievement_sec {
    padding: 30px;
    border-radius: 10px;
    background: #F5F5F5;
    text-align: left;
    transition: all .4s;
    color: var(--black);
}

.achievement_sec:hover {
    background: var(--btnbg);
}

.count_title {
    font-weight: 500;
    margin-top: 24px;
}

.achieve_count {
    margin: 0;
    line-height: 1;
}

p.count_text {
    margin: 24px 0 0;
}

.sec_choose {
    background: var(--gray);
    border-radius: 20px;
    padding: 50px;
}

h2.subsection_title {
    font-weight: 700;
    margin-bottom: 0;
    font-family: Lexend;
}

p.choose_text {
    max-width: 880px;
    margin: 20px 0 0;
    letter-spacing: -0.48px;
}

.choose_grids {
    margin-top: 37px;
    border-top: 2px solid #CCC;
}

.choose_grids .choose_grid {
    display: inline-block;
    padding: 40px 50px 0 0;
    width: 68%;
}

.choose_grids .choose_grid:nth-child(2) {
    padding-right: 0;
}

.choose_grids .choose_grid:nth-child(1) {
    width: 32%;
    border-right: 2px solid #CCCCCC;
}

.choose_texts {
    line-height: 1.4;
}

.choose_texts p.choose_text:nth-child(1) {
    margin: 0;
}

.service_analytics {
    margin-left: 54px;
    position: relative;
}

.ceo_image {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 360px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.serana_grids {
    padding-left: 410px;
}

img.ceo_img {
    width: 360px;
    /* height: 100%; */
}

.analytic_val {
    color: #1E1E1E;
    line-height: 1;
    font-weight: bold;
    margin: 3px 0 0;
}

.serana_grid {
    padding-top: 60px;
}

.serana_grid:nth-child(1) {
    padding: 0;
}

.serana_tit {
    padding-top: 25px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
}

.analytic_bar {
    height: 6px;
    border: 1px solid var(--btnbg);
    background: var(--btnbg);
}

h2.subsection_title.service_tit {
    color:white;
    font-weight: 300;
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

.service_sec {
    /* margin: 0 -25px; */
}

.service_left {
    display: inline-block;
    width: 30%;
    margin-top: 63px;
    padding: 0 25px;
}

.service_right {
    display: inline-block;
    /* width: 70%; */
    /* padding: 0 25px; */
    /* margin-top: 63px; */
}

h2.subsection_title.service_tit b {
    color: var(--btnbg);
    font-weight: 700;
}

.service_lists {
    padding: 20px 30px;
    display: inline-block;
    width: 33.33%;
    margin-top: 30px;
}

.service_lists:hover {
    background: var(--btnbg);
    color: var(--black)
}

.service_lists:hover .sl_a {
    color: #5C05CB
}

.service_lists:hover .sl_service li {
    color: var(--black)
}

.sl_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
    letter-spacing: -0.4px;
    text-transform: uppercase;
    text-align: center;
}

p.sl_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    max-width: 691px;
    margin: 15px 0 0;
}

.sl_service li {
    color: #707070;
    padding: 20px 20px 0;
    font-size: 16px;
    display: block;
    position: relative;
}

.sl_service li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 28px;
    left: 0;
    background: #707070;
    border-radius: 50%;
}

.sl_service ul {
    display: inline-block;
    padding: 0;
    width: 100%;
}

.sl_a {
    margin: 24px 0 0;
    color: var(--btnbg);
    text-transform: uppercase;
    font-size: 14px;
    padding-right: 26px;
    position: relative;
    display: inline-block;
}

.service_lists:hover .sl_a path {
    stroke: #5C05CB;
}

span.arrow {
    position: absolute;
    top: -4px;
    width: 16px;
    height: 16px;
    right: 0;
    font-size: 16px;
}

a.sl_a:hover {
    color: var(--white);
}

h2.client_title.subsection_title {
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.72px;
    max-width: 1005px;
    margin: auto;
    text-align: center;
}

h2.client_title.subsection_title span {
    color: var(--btnbg);
    font-weight: 700;
}

h2.client_title.subsection_title b {
    font-weight: 700;
}

p.clients_text {
    margin: 24px 0 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.clients_lists {
    margin: 8px -12px 0;
}
img.clients_img {
    padding: 10px;
    background: var(--gray);
    border: 1px solid var(--btnbg);
}
.clients_list {
    display: inline-block;
    margin-top: 50px;
    padding: 0 12px;
    width: 16.66%;
}

h2.subsection_title.portfolio_title {
    line-height: normal;
    color:white;
    letter-spacing: -0.72px;
}

.protfolio_catlists {
    margin: 0 -15px;
}

a.portfolio_catlist.btn {
    margin: 50px 15px 0;
    font-size: 16px;
    letter-spacing: -0.32px;
}

.portfolio_lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
    text-align: left;
}

.portfolio_list {
    display: inline-block;
    width: 19%;
    padding: 0px 9px;
    text-align: left;
    margin-top: 30px;
}


.portfolio_cat {
    padding-top: 10px;
    color: #707070;
    font-size: 14px;
    line-height: normal;
    letter-spacing: -0.28px;
    text-align: center;
}

.portfolio_det {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pl_title {
    margin: 20px 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}

.pl_site {
    position: relative;
    padding-right: 26px;
}

.portfolio_overlay {
    padding: 46px 40px;
    background: var(--btnbg);
    color: var(--black);
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all.4s;
}

a.portfolio_a {
    display: block;
    overflow: hidden;
}

a.portfolio_a:hover {
    transform: scale(1.025);
}

.portfolio_listlayout:hover .portfolio_overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.po_title {
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

p.po_text {
    margin: 24px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.po_project {
    margin-top: 64px;
    font-weight: 600;
    line-height: 24px;
    /* 100% */
    letter-spacing: -0.48px;
}

.po_cat {
    margin: 10px 8px 0 0;
    display: inline-block;
    padding: 8px 13px;
    color: #707070;
    font-family: Lexend;
    font-size: 12px;
    font-weight: 400;
    border-radius: 25px;
    border: 1px solid #707070;
}

a.po_link {
    margin: 24px 0 0;
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.portfolio_listlayout {
    position: relative;
    overflow: hidden;
}

.footer {
    background: var(--black);
    padding: 54px 60px 33px;
    color: var(--white);
}

.footer_text {
    font-weight: 500;
    letter-spacing: -0.64px;
    text-align: center;
    max-width: 1105px;
    margin: auto;
    line-height: 1.2;
}

.portfolio_listsizer {
    width: 33.33%;
}

.footer_grid {
    border-top: 1px solid #B6B6B6;
    margin-top: 50px;
}

.footer_left {
    padding: 45px 70px 0 0;
    display: inline-block;
    width: 47%;
    border-right: 1px solid #B6B6B6;
}

.footer_right {
    padding: 45px 0 0 70px;
    display: inline-block;
    width: 53%;
}

.footer_subtitle {
    color: #1E1E1E;
    font-weight: 700;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.footer_c {
    position: relative;
    z-index: 1;
}

.footer_contacts {
    display: flex;
    justify-content: space-between;
}

.footer_contact {
    margin-top: 67px;
}

.footer_contact:nth-child(1) {
    padding-right: 50px;
}

.fc_title {
    color: #1E1E1E;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
}

a.fc_a {
    display: block;
    margin-top: 30px;
    font-weight: 500;
}

.fc_a i {
    margin-top: 4px;
}

.Privacy {
    font-size: 20px;
    font-weight: 100;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 66px;
}

.footer_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_image {
    margin: 12px 0 0;
}

.footer_image:nth-child(1) {
    padding-right: 90px;
}

.footer_grid {
    border-top: 1px solid #B6B6B6;
    margin-top: 50px;
}

.footer_left {
    padding: 45px 70px 0 0;
    display: inline-block;
    width: 47%;
}

.footer_right {
    padding: 45px 0 0 70px;
    display: inline-block;
    width: 53%;
}

.footer_subtitle {
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

h1.footer_title {
    color: #fdec19;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -1.28px;
    text-transform: uppercase;
    display: inline-block;
    margin: 10px 0 0;
}

.footer_contacts {
    display: flex;
    justify-content: space-between;
}

.footer_contact {
    margin-top: 67px;
}

.footer_contact:nth-child(1) {
    padding-right: 50px;
}

.fc_title {
    color: var(--white);
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
}

a.fc_a {
    display: block;
    margin-top: 30px;
    font-weight: 500;
}

.Privacy {
    font-size: 20px;
    font-weight: 100;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 66px;
}

.footer_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_image {
    margin: 12px 0 0;
}

#err {
    font-size: 12px;
    color: #ff0000;
}

#err.pass {
    color: #008000;
}

.footer_image:nth-child(1) {
    padding-right: 90px;
}

.footer_formtext {
    font-weight: 700;
    letter-spacing: -0.48px;
}

.footer_right .headtop_icons {
    margin-top: 30px;
}

input.form_inpuut,
textarea.form_inpuut {
    padding: 13px 10px;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    background: transparent;
}

textarea.form_inpuut::placeholder,
input.form_inpuut::placeholder {
    color: var(--white)
}

textarea.form_inpuut::-ms-input-placeholder,
input.form_inpuut::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: var(--white)
}

.form_field {
    padding: 20px 10px 0;
}

.form_fields {
    margin: 22px -10px 0;
}

.form_field:nth-child(1),
.form_field:nth-child(2),
.form_field:nth-child(3),
.form_field:nth-child(4) {
    display: inline-block;
    width: 50%;
}

.form_submitwrap {
    text-align: center;
}

.form_submitwrap .btn {
    border-radius: 0;
    min-width: 225px;
}

.footer_bottom {
    padding: 25px 60px;
    background:black;
    color: white;
    position: relative;
}

.footerb_lay {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyrgttxt {
    color: white;
    font-size: 18px;
    font-weight: 500;
    z-index:1;
    
}

.fb_menus {
    padding-left: 30px;
}

a.fb_menua {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
    position: relative;
}

a.fb_menua:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60%;
    top: 6px;
    right: 0;
    background: var(--white);
}

a.fb_menua:last-child:before {
    content: none;
}

.testimonial_sec {
    border-radius: 20px 0 0 20px;
    background: #080606;
    padding: 63px 0 55px 80px;
}

.section_testimonial .c {
    position: relative;
    max-width: none;
    padding-right: 0;
}

.testimonial_list {
    position: relative;
    background: var(--btnbg);
    padding: 30px;
    box-shadow: 1px 0 10px 0 rgb(255 255 255 / 50%);
}

.testimonial_left {
    position: relative;
}

.testimonial_right {
    margin-top: 20px;
}

.clientname {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
    letter-spacing: -0.4px;
    max-width: 233px;
}

.clientrole {
    margin-top: 20px;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    max-width: 233px;
}

.testimonial_swiper .swiper-slide {
    width: 30%;
    margin: 20px 20px 0 0;
    opacity: 0.7;
}
.testimonial_swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
}
.testimonial_swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 16px;
    line-height: 20px;
}

.testimonial_swiper .swiper-container-horizontal>.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    padding: 0 32px 4px 0;
    margin: 55px 0 0 0;
    border-bottom: 2px solid #1E1E1E;
    border-radius: 0;
}

.testimonial_cname span i {
    display: inline-block;
    padding: 0 2px;
    color: var(--black);
    
}

.faq_sec {
    border-radius: 129px;
    background: var(--btnbg);
    max-width: 1080px;
    margin: auto;
    padding: 41px 41px 17px;
    text-align: center;
}

h2.faq_title {
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.72px;
}

h2.faq_title b {
    font-weight: 700;
}

.faq_btn {
    background: var(--black);
    margin-top: 25px;
    color: var(--white);
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
}

a.faq_scroll {
    margin-top: 12px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.24px;
}

.expert_title {
    text-align: center;
}

.exp_lists {
    margin: 0 -12px;
}

.exp_list {
    display: inline-block;
    padding: 0 12px;
    margin-top: 20px;
}

h2.faqlists_title {
    text-align: center;
}

.faq_list {
    margin-top: 20px;
    width: 50%;
    padding: 0 10px;
    display: inline-block;
}

.faq_lists {
    margin: 0 -10px
}

.faqlist_qa {
    display: block;
    position: relative;
    padding: 23px 80px 23px 44px;
    border: 1px solid var(--btnbg);
    border-radius: 129px;
}

.faqlist_a {
    margin-top: 10px;
    font-size: 16px;
    line-height: normal;
    display: none;
}

.faqlist_q {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

span.plus {
    width: 29px;
    height: 29px;
    position: absolute;
    right: 30px;
    top: 20px;
}

span.plus:before,
span.plus:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 13px;
    background: var(--black);
    transition: all .4s;
}

span.plus:before {
    transform: rotate(90deg);
}

.active span.plus:after {
    transform: rotate(90deg);
}

.testimonial_txt {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    max-width: 666px;
    padding-top: 40px;
    margin-right:20px;
    position: relative;
}

.testimonial_txt::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('../image/quotes.png') no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
}

.testimonial_cname {
    color: #808081;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.64px;
    margin-top: 30px;
}

.testimonial_cname span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px;
    color: var(--btnbg);
    color: #1E1E1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

span i {
    color: var(--btnbg);
}

h2.testimonial_title {
    text-align: center;
}

.faq_sec {
    border-radius: 129px;
    background: var(--btnbg);
    max-width: 1080px;
    margin: auto;
    padding: 41px 41px 17px;
    text-align: center;
}

h2.faq_title {
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.72px;
}

h2.faq_title b {
    font-weight: 700;
}

.faq_btn {
    background: var(--black);
    margin-top: 25px;
    color: var(--white);
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
}

a.faq_scroll {
    margin-top: 12px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.24px;
}

.expert_title {
    text-align: center;
}

.exp_lists {
    margin: 0 -12px;
}

.exp_list {
    display: inline-block;
    padding: 0 12px;
    margin-top: 20px;
}

h2.faqlists_title {
    text-align: center;
}

.faq_list {
    margin-top: 20px;
    width: 50%;
    padding: 0 10px;
    display: inline-block;
}

.faq_lists {
    margin: 0 -10px
}

.faqlist_qa {
    display: block;
    position: relative;
    padding: 16px 19px 13px 16px;
    border: 1px solid var(--btnbg);
    border-radius: 10px;
}

.faqlist_a {
    margin-top: 10px;
    font-size: 16px;
    line-height: normal;
    display: none;
}

.faqlist_q {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

span.plus {
    width: 10px;
    height: 15px;
    position: absolute;
    right: 30px;
    top: 20px;
}

span.plus:before,
span.plus:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 13px;
    background: var(--black);
    transition: all .4s;
}

span.plus:before {
    transform: rotate(90deg);
}

.active span.plus:after {
    transform: rotate(90deg);
}

span i {
    color: var(--btnbg);
}

h2.testimonial_title {
    text-align: center;
}

.headtop_left {
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    text-align: right;
}

.headtop_right {
    display: inline-block;
    vertical-align: middle;
    width: 30%;
    text-align: right;
}

.headtop_icons a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--btnbg);
    color: var(--black);
    margin-right: 5px;
    border-radius: 50%;
}

.headtop_icons a i,
.headtop_icons a img {
    position: absolute;
    top: 11px;
    left: 10px;
    font-size: 19px;
}


.headtop_left .ht_col:nth-child(1) {
    padding-left: 0;
}

footer {
    position: relative;
}

footer:before,
footer:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

footer:before {
    background: url('../image/banner.png') no-repeat;
    background-size: cover;
}

.expert_swiper .swiper-slide {
    width: 25%;
}

.footer_title.active {
    opacity: 1;
    z-index: 5;
}

.footer_title.preactive {
    z-index: 1;
}

.footer_title {
    position: absolute;
    opacity: 0;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: width 2.8s ease-in-out;
}

.footersliders {
    position: relative;
    display: inline-block;
}

.footer_hidetitle {
    opacity: 0;
    visibility: hidden;
}

.aboutslides {
    display: flex;
    width:500%;
}

.aboutslides .aboutlay {
    display: flex;
    width: 100%;
}

.aboutbanner .middle-wrap-table {
    height: 100vh;
}

.aboutbanner .middle {
    padding: 30px 0;
}

.whychoosetit {
    text-align: center;
    text-transform: uppercase;
}

.aboutone {
    background: var(--btnbg);
}

.abouttwo_layout {
    position: relative;
    margin: 0 -30px;
    color: var(--white);
}

.abouttwo_left {
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
    width: 50%;
}

.abouttwo_right {
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
    width: 50%;
}

.abouttwo_title {
    text-transform: uppercase;
}

.abouttwo {
    background: var(--black);
}

.abouttwo_subtitle {
    margin: 40px 0 0;
    text-transform: uppercase;
    font-weight: 800;
    font-family: Lexend;
}

p.abouttwo_text {
    margin: 20px 0 0;
}

p.achieve_text {
    margin: 0;
}

a.abouttwo_btn {
    margin: 40px 10px 0 0;
}

.about_report {
    justify-content: space-between;


    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.report_number {

    display: inline-block;
    vertical-align: middle;
}

.report_number span {
    width: 190px;
    height: 190px;
    border-radius: 100%;
    border: 3px solid var(--white);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'LEXEND';
    font-weight: 800;
}

.report_info {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}

h4.report_title {
    font-family: 'Lexend';
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
}

p.report_text {
    margin: 10px 0 0;
}

.about_report:nth-child(1),
.about_report:nth-child(3) {
    padding-left: 130px;
}

.aboutthree_left {
    display: inline-block;
    width: 60%;
    vertical-align: middle;
    padding-right: 40px;
    margin-top: 30px;
}

.aboutthree_right {
    display: inline-block;
    width: 40%;
    vertical-align: middle;
    margin-top: 30px;
}

.aboutthree,
.aboutfour {
    background: var(--black);
    color: var(--white);
}

.aboutthree_list {
    display: inline-block;
    width: 33.33%;
    vertical-align: middle;
    padding: 0 10px;
    margin: 20px 0 0;
}

h2.abtl_title {
    font-weight: 800;
}

.aboutthree_lists {
    margin: 0 -10px;
}

.aboutfour {
    text-align: center;
}

section.aboutbanner {
    background: var(--black);
    color: var(--white);
}

.cursor1,
.cursor2 {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.cursor {
    position: fixed;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--white);
    background: var(--black-2);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    mix-blend-mode: hard-light;
    transition: all 0.3s;
}

.cursor.large {
    width: 180px;
    height: 180px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #fdec19 ;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.15s;
    z-index: 999;
    /*mix-blend-mode: difference;*/
}

@media (max-width: 1200px) {
    .cursor1 {
        display: none;
    }
}

.cursor1.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--black);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.2s;
    z-index: 999;
    mix-blend-mode: difference;
}

@media (max-width: 1200px) {
    .cursor2 {
        display: none;
    }
}

.cursor2.hide {
    opacity: 0;
    visibility: hidden;
}

.cursor2.circle {
    width: 60px;
    height: 60px;
}
.client_btn{
    margin-top: 20px;
}
.clients_Sec{
    text-align: center;
}
.aboutfour_lists {
    margin: 0 -20px;
}

.aboutfour_list {
    display: inline-block;
    width: 20%;
    padding: 0 20px;
    margin-top: 30px;
}

img.svgicon {
    width: 80px;
    height: auto;
    margin-top: 20px;
}
.pin-spacer {
    background: var(--black);
}
.abt-content {
    width: 1000px;
}
.about_text.inner_page {
    max-width: 1074px;
    margin: 34px auto 0;
    text-align: justify;
    display: flex;
    justify-content: space-around;
}
.loc-btn {
    background: #000;
    color: #fdec19;
    padding: 15px 30px;
    width: 100%;
    justify-content: center;
    display: flex;
}
.about_text.inner_page.location {
    margin: 3% 0 !important;
    width: 100% !important;
    max-width: 100%;
}
h3.h3class {
    text-align: center;
    margin: 2% 0;
}
section.about_section.sec_padd.sec_white.padtop {
    padding-top: 0;
}
.about_text.inner_page.location .abt-image {
    width: 75%;
}
.location .abt-content {
    /* text-align: justify; */
    padding: 0 3%;
}

.location h3 {
    text-align: left;
}
form#mindgeeform {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
}
.content-sides {
    margin: 1% 0;
}
section.about_section.sec_padd.sec_white.contact_map {
    background: #f5f5f7;
    margin-top: 0;
}
.form_field input.form_inputs {
  
    color: #000;
    width: 100%;
    padding: 10px;
    background: unset;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #cccccc;
  
    resize: none;
    font-size: 18px;
    line-height: 32px;
   
}
.form_field.full {
    width: 100%;
}
.back-back {
    margin: 3% 5%;
    background: #fff;
    padding: 0 5% 6%;
    min-height: 454px;
}
textarea.form_inputs {
    width: 100%;
    color: #000;
    width: 100%;
    padding: 10px;
    background: unset;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #cccccc;
    resize: none;
    font-size: 18px;
    line-height: 56px;
}
.page_contact .form_submitwrap .btn {
    border-radius: 0;
    min-width: 225px;
    font-size: 18px;
    margin-top: 3%;
}
.back-back.left-back {
    padding: 5%;
}
.img.portfolio_img {
    width: 100%;
}

.main-portfolio .portfolio_list {
    display: inline-block;
    width: 33.33%;
    padding: 0px 16px;
    text-align: left;
    margin-top: 30px;
}

.main-portfolio img{
    width: 100%;
}
.portfolio_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 2px solid #fff;

}
.pl_title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 10px 0;
}
section.sec_black.sec_padd.section_portfolio.text-center.main-portfolio {
    background: #fff;
    padding-top: 10px;
}

.main-portfolio h2.subsection_title.portfolio_title.split-words {
    color: #000;
}

.main-portfolio h4.subtext.pl_title {
    float: left;
    width: auto;
    color: #000;
    text-align: left;
    font-size: 25px !important;
}
.main-portfolio .portfolio_cat {
    /* float: right; */
    text-align: right;
    margin-top: 2%;
}
.main-portfolio .btn:hover {
    border-color: var(--btnbg);
    background: transparent;
    color: #000;
}
/*Thankyou Page;*/
        .subsection_title {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
        }
        .subsection_text {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
   /* WhatsApp integration */
div.section-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 5;
}

.img-whatsapp {
    animation: shake 1.5s infinite linear;
    transform: translate3d(0, 0, 0);
}

.img-whatsapp:hover {
    animation-play-state: paused;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

div.section-icon img {
    position: fixed;
    left: 15px;
    z-index: 5;
}

div.section-icon .img-whatsapp-icon {
    bottom: 200px;
}

div.section-icon .img-call-icon {
    bottom: 130px;
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #f7e03e, #f9a800);
    color: #000;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg); /* Rotates the button 45 degrees */
}


.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    transform: scale(1.1);
}

/*Award section*/
.award {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.award .subsection_title {
    font-family: 'lexend'
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.award .subsection_title p {
    font-weight: 400;
    font-size: 16px;
    color: #777;
    margin-top: 10px;
}

.program-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    /*transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;*/
}

/*.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.5);
}*/

.program-icon {
    object-fit: cover;
    width: 100%;
    height: 400px; /* Set a fixed height */
    border: 1px solid #fdec19;
   /* box-shadow: 0 5px 15px rgba(255, 255, 0, 0.5);  Adjusted to #fdec19 */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.program-icon:hover {
    transform: scale(1.05);
}

.program-item h4 {
    font-family: 'lexend';
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

.program-item p {
    font-family: 'lexend';
    font-weight: 400;
    font-size: 16px;
    color: #666;
}
.why-mindzee {
    padding: 50px 0;
    background-color: #fff;
}

.why-mindzee .subsection_title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.why-mindzee .subsection_subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.mindzee-benefits {
    list-style: none;
    padding: 0;
    columns: 2; /* For creating two columns */
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 40px;
}

.mindzee-benefits li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.mindzee-benefits li::before {
    content: "✔";
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.col-md-4 {
    position: relative; /* Ensure the video section is positioned absolutely within this container */
}

.video-section {
    position: relative;
    top: 0;
    right: 0;
    width: 100%; /* Adjust width as necessary */
    margin-top: 0;
    text-align: center;
}

.video-section h3 {
        position: relative;

    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.download-section {
    text-align: center;
    margin-top: 40px;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fdec19;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
}


.download-section {
    margin-top: 30px;
    text-align: center;
}

.download-section p {
    font-size: 18px;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
      margin-bottom: 15px;
}

.download-btn:hover {
     background-image: linear-gradient(45deg, #000000, #FFD700);
}
/* General styles for mobile devices */
@media (max-width: 768px) {

    .why-mindzee {
        padding: 20px 0;
    }

    .why-mindzee .subsection_title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .why-mindzee .subsection_subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mindzee-benefits {
        columns: 1; /* Single column on mobile */
        -webkit-columns: 1;
        -moz-columns: 1;
        column-gap: 20px;
    }

    .mindzee-benefits li {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .video-section {
        margin-top: 20px;
    }

    .video-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .download-section {
        margin-top: 20px;
    }

    .download-section p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .download-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .download-btn:hover {
        background-image: linear-gradient(45deg, #000000, #FFD700);
    }
}

/* Styles for very small screens, like phones in portrait mode */
@media (max-width: 480px) {

    .why-mindzee .subsection_title {
        font-size: 24px;
    }

    .why-mindzee .subsection_subtitle {
        font-size: 14px;
    }

    .mindzee-benefits li {
        font-size: 12px;
    }

    .video-section h3 {
        font-size: 18px;
    }

    .download-section p {
        font-size: 14px;
    }

    .download-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.sec_clients {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
}

.client_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.clients_text {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.clients_Sec .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.client-logo-container {
    flex: 0 1 calc(20% - 20px); 
    max-width: calc(20% - 20px); 
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-logo {
    max-width: 100%;
    max-height: 100px; 
}

.placement-section {
    margin-top: 40px;
}

.view-placement-btn {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
}

@media (max-width: 1199px) {
    .client-logo-container {
        flex: 0 1 calc(25% - 20px); 
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 991px) {
    .client-logo-container {
        flex: 0 1 calc(33.33% - 20px); 
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 767px) {
    .client-title {
        font-size: 20px;
    }

    .clients_text {
        font-size: 14px;
    }

    .client-logo-container {
        flex: 0 1 calc(50% - 20px); 
        max-width: calc(50% - 20px);
    }

    .client-logo {
        max-height: 80px; 
    }

    .view-placement-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 575px) {
    .client-logo-container {
        flex: 0 1 calc(100% - 20px); /* Adjust for smaller screens */
        max-width: calc(100% - 20px);
    }
}


.certifications {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
}

.rating_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.certifications p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.certification-item {
    text-align: center;
    margin-bottom: 30px;
}

.certification_icon {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.certification-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .certification_icon {
        width: 120px;
        height: 120px;
    }

    .certification-item h6 {
        font-size: 16px;
    }
}

    

    .digital-tools-section {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    padding: 50px 0; /* Example padding for spacing */
    background-color: #fff; /* Black background color */
    color: black; 
    text-align:center;
}

.tools-title {
    font-size: 32px; /* Example: Increase title font size */
    color: #333; /* Example: Dark gray text color */
}

.tools-description {
    font-size: 18px; /* Example: Decrease description font size */
    color: #666; /* Example: Medium gray text color */
    margin-bottom: 30px; /* Example: Add bottom margin */
}

.tools-grid {
    margin-top: 30px; /* Example: Top margin for tools grid */
}

.tool-box {
    text-align: center; /* Center-align tool boxes */
    margin-bottom: 20px; /* Example: Margin between tool boxes */
}

@media (max-width: 767px) {
    .tool-box {
        margin-bottom: 30px; /* Example: Increased margin for smaller screens */
    }
}

        
.digital-marketing-section {
     font-family: 'Lexend', sans-serif;
    font-size: 28px;
    padding: 50px 0;
    background-color: #fff;
}

.digital-marketing-section .section-title {
    
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.digital-marketing-section .subsection-title {
    font-weight: 400;
    text-align:center;
    font-weight:bold;
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.digital-marketing-section .description {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.digital-marketing-section .list {
    list-style: none;
    padding: 0;
    columns: 2; /* For creating two columns */
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 40px;
}

.digital-marketing-section .list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.digital-marketing-section .list li::before {
    content: "✔";
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}
.button-group {
    text-align: center; /* Center text and button horizontally */
}

.button-group p {
    color:black;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.button-group .btn {
    display: inline-block; /* Make the button respect text alignment */
    margin-top: 10px; /* Add space between text and button */
}
.button-group .btn:hover {
    background-image: linear-gradient(45deg, #000000, #FFD700);
}
.curriculum-overview {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.content-header {
    padding: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.overview-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: whitesmoke;
}

.course-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.module-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

.module-box {
    flex: 1 1 calc(25% - 20px);
    padding: 15px;
    box-sizing: border-box;
    border: none;
    background: none;
    color: whitesmoke;
    position: relative;
    overflow: hidden;
}

.module-heading {
    text-align: left;
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: whitesmoke;
}

.module-heading i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.module-heading h2 {
    font-size: 20px;
}

.module-list {
    display: none;
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    padding-top: 10px;
}

.module-list.show {
    display: block;
    max-height: 500px;
}

.module-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: transparent;
    color: whitesmoke;
}

.module-list li:last-child {
    border-bottom: none;
}

.curriculum-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

@media (max-width: 768px) {
    .course-modules {
        flex-direction: column;
        align-items: center;
    }

    .module-row {
        flex-direction: column;
    }

    .module-box {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .overview-title {
        font-size: 1.5rem;
    }

    .module-heading {
        font-size: 0.875rem;
    }

    .module-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .overview-title {
        font-size: 1.25rem;
    }

    .module-heading {
        font-size: 0.75rem;
    }

    .module-list li {
        font-size: 0.8rem;
    }
}

.programs-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.programs-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-section h1,
.programs-section h2,
.programs-section p {
    color: #000;
    margin-bottom: 10px;
}

.programs-section p {
    margin-bottom: 30px;
}

.programs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.program {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 30%;
    max-width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.program img.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.program:hover img.program-image {
    transform: scale(1.05);
}

.program h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s;
}

.program:hover h4 {
    color: #fdec19;
}

.program p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ddd;
    transition: color 0.3s;
}

.program:hover p {
    color: red;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
}

.tick-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.tick-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 18px;
}

.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: black;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #fdec19;
}

@media (max-width: 768px) {
    .programs {
        flex-direction: column;
        align-items: center;
    }

    .program {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 10px 0;
    }
}

.program {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievements_section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.achievements_title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.achievements_lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6c757d;
}

.achievement_item {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.achievement_item:hover {
    background-color: #fdec19;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.achievement_item_title {
    font-size: 3rem;
    color: #343a40;
    margin-bottom: 10px;
}

.achievement_item_subtitle {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 10px;
}

.achievement_item_text {
    margin-top: 10px;
    font-size: 1rem;
    color: #495057;
}

.hero-additional {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: left;
    color: var(--btnbg);
    font-size: 2rem;
    font-weight: bold;
}

.slide img {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

.hero-additional p {
    font-size: 1.2rem;
    margin: 0;
    color: yellow;
    margin: auto;
    padding-left: 0;
}

.hero-btn {
    margin-top: 20px;
    display: inline-block;
}

    .about-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(234, 239, 247, 0.9), rgba(242, 248, 255, 0.9));
            overflow: hidden;
            position: relative;
        }
        .catagory-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
        background: linear-gradient(135deg, rgba(255, 255, 240, 0.9), rgba(178, 190, 181, 0.9));

            overflow: hidden;
            position: relative;
        }

        .about-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
            opacity: 0.2;
            z-index: 0;
        }

        .about-content {
            display: flex;
            text-align:justify;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
           
            padding: 40px;
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-content {
            flex: 1;
            padding: 20px;
        }

        .text-content h1 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, #f39c12, #f1c40f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            animation: textSlideIn 1s ease-out;
        }

        @keyframes textSlideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .text-content p {
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
            position: relative;
            animation: textFadeIn 1s ease-out;
        }

        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-content h3 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 10px;
             letter-spacing: normal;
           
        }

        .image-content {
            flex: 1;
            max-width: 500px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: zoomIn 1s ease-out;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .image-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .image-content:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
                align-items: center;
                text-align: justify;
                padding: 30px;
            }

            .text-content h1 {
                font-size: 2rem;
            }

            .text-content h3 {
                font-size: 2rem;
            }
        }
        /*services
        .section-services {
            padding: 80px 20px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .services-header {
            margin-bottom: 60px;
        }

        .services-header h2 {
            font-size: 2rem;
            line-height: 1.3;
            margin: 0;
            color: #333;
            position: relative;
            display: inline-block;
            
        }

        .services-header h2::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 80px;
            height: 5px;
            background: var(--btnbg);
            border-radius: 3px;
            transform: translateX(-50%);
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        .service-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            color: #333;
            
        }
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color:yellow;
}
        .service-card.gradient1 {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.service-card.gradient2 {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
}

.service-card.gradient3 {
    background: linear-gradient(135deg, #3a3a3a 0%, #7a7a7a 100%);
}

        .service-title {
            font-size: 1.6rem;
            
            margin-bottom: 15px;
            color: white;
        }

        .service-description {
            font-size: 1rem;
            margin-bottom: 20px;
             color: #e0e0e0;
        }

        .service-details {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            color: #e0e0e0;
        }

        .service-details li {
            margin-bottom: 10px;
        }

        .view-details {
            display: inline-flex;
            align-items: center;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .view-details:hover {
            color: var(--btnbg);
        }

        .view-details svg {
            margin-left: 8px;
            fill: currentColor;
            transition: transform 0.3s;
        }

        .view-details:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .service-card {
                padding: 20px;
            }

            .services-header h2 {
                font-size: 2rem;
            }
        }
        */
        
       .section-clients {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.clients-header {
    margin-bottom: 60px;
    color: #333;
}

.clients-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 0;
    display: inline-block;
}

.clients-header span {
    font-weight: 700;
    color: var(--main-color);
}

.clients-header h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

.clients-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
}

.clients-list {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.clients-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 2rem;
    }

    .clients-lists {
        gap: 20px;
    }
}

.sticky-call {
    position: fixed;
    bottom: 90px;
    right: 32px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

#desktop-call-view, #mobile-call-view {
    display: none;
}

.icon-call a {
    display: block;
    background: #28a745;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.icon-call a i {
    color: #fff;
    font-size: 26px;
}

.icon-call a:hover {
    background: #1e7e34;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#desktop-call-view {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mobile-call-view {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fix-list {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 380px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fix-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fix-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fix-list li i {
    font-size: 20px; 
    color: #28a745; 
    margin-right: 12px; 
}

.full-btn {
    display: flex;
    align-items: center;
    background: #28a745; 
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px; 
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.full-btn i {
    font-size: 20px; 
    margin-right: 12px; 
}

.full-btn:hover {
    background: #1e7e34; 
    transform: scale(1.05);
}

.close-btn i {
    font-size: 20px;
    color: #333;
}

@media (max-width: 768px) {
    #desktop-call-view {
        display: none;
    }

    #mobile-call-view {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    padding-right: 10px;
    text-align: left;
    flex: 1;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner form {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        align-items: center; 
    }

    .cookie-banner p {
        padding: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .cookie-banner form {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 10px;
        margin-left: 0;
    }

    .cookie-banner button {
        width: 100%; /* Make buttons full width */
        max-width: 200px; /* Limit button width */
    }
}

.cookie-banner button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    background: var(--btnbg);
    color: #000;
    margin: 5px 0;
}

.cookie-banner button:hover {
    background-color: #000;
    color: #fff;
    transition: 0.2s;
    border: 1px solid var(--btnbg);
}


 