@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #7ec438;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'trajan';
    src: url(../fonts/Trajan-reg.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 100px 0;
}

.all-section-btm {
    padding: 0 0 100px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'trajan';
    font-size: 43px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 5px;
}

h2 {
    font-family: 'trajan';
    font-size: 50px;
    color: #0c0b0b;
    font-weight: 400;
    margin: 0 0 0px;
}

h3 {
    font-family: 'trajan';
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 10px;
    transition: all 0.3s ease-in;
}

h4 {
    font-family: 'trajan';
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin: 0 0 0px;
}

h5 {
    font-family: 'trajan';
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 0px;
}

h6 {
    font-family: 'trajan';
    font-size: 12px;
    color: #87c828;
    font-weight: 400;
    margin: 0 0 10px;
}

p {
    color: #888888;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px 0 30px;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 40px 10px;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.menuSec ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background-color: #75c22f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.menuSec ul li a:hover::after,
.menuSec ul li a.active::after {
    transform: scaleX(1);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*header css start */


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: linear-gradient(129deg, rgb(235 37 34 / 86%) 0%, rgb(0 0 0 / 90%) 35%, rgb(0 0 0 / 7%) 100%);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* theme setting */

.container-fluid {
    padding: 0 7%;
}

.d_block {
    display: block;
}


/* theme btn 1 */

.themebtn {
    box-shadow: 0 0px 15px rgb(0 0 0 / 28%);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 2px solid #7bc42d;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    transition: background 0.4s ease, color 0.4s ease;
    font-family: "Montserrat", sans-serif;
}

.btn_icon {
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.btn_icon img {
    width: 20px !important;
    height: 15px !important;
    object-fit: contain !important;
    transition: transform 0.4s ease;
}

.themebtn:hover .btn_icon img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(10%) saturate(2553%) hue-rotate(48deg) brightness(94%) contrast(97%);
    transform: translateX(5px);
}

.themebtn:hover .btn_icon {
    background: #ffffff;
}

.themebtn:hover {
    border: 2px solid #6ec131;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
}


/* theme btn 1 */


/* theme btn 2 */

.themebtn2 {
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 2px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    transition: background 0.4s ease, color 0.4s ease;
    font-family: "Montserrat", sans-serif;
}

.btn_icon2 {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.btn_icon2 img {
    width: 20px !important;
    object-fit: contain !important;
    transition: transform 0.4s ease;
    height: 15px !important;
    filter: brightness(0) saturate(100%) invert(69%) sepia(10%) saturate(2553%) hue-rotate(48deg) brightness(94%) contrast(97%);
}

.themebtn2:hover .btn_icon2 img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(14%) saturate(7426%) hue-rotate(292deg) brightness(119%) contrast(114%);
    transform: translateX(5px);
}

.themebtn2:hover .btn_icon2 {
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
}

.themebtn2:hover {
    border: 2px solid #7bc42d;
    color: #000000;
    background: #ffffff;
}


/* theme btn 2 */


/* theme setting */


/* about */

.about_left {
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

.about_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #64be34;
    border-top-left-radius: 10px;
    height: 100%;
    width: 50%;
    z-index: -1;
}

ul.about-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

ul.about-list p {
    margin-bottom: 5px;
}

.about_left img,
.about_left video {
    width: 100%;
    object-fit: cover;
    height: 830px;
    border-radius: 10px;
    object-position: 77%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    font-size: 28px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.abt_btm img {
    margin-top: 50px;
    width: 100%;
    object-fit: cover;
    height: 230px;
    border-radius: 10px;
    object-position: 0% 20%;
}

.about_right {
    padding-right: 0;
    padding-left: 30px;
}

.mission {
    padding-right: 0px;
}

.about_right p {
    margin-bottom: 15px;
}


/* about */


/* services */

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading p {
    width: 58%;
    margin: 0 auto;
}

.ser_main {
    border-radius: 10px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0px 15px rgb(0 0 0 / 5%);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    height: 580px;
    overflow: hidden;
}

.ser_img img {
    height: 480px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.ser_txt {
    padding: 30px 20px;
}

.ser_txt p {
    margin-bottom: 0;
    color: #b4df99;
}

.ser_hidden_txt {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.ser_txt a {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    text-transform: uppercase;
    line-height: 20px;
    margin-top: 15px;
    display: inline-block;
}

.ser_main:hover .ser_img img {
    height: 380px;
}

.ser_main:hover .ser_hidden_txt {
    opacity: 1;
    height: 200px;
}

.ser_main:hover {
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
}

.ser_main:hover h3 {
    color: #ffffff;
}


/* services */


/* Simple Admissions Process  */

.hero_left ul li {
    margin-bottom: 40px;
    padding-left: 30px;
    position: relative;
}

.hero_left ul li h4 {
    color: #ffffff;
}

.hero_left ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/check-list.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    z-index: 1;
}

.hero {
    padding: 90px 0;
    background: url(../images/her-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero .container-fluid {
    padding: 0 0 0 5%;
}

.hero_left h2 {
    color: #ffffff;
    font-size: 65px;
}

.hero_left p {
    width: 80%;
}

.hero_icon {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.hero_card h3 {
    color: #ffffff;
}

.hero p {
    color: #ffffffa1;
}

.hero_card {
    text-align: center;
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #b5a5a1;
}

.hero_slider .slick-slide {
    opacity: 1;
}

.hero_icon img {
    height: 25px;
    width: 25px;
    object-fit: contain;
}


/* Simple Admissions Process  */


/* why choose us */

.wcu_left {
    padding: 5px 0;
    position: relative;
    z-index: 1;
}

.wcu_left img {
    width: 100%;
    object-fit: cover;
    height: 650px;
    border-radius: 10px 10px 10px 10px;
}

.wcu_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #64be34;
    border-top-left-radius: 10px;
    height: 50%;
    width: 34%;
    z-index: -1;
}

.wcu_left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: #64be34;
    height: 50%;
    width: 37%;
    z-index: -1;
}

.wcu_right img {
    width: 100%;
    object-fit: cover;
    height: 570px;
    border-radius: 0px 10px 10px 10px;
}

.wcu_left_txt {
    padding-top: 0px;
    padding-right: 30px;
}

.wcu_right_txt {
    padding-left: 30px;
}

.wcu_left_txt ul {
    column-count: 1;
}

.wcu_left_txt ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/check-list.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    z-index: 1;
}

.wcu_left_txt ul li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.wcu_left_txt ul li p {
    margin-bottom: 0px;
}

.wcu_left_txt h4 {
    padding-bottom: 5px;
    border-bottom: 1px solid #cbcbcb;
    width: 70%;
}

.wcu_left_txt ul li span {
    color: #888888;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    width: 80%;
}


/* why choose us */


/* contact */

.contact_img img {
    width: 100%;
    object-fit: cover;
    height: 460px;
    border-radius: 10px;
    object-position: 0% 50%;
}

.contact_box {
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    margin: -180px auto 0;
    overflow: hidden;
}

.contact_box p {
    color: #f3caca;
}

.contact_box h2 {
    color: #ffffff;
    position: relative;
}

.contact_box h2::before {
    content: '';
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #e85251;
    height: 1px;
    width: 85%;
    z-index: 1;
}

.contact_box ul li a {
    color: #ffffff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    transition: all .3s ease-in;
}

.contact_box ul li a:hover {
    transform: translateX(10px);
    color: #64be34;
}

.contact_box ul li a i {
    font-size: 20px;
}

.contant_form form input,
.contant_form form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 14px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #c7c7c7;
}

.contant_form form input::placeholder,
.contant_form form textarea::placeholder {
    color: #878787;
    text-transform: uppercase;
}

.contant_form form textarea {
    resize: none;
    height: 120px;
}

.contant_form {
    padding: 60px;
}


/* contact */


/* footer */

.ftr_links {
    padding-left: 20px;
}

.footerSec {
    padding: 70px 0;
    background-color: #0b0b0b;
}

.ftr_links h5 {
    color: #ffffff;
    font-size: 17px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    position: relative;
}

.ftr_links h5::before {
    position: absolute;
    content: '';
    background-color: #5f5f5f7a;
    width: 160px;
    height: 1px;
    bottom: 0px;
    left: 0;
    z-index: 1;
}

.footer_contact h5 {
    color: #ffffff;
    font-size: 17px;
    padding-bottom: 30px;
}

.ftr_lgo {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #5f5f5f7a;
    width: 80%;
    margin-top: -15px;
}

.ftr_links ul li a {
    color: #767676;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.ftr_links ul li a:hover {
    transform: translateX(10px);
    color: #64be34;
}

.ftr_links ul li {
    margin-bottom: 20px;
}

.ftr_links ul li a i {
    color: #ffffff;
    font-size: 20px;
}

.ftr_socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftr_socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    background-color: #eb2522;
    border: 1px solid #eb2522;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    transition: all .3s ease-in;
}

.ftr_socials a:hover {
    border: 1px solid #63be35;
    color: #63be35;
    background-color: #ffffff;
}

.ftr_btm {
    background-color: #0b0b0b;
    padding: 20px 0;
    border-top: 1px solid #5f5f5f7a;
}

.copy_txt p {
    text-align: center;
    color: #767676;
    margin-bottom: 0;
}

.footer_contact p {
    width: 80%;
    color: #767676;
    margin-bottom: 50px;
}


/* footer */


/*testimonial_sec start*/


/* .testimonial_sec {
    padding: 100px 5%;
} */

.testimonial_sec .custom-space {
    margin-top: 50px;
}


/* Top bar */

.testimonial_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 15px;
    border-bottom: 1px solid #e5e5e5;
}

.testimonial_top_bar p {
    text-align: center;
    color: #666666;
    margin: 0 auto;
    width: 50%;
}

.checked {
    color: #fd8f00;
}

.testimonial_box {
    padding: 60px 24px;
    height: 320px;
    margin: 25px 0;
    position: relative;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
}

.testimonial_box i {
    position: absolute;
    top: -7%;
    padding: 20px;
    border-radius: 50%;
    color: #e20e29;
    background: #ffffff;
}

.testimonial_box p {
    padding: 20px 0px 20px 0;
    /* max-height: 100px; */
    font-weight: 500;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Montserrat';
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    overflow-y: scroll;
}

.profile {
    padding: 0px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.profile_text h6 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-family: 'trajan';
}

.profile_text p {
    margin: 0;
    padding: 0 !important;
    text-transform: uppercase;
    overflow-y: visible;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {
    border: 1px solid rgb(244, 244, 244);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    box-shadow: 23.013px 9.768px 59px rgba(193, 193, 193, 0.2);
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box i {
    color: #ffffff;
    background: rgba(137, 200, 40, 1) 0%;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box h6,
.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box p,
.testimonial_slider .slick-slide.slick-current.slick-active .profile_text p {
    color: #fff;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box p {
    padding: 20px 0 16px;
}

.testimonial_box:hover {
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    box-shadow: 23.013px 9.768px 59px rgba(193, 193, 193, 0.2);
}

.testimonial_slider .slick-slide.slick-current.slick-active {
    width: 11% !important;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active {
    width: 7% !important;
}

.testimonial_slider .slick-list.draggable {
    height: 370px;
    padding: 0px 0;
}

.testimonial_slider .slick-active {
    opacity: 1;
}

.testimonial_slider .slick-slide {
    opacity: 1;
}

.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box,
.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testimonial_box {
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
}

.testimonial_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box p {
    color: #ffffff;
    margin: 0 0 10px;
}

.profile i {
    position: relative;
    background-color: #000 !important;
    border: 1px solid #fff;
    color: #fff !important;
}


/*testimonial_sec end*/


/* inner banner */

.inner_banner .bnr_bg img {
    height: 450px;
    object-position: top;
}

.inner_banner {
    height: 560px !important;
}

.inner_banner .social_links::before {
    height: 22%;
    top: 120px;
}

.inner_banner .social_links {
    padding: 0px 50px 100px;
}

.main_slider.inner_banner::before {
    content: none;
}


/* inner banner */


/* about page */

.abt_page .about_left img {
    height: 460px;
}

.abt_page .mission h3 {
    font-size: 30px;
}

.abt_page .mission {
    margin-top: 60px;
    padding-right: 50px;
}


/* about page */


/* Programs page */

.program_main {
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    transition: all ease-in .3s;
    margin-bottom: 50px;
    text-align: center;
    transition: all ease-in .3s;
}

.program_main h3 {
    color: #ffffff;
}

.program_main p {
    color: #b6e098;
}

.program_txt {
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: all ease-in .3s;
}

.program_txt a {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #ffffff;
    border-bottom: 1px solid #b6e098;
    text-transform: uppercase;
    line-height: 20px;
    display: inline-block;
}

.program_txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    border-radius: 20px;
    height: 120%;
    width: 100%;
    z-index: -1;
    transition: all ease-in-out .5s;
}

.program_img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 99;
}


/* Programs page */


/* Programs Detail page */

.program_detail_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.program_detail_txt {
    box-shadow: 0 0px 15px rgb(0 0 0 / 16%);
    padding: 40px;
    background-color: #fff;
    width: 85%;
    margin: 0 auto;
    margin-top: -90px;
    position: relative;
    border-radius: 10px;
}

.program_detail_txt h3 {
    font-size: 25px;
    margin: 20px 0;
}

.program_detail_txt p b {
    color: #00000087;
}


/* Programs Detail page */


/* Tuition And Fees page */

.fees .wcu_right_txt ul li {
    margin: 20px 0;
    padding-left: 30px;
    position: relative;
    color: #888888;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.fees .wcu_right_txt ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    background-image: url(../images/check-list.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    z-index: 1;
}

.tuition_img img {
    width: 100%;
    object-fit: cover;
    height: 380px;
    border-radius: 10px;
    object-position: 0% 35%;
}

.tuition .heading p {
    width: 88%;
    margin: 0 auto 20px;
}

.fees .wcu_left {
    padding: 0px 0;
    position: relative;
}

.fees .wcu_left img {
    border-radius: 10px 10px 0px 10px;
    height: 500px;
}

.fees .wcu_left_txt h4 {
    width: fit-content;
}

.fees .wcu_left_txt ul {
    column-count: 1;
    margin-top: 10px;
    padding-right: 30px;
}

.fees .wcu_left_txt p {
    margin-bottom: 10px;
    width: 70%;
}

.fees .wcu_right img {
    height: 620px;
}


/* Tuition And Fees page */


/* catalogue page  */

.catalogue_img img {
    width: 100%;
    object-fit: cover;
    height: 360px;
    border-radius: 10px;
    object-position: 0% 30%;
    padding-right: 40px;
}


/* catalogue page  */


/* contact page  */

section.contact_top {
    padding: 130px 0;
}

.contact_top .cont_box {
    color: #fff;
    padding: 70px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    height: 250px;
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
    transition: all .3s ease-in;
}

.cont_box:hover {
    transform: translateY(-20px);
    box-shadow: 0 0px 15px #7ac42d;
}

.contact_top .cont_box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 300;
    border-bottom: 1px solid #d94e4c;
    width: 80%;
    padding-bottom: 15px;
}

.contact_top .cont_box a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-family: 'Montserrat';
    font-weight: 500;
}

.contact_top .cont_box a:hover {
    color: #7ac42d;
}

.contact_btm_heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact_btm_heading h2 {
    font-size: 55px;
    color: #252525;
    margin-bottom: 15px;
}

.contact_btm_heading p {
    margin: 0 auto;
    color: #6e6e6e;
    width: 80%;
}

.cont_form input,
.cont_form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: 'Montserrat';
}

