:root {
  --white: #ffffff; 
  --black: #000000;
  --grey: #F5F5F5;
  --theme-grey: #ede7e1;
  --primary-color: #fcb53b;
  --primary-hover: #ffc869;
  --text-color: #1E1F20;
}

@font-face {
    font-family: 'luxury_stylishregular';
    src: url('../fonts/luxury_stylish.woff') format('woff2'),
         url('../fonts/luxury_stylish.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* { box-sizing: border-box;}
html, body { margin: 0;	padding: 0;	border: 0; vertical-align: baseline; font-family: "Poppins", sans-serif; font-optical-sizing: auto; font-style: normal; font-weight: 400; list-style: none; color:var(--black); line-height: 1.3;}
a:focus,button:focus,input:focus,textarea:focus { outline:0; text-decoration:none;}
h1,h2,h3,h4,h5,h6 { margin:0; padding:0; -webkit-font-smoothing:antialiased; margin-bottom:15px; color:var(--black); line-height: normal; line-height: 1.1; font-family: "Poppins", sans-serif; font-weight: 400;}
h1 { font-size: 4.4rem; font-weight: 300; line-height: 1.3;}
h2 { font-size: 4.4rem; font-weight: 300; line-height: 1.3;}
h3 { font-size: 28px;}
h4 { font-size: 24px;}
a { color:#018aff; text-decoration:none; transition:all ease-out .3s; -webkit-transition:all ease-out .3s; -moz-transition:all ease-out .3s;-ms-transition:all ease-out .3s; -o-transition:all ease-out .3s;}
a:hover { text-decoration:none;color:#3b90ff;}
label { font-weight:400;margin:0;}
p { font-size: 18px; line-height: 1.5; color: var(--text-color); margin:0; padding:0; font-weight: 400; margin-bottom:15px;}
li,ol,ul { list-style:none; margin:0; padding:0;}
focus { outline:0;}

/*========================== Commen styles ========================*/
.primary-btn { display: inline-flex; background: var(--primary-color); color: var(--black); font-size: 16px; padding: 16px 30px; padding-right: 55px; line-height: 1.1; font-weight: 500; transition: all ease-out 0.3s; position: relative; border-radius: 30px; overflow: hidden; border: 1px solid var(--primary-color);}
.primary-btn span { color: var(--black); position: relative; z-index: 2;}
.btn-icon { display: block; z-index: 3; margin-left: 7px; position: absolute; right: 25px; top: 0; bottom: 0; margin: auto;}
.checked-icon { width: 20px; height: 20px;}
.primary-btn:hover { transform: translate3d(0, -2px, 0); box-shadow: 0 12px 28px rgba(0, 0, 0, .12);}

.primary-btn.white-btn { background: var(--white); border: 1px solid #ffffff;}
.phone-icon { width: 16px !important; height: 16px !important;}

.hyperlink{font-weight: 400; color: var(--primary-color);}
.hyperlink:hover{color: var(--black);}
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--primary-color);

  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover::before, .hvr-underline-from-left:focus::before, .hvr-underline-from-left:active::before {
  right: 0;
}

.border-btn { display: inline-block; background: none; color: var(--black);  font-size: 16px; padding: 16px 30px; padding-right: 55px; line-height: 1.1; font-weight: 400; transition: all ease-out 0.3s;  position: relative; border-radius: 30px; overflow: hidden; border: 1px solid #ffffff;}
.border-btn svg { display: block; z-index: 3; margin-left: 7px; position: absolute; right: 25px; top: 0; bottom: 0; margin: auto; width: 20px; height: 20px;}
.border-btn span { color: var(--white); position: relative; z-index: 2;}
.border-btn:hover { background: #ffffff; color: var(--black); transform: translate3d(0, -2px, 0); box-shadow: 0 12px 28px rgba(0, 0, 0, .12);}
.border-btn:hover span { color: var(--black);}
.border-btn:hover svg path { fill: #000000;}

section { display: block; padding: 75px 0;}
/*========================== Commen styles ========================*/

.header { display: block; position: absolute; top: 42px; left: 0; width: 100%; z-index: 9; padding: 30px 0;}
.header .container,
.header .container-fluid { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: relative;}
.logo { width: 238px; display: block;}
.logo a { display: inline-block;}
.logo a img { display: block;}

.header-right { display: flex; flex-wrap: wrap; align-items: center;}
.header-right a { display: inline-block; margin-right: 25px;}

.main-mega-menu { display: flex; height: 100vh; width: 100%; position: fixed; top: 0; left: 0; z-index: 99; background: rgb(0 0 0 / 58%); backdrop-filter: blur(13px); transition: all ease-out 1s; opacity: 0; pointer-events: none; padding: 50px 0; overflow-y: auto;}
.main-mega-menu.expand { opacity: 1; pointer-events: visible;}
.main-mega-menu .menu-toggle { position: absolute; right: 15px; top: 15px; z-index: 9; width: 50px;}

/* ==========================================================================
   Menu with dropdown menu begin
   ========================================================================== */
.mobile-menu { display:block;}
.mobile-menu > ul { padding:10px 0}
.mobile-menu ul > li { border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative;}
.mobile-menu ul > li:first-child { border-top:none;}
.mobile-menu ul > li > a { display:block; color: var(--white); font-size: 32px; font-weight: 300; font-family: 'luxury_stylishregular'; padding: 15px 0;}
.mobile-menu ul > li > a:hover { color: #fcb53b;}
.mobile-menu ul.menu-list> li a.open,.mobile-menu ul.menu-list > li > ul > li a:hover { color: var(--primary-color);}
.mobile-menu ul > li > a > img { display: none;} 
.mobile-menu ul > li.dropdown > a { position:relative;}
.mobile-menu ul > li.dropdown > a:after { content: "\f107"; font-family: "FontAwesome"; font-size: 16px; color: var(--white); display: inline-block; position: absolute; right: 2px; top: 20px;}
.mobile-menu ul > li.drp > a { position:relative;}
.mobile-menu ul > li.drp > a:after { content:''; width:0; height:0; display:block; border:6px solid #fff; border-color: var(--white) transparent transparent transparent; position:absolute; right:15px; top:15px;}
.mobile-menu ul > li.drp > a.open:after { border:6px solid var(--white); border-color: transparent transparent var(--white) transparent; top:10px;}

.mobile-menu ul.menu-list { padding:5px 0;}
.mobile-menu ul.menu-list > li > ul {
  display: none;
  margin-left: 0;
  padding: 0;
  margin-bottom: 40px;
  margin-left: 15px;
}
.mobile-menu ul.menu-list > li > ul > li { border-top: none; list-style: none; padding: 10px 5px 10px 0;
  border-bottom: 1px solid #ffffff0f; display: inline-flex; width: 100%;align-items: center;}
.mobile-menu ul.menu-list > li > ul > li::before{content: "\f138"; color: var(--primary-color); margin-right: 15px;font-family: "FontAwesome";}
.mobile-menu ul.menu-list > li > ul > li::marker { color: #ffffff; font-size: 10px;}
.mobile-menu ul.menu-list > li > ul > li > a { color:#FFF; padding:5px 0; display:block; font-size: 18px;  transition:all ease-out .2s; -webkit-transition:all ease-out .2s;-moz-transition:all ease-out .2s;-ms-transition:all ease-out .2s;-o-transition:all ease-out .2s; font-family: "Poppins", sans-serif;}
/*======================================== Menu Style End =======================================*/

/*======================================== Menu Style End =======================================*/
.menu-toggle { display:flex; align-items: center; justify-content: space-between; max-width: 114px; width: 100%; box-sizing:border-box; border: none; background: none; padding: 0; position: relative; color: var(--white);}
.menu-toggle-icon { display:block; width:50px; height:50px; box-sizing:border-box; border: 1px solid var(--primary-color); border-radius: 100%; background: var(--primary-color); padding: 0; margin-left: 20px; padding: 16px 11px; text-align: left; position: relative;}
.menu-toggle-icon span.line { position:relative; width:100%; height:2px; background: var(--black); display:block; transition:all ease .3s; -webkit-transition:all ease .3s; -moz-transition:all ease .3s; -o-transition:all ease .3s; -ms-transition:all ease .3s}
.menu-toggle-icon span.line.b { width: 100%; margin-top: 6px;}
.menu-toggle-icon span.line.c { width: 100%; margin-top: 6px;}
.menu-toggle.active .menu-toggle-icon span.line { position:absolute; top:0; right: 0; bottom: 0; left:0; margin: auto; transform-origin:center center; width: 50%;}
.menu-toggle.active .menu-toggle-icon span.line.a { transform:rotate(45deg)}
.menu-toggle.active .menu-toggle-icon span.line.b { transform:rotate(-45deg); display: none;}
.menu-toggle.active .menu-toggle-icon span.line.c { transform:rotate(-45deg);}
/*======================================== Menu Style End =======================================*/


.home-page { overflow: hidden;}
.home-page h2 span { display: block; color: var(--primary-color); font-family: 'luxury_stylishregular';}
.padding-style1 { padding: 115px 0;}
.bg-yellow { background: #fee8c2 !important;}
.bg-grey { background: #f1f1f1 !important;}
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text ul li,
.white-text a { color: var(--white) !important;}

.bg-style { background-size: cover !important; background-repeat: no-repeat !important; background-position: center top !important;}
.padding-style-130 { padding: 130px 0;}
.commen-heading { font-size: 4.4rem; font-weight: 300; line-height: 1.3;}
.commen-heading .text-span { display: block;     font-family: "Poppins", sans-serif !important; color: var(--primary-color) !important;}
.commen-heading .text-span span { display: inline-block; position: relative;}

.owl-carousel .owl-stage { display: flex;}

section .container,
section .container-fluid { position: relative; z-index: 3;}

.line-animation .svg-elem-1 {
  stroke-dashoffset: 417.38232421875px;
  stroke-dasharray: 417.38232421875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
.aos-animate .line-animation .svg-elem-1 {
  stroke-dashoffset: 0;
}
.line-animation .svg-elem-2 {
  stroke-dashoffset: 452.47998046875px;
  stroke-dasharray: 452.47998046875px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.aos-animate .line-animation .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

.banner { display: flex; align-items: center; height: 100vh; background: var(--grey); overflow: hidden; background-size: cover !important; background-repeat: no-repeat !important; background-position: center top !important; position: relative; padding: 150px 0 70px;}
.banner::before { content: ''; width: 100%; height: 100%; display: block; position: absolute; left: 0; top: 0; z-index: 2; opacity: 0.4; background: #000000;
background: radial-gradient(circle,rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.94) 100%);}
.banner video { margin: 0px; padding: 0px; bottom: 0; height: 100%; display: block; width: 100%; object-fit: cover; z-index: 1; position: absolute; top: 0; left: 0; bottom: 0; margin: auto;}
.banner-text { display: block; max-width: 600px;}
.banner-text h1 { color: var(--primary-color); margin-bottom: 15px;}
.banner-text p { font-weight: 300; font-size: 18px; line-height: 1.6;}

.home-welcome-block { display: block; min-height: 750px; position: relative;}
.home-welcome-block::after { content: ''; width: 52.4%; height: 100%; display: block; background: #000000a3; backdrop-filter: blur(13px); position: absolute; right: 0; top: 0; clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);}
.home-welcome-box { display: block; position: relative; max-width: 523px; min-height: 750px; margin-left: 160px;}
.home-welcome-box .commen-heading { margin-bottom: 50px;}
.home-welcome-box .commen-heading .text-span { display: inline-block;}
.home-welcome-box .commen-heading .text-span svg { display: block;}
.home-welcome-box p { line-height: 1.7; margin-bottom: 35px;}
/* .home-welcome-box::after { content: ''; width: 1000px; height: 100%; display: block; background: #000000a3; backdrop-filter: blur(13px); position: absolute; right: -1000px; top: 0;} */
/* .home-welcome-box::before { content: ''; width: 149px; height: 100%; display: block; position: absolute; left: -148px; top: 0; background: #000000a3; clip-path: polygon(0 0, 100% 0%, 100% 100%, 74% 100%);} */


.message-vice-principal { display: block; position: relative;}
.message-vice-principal::after { content: ''; width: 55.5%; height: 100%; display: block; background: #fee8c2; position: absolute; left: 0; top: 0; clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);}
.message-left-block { display: flex; justify-content: end; position: relative; z-index: 3; padding-right: 160px;}
.message-body { display: block; max-width: 565px;}
.message-body h2 { font-size: 46px;}
.message-body p { margin-bottom: 35px;}
.message-right-block { display: block; position: relative; margin-left: -60px;}

.home-why-choose-block { display: block; min-height: 878px; position: relative; background: #F5F5F5; overflow: hidden;}
.home-why-choose-block::after { content: ''; width: 52.8%; height: 100%; display: block; background: #000000c7; backdrop-filter: blur(13px); position: absolute; right: 0; top: 0; clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%); z-index: 2;}
.home-why-choose-block .home-welcome-box { margin-left: 80px; max-width: 640px;}
.why-choose-img-slider { display: block; position: absolute; left: 0; top: 0; width: 100%; z-index: 1; height: 100%; background-color: #000;}
.why-choose-img-item { display: block; min-height:950px;}


.owl-controls { display: flex; justify-content: end;}
.owl-controls-box { display: block; position: relative; padding: 0 40px;}
.next-prev { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--white) !important; border-radius: 100%; font-size: 16px; color: var(--white); position: absolute; transition: all ease-out 0.3s; top: 0;}
.next-prev:hover { background: var(--white) !important; color: var(--black) !important;}
.next-prev.next { left: 0;}
.next-prev.prev { right: 0;}
.owl-trigger-dots { display: flex; align-items: center; min-height: 30px;}

/* DOT CONTAINER */
.owl-dots { display: flex; align-items: center; justify-content: center;}
/* DOT BUTTON */
.owl-dots .owl-dot { background: none !important; border: none !important; padding: 0 !important; margin: 0 5px;}
/* ACTUAL DOT */
.owl-dots .owl-dot span { width: 8px; height: 8px; display: block; border-radius: 50%; background: var(--white); transition: all 0.3s ease;}
/* ACTIVE DOT */
.owl-dots .owl-dot.active span { background: var(--primary-color);}

.owl-trigger-dots .custom-dot { background: none !important; border: none !important; padding: 0 !important; margin: 0 5px;}
.custom-dot span { width: 8px; height: 8px; display: block; border-radius: 50%; background: #ffffff !important; border: none; cursor: pointer;}
.custom-dot.active span { background: #fcb53b !important;}

.why-choose-slider { display: block; border: 1px solid #FCB53B; border-radius: 25px; padding: 50px; margin-bottom: 40px;}
.why-choose-slider .owl-stage { display: block;}
.why-item { display: block;}
.why-item h3 { margin-bottom: 30px;}

.why-choose-carousel .owl-nav,
.why-choose-carousel .owl-dots,
.why-choose-img .owl-nav,
.why-choose-img .owl-dots { display: none;}
.why-item p { margin-bottom: 0 !important;}

.inline-head .commen-heading .text-span { display: inline-block;}
.inline-head .commen-heading .text-span svg { display: block;}

.home-testimonial-block { display: block; position: relative;}
.home-testimonial-block::after { content: ''; width: 55%; height: 100%; display: block; background: #e4e4e4; position: absolute; left: 0; top: 0; clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);}
.home-testimonial-block .owl-controls { justify-content: center; margin-top: 35px;}
.heading-block { display: block; margin: auto; max-width: 980px;}
.testimonials-main { display: block;}
.testimonials-slider .owl-item { padding: 45px 5px; opacity: 0.45;}
.testimonials-slider .center.owl-item { opacity: 1; transform: scale(1.2);}
.testimonial { display: block; background: #FFFFFF; box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.21); border-radius: 30px; padding: 45px; padding-bottom: 115px; position: relative; height: 100%;}
.testi-body { display: block;}
.testi-body p { font-size: 15px; line-height: 1.3;}
.testi-body .icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 100%; overflow: hidden; margin-bottom: 30px;}
.testi-body .icon img { width: 100%; height: 100%; display: block;}
.testi-footer { display: block; position: absolute; left: 0; bottom: 0; padding: 20px 45px;}
.testi-footer .stars { display: flex; margin-bottom: 10px}
.testi-footer .stars i { color: #ffc107; font-size: 10px;}
.testi-footer h5 { font-size: 15px; font-weight: 600;}
.home-testimonial-block .next-prev { border-color: #000000 !important; color: #000000;}
.home-testimonial-block .next-prev:hover { border-color: #ffc107 !important; color: #ffc107 !important; background: none !important;}
.home-testimonial-block .owl-dots .owl-dot span { background: #000000 !important;}
.home-testimonial-block .owl-dots .owl-dot.active span { background: #ffc107 !important; color: #ffc107 !important;}

.insta-feed-block { display: block; position: relative;}
.insta-feed-block::after { content: ''; width: 53.2%; height: 100%; display: block; background: #0d0d0d; position: absolute; right: 0; top: 0; clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);}
.insta-feed-block .commen-heading .text-span { display: inline-block;}
.insta-feed-block .commen-heading .text-span svg { display: block;}
.insta-feed-block h3 { font-weight: 300; color: var(--primary-color) !important;}

.home-contact-block { display: block;}
.home-contact-block .commen-heading { font-size: 3.3rem;}
.home-contact-right { display: block;}
.home-contact-right a { display: block; margin-bottom: 18px; padding: 16px 30px; text-align: center; vertical-align: middle;}
.home-contact-right a .btn-icon { position: static; display: inline-block; vertical-align: middle; margin-left: 8px;}

.connect-with-us .social { display: flex; align-items: center; justify-content: center; flex-wrap: wrap;}
.connect-with-us .social a { display: block; color: var(--white); font-size: 22px; margin: 5px 10px; font-weight: normal;}
.connect-with-us .social a:hover { color: var(--primary-color) !important;}
.connect-with-us h4 { color: var(--primary-color) !important; font-size: 30px;}

.footer { display: block; background: #1e1f20;}
.footer-top-block { display: block;}
.footer-top-block h5 { color: var(--primary-color) !important; font-size: 30px; margin-bottom: 40px;}
.footer-links { display: block;}
.footer-links ul li { display: block; margin-bottom: 20px;}
.footer-links ul li a { display: inline-block; font-size: 20px;}
.footer-links ul li a:hover { color: var(--primary-color) !important;}
.footer-bottom-block { display: block; background: #18191a; padding: 30px 0;}
.footer-bottom-block p { font-size: 15px;}
.footer-bottom-block p a { text-decoration: underline;}
.footer-bottom-block p a:hover { color: var(--primary-color) !important;}

.footer-address-block { display: block;}
.footer-address-block ul li { display: block; margin-bottom: 20px;}
.footer-address-block ul li a { display: inline-block; font-size: 20px; padding-left: 45px; position: relative;}
.footer-address-block ul li a i { display: inline-block; position: absolute; left: 0; top: 0;}
.footer-address-block ul li a:hover { color: var(--primary-color) !important;}

.floating-actions { display: block; position: fixed; top: 0; bottom: 0; right: 45px; margin: auto; height: 210px; width: 52px; z-index: 9;}
.floating-actions a { display: block; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--primary-color); color: var(--black); margin-bottom: 15px; border-radius: 100%; transition: all ease-out 0.3s; position: relative;}
.floating-actions a i { font-size: 22px;}
.floating-actions a.whats-app { background: #25d366 !important; color: var(--white) !important;}
.floating-actions a.whats-app i { font-size: 26px;}
.floating-actions a:hover { transform: translate3d(0, -2px, 0); box-shadow: 0 12px 28px rgba(0, 0, 0, .12);}

/* ==========================  Inner Pages  ============================ */

.inner-page h2 { font-family: 'luxury_stylishregular'; font-size: 3rem;}
.inner-page h2 span { font-family: "Poppins", sans-serif;}
.inner-page p { margin-bottom: 30px;}
.inner-page h3 { font-size: 30px;}
.inner-page .commen-heading { font-size: 3.3rem; font-family: "Poppins", sans-serif !important;}
.inner-page .commen-heading .text-span span { font-family: "Poppins", sans-serif !important;}

.inner-banner-heading { font-size: 4.4rem; font-weight: 300; line-height: 1.3;}
.inner-banner-heading .text-span { font-family: 'luxury_stylishregular'; color: var(--primary-color); font-weight: 400; display: inline-block;}
.inner-banner-heading .text-span span svg { display: block;}
.inner-banner { display: flex; align-items: end; justify-content: center; min-height: 682px; padding: 150px 0 70px; position: relative;}
.inner-banner::after { content: ''; width: 100%; height: 100%; display: block; position: absolute; left: 0; top: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);}
.inner-banner-text { display: block; text-align: center;}

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;}
.breadcrumb li { display: block; padding: 0 15px; font-size: 19px; font-weight: 300; position: relative; list-style: 1.2;}
.breadcrumb li a { font-size: 19px; font-weight: 300;}
.breadcrumb li a:hover { color: var(--primary-color) !important;}
.breadcrumb li::before { content: ''; width: 1px; height: 20px; display: block; background: #ffffff; position: absolute; left: 0; top: 1px;}
.breadcrumb li:first-child:before { display: none;}

.vice-principal-message-block { display: block;}
.vice-principal-message { display: block; max-width: 800px; margin: auto;}

.black-heading .commen-heading .text-span span { color: #000000;}
.line-element { display: flex; justify-content: end;}
.where-next-block { position: relative;}
.where-next-box { display: block; position: relative;}
.where-next-box::before { content: ''; width: 100%; height: 100%; display: block; position: absolute; left: 0; top: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%); transition: all ease-out 0.3s;}
.where-next-body { display: block; position: absolute; left: 0; bottom: 0; padding: 50px; padding-right: 80px; z-index: 3; width: 100%;}
.where-next-h3 { font-size: 36px; display: block; font-weight: 300;}
.next-arrow { display: inline-block; position: absolute; right: 50px; top: 58px;}
.where-next-box:hover .next-arrow svg path { fill: var(--primary-color);}
.where-next-box:hover .where-next-h3 { color: var(--primary-color);}
.where-next-box:hover::before { background: linear-gradient(180deg, rgba(0, 0, 0, 0.192) 0%, rgba(0, 0, 0, 0.90) 100%);}

.bg-light-yellow { background: #FFF8EB !important;}
.hope-stories-block { display: block;}
.stories-slider-main { display: block; position: relative;}
.stories-card { display: block; background: #ffffff; position: relative; overflow: hidden; border-radius: 20px; height: 100%; transition: all ease-out 0.3s;}
.stories-card-image { display: block; position: relative; margin-bottom: 0;}
.stories-card-body { display: block; padding: 35px;}
.stories-card-body p { margin-bottom: 0; font-weight: 500; font-size: 18px;}
.stories-card-body p span { display: block; color: #57595B; font-size: 15px; font-weight: 400; padding-bottom: 15px;}
.stories-slider .owl-item { padding: 15px;}
.stories-card:hover { /*box-shadow: 0 0 0 2px var(--primary-color);*/ transform: scale(1.05);}

.stories-slider .owl-nav { position: absolute; left: 0; top: 50%; width: 100%;}
.stories-slider .owl-nav button { position: absolute; top: 0;}
.stories-slider .owl-nav button span { font-size: 25px; color: #583F15;}
.stories-slider .owl-nav button.owl-prev { left: -25px;}
.stories-slider .owl-nav button.owl-next { right: -25px;}

.our-school { display: block;}
.our-school-main { display: block;}
.our-school-block .commen-heading { font-size: 46px;}

.facilities-main { display: block;}
.facilities-card { display: block;}
.facilities-card-image { display: block; position: relative;}
.facilities-card-image figure { margin: 0;}
.facilities-card-image img { display: block;}
.facilities-card-body { display: block; padding-top: 25px;}
.facilities-card-body h3 { line-height: 1.4;}
.facilities-card-cont { display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding: 40px; background: rgba(255, 255, 255, 0.801); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: all ease-out 0.3s; overflow-y: auto;}

.facilities-card-cont::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.048); background-color: #f3efe7; border-radius: 10px;}
.facilities-card-cont::-webkit-scrollbar { width: 8px; background-color: #f3efe7;}
.facilities-card-cont::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #FFF; background-image: -webkit-linear-gradient(top,#fff3dd 10%, #fde5bc 35%, #fcd289 75%, #fcb53b 100%);}

.facilities-card-cont h4 { line-height: 1.4;}
.facilities-card-cont p { line-height: 1.5;}
.facilities-card-image:hover .facilities-card-cont { opacity: 1; pointer-events: visible;}

.icon-card-style{background-color: #0009; border-radius: 10px; padding: 30px; text-align: center;  min-height: 170px; align-items: center; display: flex; justify-content: center; border: 1px solid var(--primary-color); }
.icon-card-style i{font-size:45px; margin-bottom: 15px; color: var(--primary-color);}
.icon-card-style h6{margin-bottom: 0px; font-weight: bold ; color: var(--primary-color);}
.icon-card-style:hover{background-color: var(--white);  color: var(--primary-color); color: var(--primary-color); border: 1px solid var(--primary-color);}
.icon-card-style:hover h6{color: var(--primary-color);}
.icon-card-style:hover i, .icon-card-style:hover h6{color: var(--black);} 

.social-menu {display: flex;}
.social-menu h6{color: var(--white);}
.social-menu ul{border-left: 1px solid var(--white);padding: 0 0 0 10px; margin-left: 20px;}
.social-menu ul li{display: inline-block;}
.social-menu ul li a{color: var(--white);}
.social-menu ul li a:hover{color: var(--primary-color);}

.inner-commen-top-block { display: block; background: #f5f7f9;}
.inner-commen-top-left { display: flex; justify-content: end; padding-top: 100px; padding-bottom: 75px;}
.inner-commen-top-box {display: block;
  background: var(--white);
  padding: 40px;
  margin-right: -200px;
  position: relative;
  z-index: 2;
  max-width: 753px;
  width: 100%;}

.curriculum-slider .owl-item { padding: 43px 20px;}
.curriculum-item-block { display: block;}
.curriculum-card { display: block; background: #FFFFFF; box-shadow: 0px 4px 25px 10px rgba(0, 0, 0, 0.06); height: 100%;}
.curriculum-card-image { display: block;}
.curriculum-card-body { display: block; padding: 50px 55px;}
.black-border-btn { display: inline-block; border: 1px solid #000000; padding: 10px 30px; border-radius: 30px; color: var(--black);}
.black-border-btn:hover { background: var(--black); color: var(--white);}
.curriculum-slider .owl-nav { width: 48%; position: absolute; left: 0; right: 0; top: 50%; margin: auto;}
.curriculum-slider .owl-nav button { position: absolute; top: 0; width: 66px; height: 66px; display: flex; align-items: center; justify-content: center; border-radius: 100%; background: #ffffff !important; box-shadow: 0px 1px 28px rgba(0, 0, 0, 0.2); border: 1px solid var(--white);}
.curriculum-slider .owl-nav button:hover { border-color: var(--primary-color); color: var(--primary-color);}
.curriculum-slider .owl-nav button.owl-prev { left: 0;}
.curriculum-slider .owl-nav button.owl-next { right: 0;}



.card-team-style{background: #fff09e;
background: linear-gradient(180deg, rgba(255, 240, 158, 1) 0%, rgba(255, 255, 255, 1) 25%) ;position: relative; height: 100%;}
.card-team-style .line{background: url(../img/line-vector.svg) no-repeat center !important;}
.card-team-style .content-block{padding: 0 45px 70px 45px; text-align: center;}
.card-team-style .content-block h6{ font-weight: 400;color: #585858;}
.card-team-style .content-block h6::after {
  margin: 15px auto;
  content: "";
  width: 35px;
  height: 5px;
  background-color: var(--primary-color);
  display: block;
}
.card-team-style .content-block p{margin: 0px; font-size: 15px; color: var(--text-color);}
.card-team-style .img-block{padding: 50px 0; text-align: center;}
.card-team-style .img-block .round-pic{width: 150px; height: 150px; border-radius: 100%; background-color: var(--white); border: 100%;box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.11); margin: 0px auto; text-align: center; padding: 10px; overflow: hidden;display: flex;align-items: center;justify-content: center; border:8px solid var(--white); background: url(../img/dot-vector.svg);}
.card-team-style .img-block .outer-pic{background: url(../img/dot-vector.svg) no-repeat 37% 10px;}
.card-team-style .plus-add-btn{margin: 0px auto; text-align: center; margin: 0px auto; border: 1px solid var(--primary-color); width:50px; height: 50px; border-radius: 100%; align-items: center; display: flex; justify-content: center;position: absolute;
bottom: -25px;
  right: 0;
  left: 0;
  background: #fff;}
  .card-team-style .img-block .round-pic img{width: 145px;}
  .card-team-style .plus-add-btn i{color: var(--primary-color);}
  .card-team-style .plus-add-btn:hover{background-color: var(--primary-color);}
  .card-team-style .plus-add-btn:hover i{color: var(--black);}

  .card-style1{background-color: var(--white); border-radius:20px; padding: 50px; height: 100%; align-items: center; display: flex;}
  .card-style1 p{margin-top: 30px; margin-bottom: 0;}
  .img-style-round{border-radius: 30px;}

  
  .card-style2{background-color: var(--white); border-radius:20px; padding: 30px; height: 100%; }
  .widget_container{padding: 0px !important;}


.process-box-style{background-color: var(--white); padding: 45px;}
.process-card-style .process-item{border-bottom: 1px solid #b9b9b9; padding: 45px 0; display: flex; }
.process-card-style .process-item .number{margin-right: 45px; text-align: center; padding: 0 50px 0 0; border-right: 1px solid #b9b9b9;}
.process-card-style .process-item .number h2{font-weight: bold; margin-bottom: 0px;}

ul.list-style1 li{padding: 0 0 20px 25px;position: relative;}
ul.list-style1 li:before{content: "\f054"; position: absolute; left: 0;font-family:FontAwesome; color: var(--primary-color); font-size: 14px;}




.table-style1 .table-wrapper {
  max-width: 100%;
  border-radius: 12px;
  padding: 0;
  overflow-x: auto;
  background-color: var(--white);
}

.table-style1 .responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.table-style1 .responsive-table th,
.table-style1 .responsive-table td {
  border: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
}

.table-style1 .responsive-table thead th {
  background: #f9fafb;
  font-weight: 600;
  text-align: center;
}

.table-style1 .center {
  text-align: center;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .table-style1 .responsive-table thead {
    display: none;
  }

  .table-style1 .responsive-table,
  .table-style1 .responsive-table tbody,
  .table-style1 .responsive-table tr,
  .table-style1 .responsive-table td {
    display: block;
    width: 100%;
  }

  .table-style1 .responsive-table tr {
    margin-bottom: 15px;

    border-radius: 8px;

  }

  .table-style1 .responsive-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    font-size: 13px;
  }

  .table-style1 .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: 600;
    text-align: left;
    font-size: 13px;
  }
}


.contact-card-style1{border: 2px solid var(--primary-color); border-radius: 15px; padding: 35px; height: 100%;}
.contact-card-style1 .hed-block{display: flex; align-items: center;margin-bottom: 25px;}
.contact-card-style1 .hed-block .icon-box{background-color: var(--primary-color);
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center; margin-right: 15px;}
 
  .contact-card-style1 .hed-block h6{margin: 0px; font-weight: 600;}
    .contact-card-style1 .hed-block .icon-box i{font-size: 20px;}
    .contact-card-style1 a{font-size: 18px; color: var(--text-color); margin:14px 0; display: block; border-left:2px solid var(--primary-color) ;  padding: 0 0 0 10px;}


    .contact-form-block { display: block; background: var(--white); padding: 35px; box-shadow: 0px 4px 14.88px 1.12px rgba(0, 0, 0, 0.06); height: 100%;}
.contact-form { display: block; position: relative;}
.contact-form label { display: inline-block; position: absolute; left: 18px; top: -8px; background: var(--white); padding: 3px 16px; z-index: 2; font-size: 13px; color: var(--secondary-colors); line-height: 1;}
.form-input { border: 1px solid #cccccc; width: 100%; height: 53px; border-radius: 8px; padding: 0 20px;}
.form-textarea { border: 1px solid #cccccc; width: 100%; height: 114px; border-radius: 8px; padding: 10px 20px; resize: none;}
.yellow-btn { border: none; transition: all ease-out 0.3s;}
.full-width{width: 100%; text-align: center; display: block;}

.browe-input{padding-top: 22px; font-size: 14px; height: 53px;}
.career-box-style h4{margin: 0px;}
.career-box-style .radio-style label{margin-right: 15px;}
.career-box-style input[type="radio"]:checked {
  accent-color:  var(--primary-color); 
}

.card-style-blog{background: var(--white); height: 100%; position: relative;}
.card-style-blog .date {
  background-color: var(--primary-color);
  color: var(--black);
  width:75px;
  height: auto;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  text-align: center;
}
.card-style-blog .date h5{font-size:30px; margin: 0px; font-weight: 600;}
.card-style-blog .date h6{font-size:16px;margin: 0px;font-size: 13px;}
.card-style-blog .content{padding: 35px;}
.card-style-blog .content h5{line-height: 28px;}

.inner-banner-small{min-height: 300px !important;}
.advisory-board-card h5{margin: 0px;}

.card-style-block1{box-shadow: 0px -1px 14px 0px rgba(0,0,0,0.08);
-webkit-box-shadow: 0px -1px 14px 0px rgba(0,0,0,0.08);
-moz-box-shadow: 0px -1px 14px 0px rgba(0,0,0,0.08); padding: 40px; height: 100%; background: #fffffff2;}
.card-style-block1 p{font-size: 15px;}
.card-style-block1 h4{font-weight: 400;}

.round-card-style{border-radius:100px; background-color: var(--white); min-height: 270px;padding:15px 0 0 0 !important; }
.round-card-style .round{width:142px; height: 142px; background-color:var(--primary-color); border-radius: 100%;text-align: center; margin: 0px auto; align-items: center; display: flex; justify-content: center;}
.round-card-style .content{text-align: center; margin: 0px auto; padding: 15px 0 20px 0; width: 97%;}
.round-card-style .content h5{font-size: 16px; font-weight: 400; line-height: 23px; }
.round-card-style img{width:70px;}

.where-next-block{display: none !important;}

.video-map{overflow: hidden; border-radius: 25px;}
 video::-webkit-media-controls {
    display: none !important;
  }
  video {
    pointer-events: none; /* disables click */
  }



  .student-card{border-radius: 20px; overflow: hidden; height: 400px; position: relative; display: block;transition: all ease-out 0.3s;}
.student-card:hover{transform: scale(1.05);}
.student-card .title-box{position: absolute; bottom: 0; background:url(../img/blur-text-bg1.svg) no-repeat top; width: 100%;padding: 55px 35px 20px 35px;}
.student-card .title-box h5{color: var(--white); font-weight: 600; margin-bottom: 5px;}
.student-card .title-box h6{color: var(--primary-color);}



.widget_container{padding:0px !important;}


.senior-team{overflow: hidden; position: relative;}
.senior-team img{transition: transform .5s, filter 1.5s ease-in-out;}
.senior-team:hover img {transform: scale(1.1);}
.senior-team .details-box{position: absolute; bottom: 0; padding:25px; height: 100%;background: #1E1F20;
background: linear-gradient(0deg, rgba(30, 31, 32, 0.5) 0%, rgba(30, 31, 32, 0) 60%); width: 100%;}
.senior-team .details-box .text-box{position: absolute; bottom: 30px; color: var(--white);}
.senior-team .details-box .text-box h4{color: var(--white); font-weight: 600;}
.senior-team .details-box .text-box h6{color: var(--white); margin: 0px; font-size: 14px;}
















 .modal-header{
  padding: 20px 50px;
  background-color: #fff;
  position: fixed !important;
  top: 0;
  width:50%;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content:space-between;
  position: absolute;
  z-index: 999999;
}

 .modal-header h4{margin: 0px; font-weight:400;}
/* Left side */
.outer-team .left {
    width: 30%;
    padding: 20px;
}

.outer-team .item {
    padding: 15px;
    margin-bottom: 10px;
    background: #f2f2f2;
    cursor: pointer;
    border: 1px solid #ccc;
}

.outer-team .item:hover {
    background: #ddd;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9;
}

/* Content box (Right panel) */
.contentBox {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;          /* full height */
    background: #fff;
    padding:0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.4s ease;
    z-index: 10;

    overflow-y: auto;      /* ENABLE SCROLL */
}

.contentBox.active {
    right: 0;
}

/* Close button */
.closeBtn {
    font-size: 18px;
    cursor: pointer;
    float: right;
    width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #dee2e6;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.closeBtn:hover{
  transform: scale(1.1);
}
.content-text-block {
  padding: 100px 50px 50px 50px;
}

.profile-details{margin-bottom: 30px; display: block; align-items: center;}
.content-text-block .profile-img img{width: 250px;}
.content-text-block .name-here {
  margin: 30px 0 0 0;
}
.content-text-block .name-here h4{font-weight: 600;}
.content-text-block .name-here h6{margin-bottom: 0px;}
.content-text-block p{font-size: 16px;}


.float-img {
    float: left;
    margin: 0 20px 0px 0; /* space around image */
    width: 220px;
  }

  .widget_container{padding: 0px !important;}










  
.login-all{ bottom: 60px; right: 30px; position: fixed; bottom: 20px; right: 45px; z-index: 99999; display: flex; align-items: center;transition: all ease-out 0.3s;}
.login-all:hover{transform: translate3d(0, -2px, 0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);}
.login-all .icon{width: 52px; height: 52px; border-radius: 100%; background-color: var(--primary-color); margin-left: 10px; display: flex; justify-content: center;}
.login-all .icon img{width: 40px !important;}
.login-all .text {
  background-color: #00000091;
  color: var(--grey);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding: 4px 20px 4px 12px;
  font-size: 13px;
  margin-right: -22px;
}
.login-block{padding: 70px 0 ;}
.login-box{ box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1); background-color: var(--white);border-radius: 14px 14px 14px 14px;
-webkit-border-radius: 14px 14px 14px 14px;
-moz-border-radius: 14px 14px 14px 14px;overflow: hidden;}
  .login-box .img-block{overflow: hidden;}
  .login-box .content-block{padding: 50px 30px; text-align: center;}



  
.announcement-wrapper {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  color: #fff;
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.announcement-label {
  background: #c40000;
  padding: 12px 20px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
}

.announcement-scroll {
  flex: 1;
  overflow: hidden;
}

.announcement-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollMove 55s linear infinite;
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.announcement-text a{color: var(--primary-color);}
.announcement-text a:hover{text-decoration: underline;}

@keyframes scrollMove {
  0% { transform: translateX(50%); }
  100% { transform: translateX(-100%); }
}

/* Pause on hover */
.announcement-wrapper:hover .announcement-text {
  animation-play-state: paused !important;
}
.announcement-scroll:hover .announcement-text {
  animation-play-state: paused !important;
}



















/* 
font-family: "Poppins", sans-serif;
font-family: 'luxury_stylishregular';
*/

/* 
:root {
  --white: #ffffff; 
  --black: #000000;
  --grey: #F5F5F5;
  --theme-grey: #ede7e1;
  --primary-color: #fa4729;
  --primary-hover: #fc6f56;
}
*/