.cont_form input:focus,
.cont_form textarea:focus {
    outline: none;
    border-color: #7ac42d;
}

.cont_form textarea {
    min-height: 150px;
    resize: none;
}

.cont_form input::placeholder,
.cont_form textarea::placeholder {
    color: #909091;
    text-transform: uppercase;
    font-weight: 500;
}

section.contact_btm {
    padding-bottom: 130px;
}


/* contact page  */


/* banner */

.headerbtn {
    text-align: end;
}

header {
    position: relative;
    z-index: 3;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    background: #e20d29;
    border-bottom-left-radius: 20px;
    height: 120px;
    width: 365px;
    z-index: -1;
    right: 0;
}

.bnr_bg img {
    height: 635px;
    width: 100%;
    object-fit: cover;
    border-bottom-right-radius: 20px;
}

.main_slider {
    height: 760px;
    background: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
    position: relative;
}

.main_slider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #be1717;
    height: 160px;
    width: 225px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.bnr_card {
    border-radius: 10px;
    max-width: 280px;
    text-align: center;
    position: absolute;
    z-index: 1;
    overflow: hidden;
    right: 11%;
    bottom: 7%;
}

.bnr_card::before {
    border-radius: 10px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgb(137 200 40 / 18%) 0%, rgb(115 194 48 / 49%) 50%, rgba(100, 190, 52, 1) 100%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.bnr_card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bnr_card_txt h3 {
    font-size: 15px;
    color: #ffffff;
}

.bnr_card_txt p {
    color: #ffffff;
}

.bnr_card_txt {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 30%;
    z-index: 1;
    padding: 20px;
}

.social_links {
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0px 50px 70px;
    top: 0;
    right: 0;
    width: 7%;
    flex-direction: column;
    justify-content: space-between;
    z-index: 99;
}

.social_links::before {
    content: "";
    position: absolute;
    background-color: #d94e4c;
    z-index: 1;
    height: 43%;
    width: 1px;
    top: 130px;
}

.social_links h6 {
    color: white;
    writing-mode: sideways-rl;
    font-size: 16px;
    position: relative;
}

.social_links ul li a {
    color: #ffffff;
    font-size: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 42px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
}

.social_links ul li a::before {
    content: "";
    position: absolute;
    background-color: #cf6362;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    z-index: -1;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}

.social_links ul li a::after {
    content: "";
    position: absolute;
    background-color: #c90622;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    z-index: -1;
    height: 40px;
    width: 38px;
    transition: all 0.3s ease;
}

.social_links ul li a:hover::before,
.social_links ul li a:hover::after {
    background-color: #ffffff;
}

.social_links ul li a:hover {
    color: #b91616;
}

.bnr_warpper {
    padding: 0 7% 0 0;
}

.banner-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
    position: absolute;
    bottom: -90px;
    width: 100%;
    z-index: 99;
}

.banner-progress-bar {
    width: 300px;
    height: 1px;
    background: rgb(255 255 255 / 20%);
    position: relative;
    overflow: hidden;
}

.banner-progress-bar-fill {
    height: 100%;
    background-color: rgb(255, 255, 255);
    width: 0%;
    transition: width 0.4s ease-in-out;
}

.span-p {
    font-family: 'trajan';
    font-size: 23px;
    font-weight: 500;
    line-height: 25px;
    color: rgb(255 255 255);
    padding: 0px 20px;
    transition: color 0.3s;
}

.span-p.active {
    color: rgb(255, 255, 255);
}

.banner_text {
    position: relative;
    z-index: 1;
}

.bnr_slid_left:hover,
.bnr_slid_right:hover {
    opacity: 1;
}

.bnr_slid_left {
    background: linear-gradient(rgb(177 0 28), rgb(177 0 28)) padding-box padding-box, linear-gradient(to left, rgb(178 0 28), rgb(255 255 255)) border-box border-box;
}

.bnr_slid_right {
    background: linear-gradient(rgb(177 0 28), rgb(178 0 28)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(177 0 27)) border-box border-box;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.bnr_slid_left img {
    transform: rotate(180deg);
}

.bnr_slid_left img,
.bnr_slid_right img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.bnr_slid_left,
.bnr_slid_right {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff00;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0.5;
    transition: 0.3s;
}

.bnr_slider .slick-list {
    overflow: visible;
}

.bnr_slider .slick-slide {
    opacity: 0;
}

.bnr_slider .slick-active {
    opacity: 1;
}

.carousel-inner {
    overflow: visible;
}

.menuSection {
    position: relative;
    z-index: 10;
}

.banner_text p {
    color: #898785;
    width: 100%;
}


/* banner */


/* application form page  */

.application_content form label {
    display: block;
    color: #000000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.application_content form input,
.application_content form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    color: #000;
    transition: border-color 0.3s;
    font-family: 'Montserrat';
}

.application_content form input::placeholder,
.application_content form textarea::placeholder {
    color: #00000086;
    font-weight: 500;
}

.application_content form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.3s;
    font-family: 'Montserrat';
}

.application_content form textarea {
    height: 250px;
    resize: none;
}

.application_content form input:focus,
.application_content form textarea:focus {
    outline: none;
    border-color: #7ac42d;
}

.app_check {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.app_check span {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat';
}

.app_check_box {
    appearance: none;
    -webkit-appearance: none;
    width: 30px !important;
    height: 20px !important;
    border: 1px solid #555 !important;
    border-radius: 4px !important;
    accent-color: #4CAF50;
    cursor: pointer;
    position: relative;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.app_check_box:checked {
    background-color: #4CAF50;
    border-color: #4CAF50 !important;
}

.app_check_box:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: -3px;
    left: 4px;
}


/* application form page  */


/* Privacy Policy page */

.privacy_page_content ul li {
    color: #888888;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.privacy_page_content ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    background-image: url(../images/check-list.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    z-index: 1;
}


/* Privacy Policy page */

:root {
    --red-grad: linear-gradient(180deg, rgba(237, 37, 34, 1) 0%, rgba(208, 29, 27, 1) 50%, rgba(181, 21, 20, 1) 100%);
    --green-grad: linear-gradient(180deg, rgba(137, 200, 40, 1) 0%, rgba(115, 194, 48, 1) 50%, rgba(100, 190, 52, 1) 100%);
    --glass: rgba(255, 255, 255, 0.85);
    --overlay-color: rgba(0, 0, 0, 0.35);
}


/* Floating Buttons */

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.circle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    transition: transform .2s ease, background .3s ease;
}

.circle-btn svg {
    width: 28px;
    height: 28px;
}

.circle-btn:hover {
    transform: translateY(-3px);
}

.circle-btn.green {
    background: var(--green-grad);
}

.circle-btn.red {
    background: var(--red-grad);
}


/* Overlay */

.overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-color);
    backdrop-filter: blur(6px);
    display: none;
    z-index: 9998;
}


/* Modal */

.modal {
    position: fixed;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.95);
    width: 900px;
    max-height: 80vh;
    background: #fff;
    backdrop-filter: blur(14px);
    border-radius: 10px;
    display: none;
    z-index: 9999;
    animation: pop .3s ease forwards;
    display: flex;
    flex-direction: column;
    height: auto;
}


/* Modal Anim */

@keyframes pop {
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}


/* Sticky header */

.modal-header {
    position: sticky;
    top: 0;
    background: var(--glass);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .05);
    font-weight: bold;
}


/* Modal Body Scroll */

.modal-body {
    overflow-y: auto;
    padding: 20px 20px 20px 0px;
}


/* Show More / Less */

.show-more,
.show-less {
    color: #000;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Montserrat';
}


/* Accordion */

.accordion-item {
    border: none;
    padding: 15px 0;
    margin-bottom: 10px;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-family: 'trajan';
    color: #000;
}

.arrow {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    font-size: 16px;
    transition: transform .25s ease;
    color: #bf0420;
}

.accordion-item.active .arrow {
    transform: rotate(90deg);
}

.accordion-desc {
    margin: 10px 0 0 32px;
    font-size: 14px;
}

.accordion-body {
    display: none;
    margin: 10px 30px 0 30px;
    animation: slideDown 0.25s ease forwards;
    padding: 0;
}

.accordion-item.active .accordion-body {
    display: block;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-cookies {
    background: #ff00000a;
    color: #9f1239;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}


/* Accessibility buttons */

.acc-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: var(--red-grad);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: transform .2s ease;
}

.acc-btn:hover {
    transform: translateY(-2px);
}

div#cookieTextFull {
    margin-bottom: 20px;
}

div#cookieTextFull p {
    margin-bottom: 10px;
}


/* Sticky footer */

.modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--glass);
    display: flex;
    justify-content: space-between;
    padding: 16px;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.modal-footer button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: transform .2s ease;
}

.modal-footer .reject {
    background: #ccc;
}

.modal-footer .save {
    background: var(--red-grad);
    color: #fff;
}

.modal-footer .accept {
    background: var(--green-grad);
    color: #fff;
}

.modal-footer button:hover {
    transform: translateY(-2px);
}


/* Prevent flash of modals on page load */

#cookieModal,
#accessibilityModal,
#overlay {
    display: none;
    /* hide initially; JS will control visibility */
}

.btnsss_flxx {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.ftr_links.ser-ft  ul li {
    margin-bottom: 9px;
}
.live-chet a {
    border: 1px solid #000;
    padding: 15px 16px;
    border-radius: 50%;
    position: fixed;
    left: 20px;
    bottom: 50px;
    z-index: 2;
    background: #cc0723;
    color: #fff;
    font-size: 32px;
    animation: gentleUpDown 2s infinite ease-in-out;
}
@keyframes gentleUpDown {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); } /* only 10px up */
      100% { transform: translateY(0); }
    }