@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: SatoshiRegular, sans-serif;
}

body {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.with-fancybox {
    overflow: auto;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "CanelaLight", serif;
}

.fancybox__backdrop {
    backdrop-filter: blur(14px);
}

@font-face {
    font-family: 'SatoshiRegular';
    src: url("../font/Satoshi-Regular.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiBold';
    src: url("../font/Satoshi-Bold.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiBlack';
    src: url("../font/Satoshi-Black.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiMedium';
    src: url("../font/Satoshi-Medium.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiLight';
    src: url("../font/Satoshi-Light.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'CanelaLight';
    src: url("../font/canela/Canela-Light-Trial.otf") format('opentype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CanelaRegular';
    src: url("../font/canela/Canela-Regular-Trial.otf") format('opentype');
    font-display: swap;
    font-style: normal;
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    border-radius: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffe9e9;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #D40000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #D40000;
}

.font1 {
    font-family: "SatoshiRegular", sans-serif;
}

.font2 {
    font-family: "SatoshiBold", sans-serif;
}

.font3 {
    font-family: "SatoshiMedium", sans-serif;
}

.font4 {
    font-family: "SatoshiBlack", sans-serif;
}

.font5 {
    font-family: "SatoshiLight", sans-serif;
}

.canelalt {
    font-family: "CanelaLight", serif;
}

.canelareg {
    font-family: "CanelaRegular", serif;
}

.container-fluid {
    padding: 0 8px;
}

.bg {
    background-color: #D40000;
}

.bg1 {
    background-color: #003C86;
}

.bg2 {
    background-color: #F5F5F5;
}

.color {
    color: #D40000;
}

.color1 {
    color: #FBFF00;
}

.color2 {
    color: #003C86;
}

.color3 {
    color: #565656;
}

.color4 {
    color: #292929;
}

.color5 {
    color: #078a24;
}

p,
a,
ul,
ul li,
ul li a,
a,
.form-label,
button,
.marquee-content a {
    font-size: 13px;
}

.padding {
    padding: 41px 0;
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customshadow {
    box-shadow: 0px 1px 7.3px rgb(0 0 0 / 11%);
}

.subheading {
    font-size: clamp(22px, 2.5vw, 45px);
}

.bannerheading {
    font-size: clamp(23px, 3vw, 43px);
}

.subtext {
    font-size: clamp(15px, 2vw, 17px);
    line-height: normal;
}

section.announcement_header {
    display: none;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    padding: 5px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
    padding-right: 25px;
}

.marquee-content a {
    color: #ffffff;
    font-size: 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.verticalline {
    background-color: white;
    opacity: 1;
    width: 1.5px;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 19px;
    border: 1px solid transparent;
    border-radius: 50px;
    background: #003C86;
    color: white;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform .5s ease, background .5s ease;
    width: max-content;
}

.cta-btn.ctabtnwhite {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18), transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: -1;
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.cta-btn .arrow {
    display: grid;
    place-items: center;
    transition: transform .5s ease;
}

.cta-btn .arrow svg {
    width: 18px;
    height: 12px;
    transform: translateY(1px);
}

.cta-btn:hover {
    background: #002b6f;
}

.cta-btn.ctabtnwhite:hover {
    background: transparent;
}

.cta-btn:hover::before {
    transform: translateX(100%);
}

.cta-btn:hover .arrow {
    transform: translateX(6px);
}

.applynowsticky {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 15;
}

.carousel-control-next,
.carousel-control-prev {
    width: 7%;
}

section.banner .card-img-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 7.6%, #000000 116.07%);
    display: flex;
    justify-content: end;
    flex-direction: column;
}

section.banner .card img {
    animation: zoomin 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes zoomin {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-filter: blur(5px);
        filter: blur(5px);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
    }
}

section.banner .card-img-overlay .contentbox {
    padding-bottom: 6px;
}

.smallhead {
    display: flex;
    align-items: center;
    gap: 5px;
}

.smallhead img {
    width: 20px;
}

.smallhead p {
    font-size: clamp(14px, 2vw, 18px);
}

.mainheading {
    font-size: clamp(23px, 3vw, 37px);
    color: #292929;
}

.secondaryheading {
    font-size: clamp(21px, 2vw, 26px);
}

section.aboutus {
    position: relative;
}

.lineart {
    position: absolute;
    top: 0;
}

section.aboutus .mainheading {
    width: 91%;
}

.animated_line {
    stroke-dashoffset: 0;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -500;
    }
}

section.whychoose {
    position: relative;
}

section.whychoose .chbox {
    padding: 35px 18px;
    padding-bottom: 67px;
    position: relative;
    overflow: hidden;
}

section.whychoose .chbox .numbertext {
    width: 61px !important;
}

section.whychoose .chbox .arrowbox {
    background: white;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -2px;
    right: 0;
}

section.whychoose .chbox .arrowbox svg {
    width: 17px !important;
}

#infrastructureowl .item {
    opacity: 0.3;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

#infrastructureowl .owl-item.active.center .item {
    opacity: 1;
    pointer-events: all;
}

section.infrastructure {
    position: relative;
}

section.infrastructure .card-img-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.25%, #000000 109.56%);
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 19px 14px;
}

section.infrastructure .card {
    overflow: hidden;
}

section.infrastructure .card img {
    height: 315px;
    object-fit: cover;
}

.owl-nav {
    position: absolute;
    top: -57px;
    margin-top: 0 !important;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.owl-nav img {
    width: 21px;
}

section.infrastructure .lineart,
section.contact_page .lineart,
section.history_page .lineart,
section.faq_page.docpage .lineart {
    rotate: 6deg;
    top: -40px;
    left: -548px;
}

section.infrastructure .lineart svg,
section.contact_page .lineart svg,
section.history_page .lineart svg,
section.faq_page.docpage .lineart svg {
    width: 1874px;
}

section.toppersection .lineart {
    top: 105px;
    display: none;
}

section.toppersection .card .topperimg {
    width: 76%;
    margin: 0 auto;
    margin-top: -70px;
}

section.toppersection #topperlist .item {
    padding-top: 90px;
    padding-bottom: 15px;
}

section.toppersection .card .card__body {
    padding-top: 15px;
    padding-bottom: 20px;
}

#topperlist .owl-nav,
#speakowl .owl-nav {
    position: initial;
}

section.testimonial .speakbox_one {
    background-color: white;
    padding: 25px 15px;
    position: relative;
    height: 190px;
    /* height: 293px; */
}

section.testimonial .speakbox_one .commaicn {
    position: absolute;
    right: 21px;
    top: 28px;
}

section.testimonial .speakbox_one .commaicn img {
    width: 59px;
}

section.testimonial .speakbox_one .truncate {
    -webkit-line-clamp: 6;
}

section.testimonial .speakbox_one .user_img {
    width: 80px;
}

section.testimonial .speakbox_one.customshadow {
    box-shadow: 0px 1px 7.3px rgb(0 0 0 / 11%);
}

.stickybox {
    position: sticky;
    top: 135px;
}

section.testimonial .mainspeakbox {
    display: none;
}

section.testimonial #speakowl .item {
    padding: 15px 5px;
}

section.alumni .card-img-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.59%, #000000 100%);
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: center;
}

section.alumni .alumnibox {
    padding: 10px;
    background:
        repeating-linear-gradient(90deg,
            #003c8636 0 10px,
            transparent 4px 16px) top,
        repeating-linear-gradient(90deg,
            #003c8636 0 10px,
            transparent 4px 16px) bottom,
        repeating-linear-gradient(0deg,
            #003c8636 0 10px,
            transparent 4px 16px) left,
        repeating-linear-gradient(0deg,
            #003c8636 0 10px,
            transparent 4px 16px) right;

    background-repeat: no-repeat;
    background-size:
        100% 1.2px,
        100% 1.2px,
        1.2px 100%,
        1.2px 100%;
}

#alumniowl .owl-nav {
    position: initial;
    margin-top: 29px !important;
}

#alumniowl .owl-nav img {
    width: 37px;
}

section.blogarticle .blog_mainbox {
    padding: 19px 13px;
    box-shadow: 0px 1px 7.3px rgba(0, 0, 0, 0.15);
    width: 94%;
    margin: 0 auto;
    margin-top: -74px;
    position: relative;
}

section.blogarticle .smallblogbox {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E8E8E8;
}

section.blogarticle .smallblogbox .blogbox1 {
    flex: 0 0 122px;
}

section.blogarticle .smallblog_img {
    height: 86px;
    object-fit: cover;
    aspect-ratio: 1.75 / 1;
}

section.blogarticle .blog_mainimg {
    height: 225px;
    object-fit: cover;
}

section.blogarticle .smallblogbox .blogbox2 {
    padding-right: 10px;
}

section.blogarticle .smallblogbox .blogbox2 .secondaryheading {
    font-size: clamp(16px, 2vw, 23px);
}

footer {
    margin-bottom: 32px;
}

.icon_1 {
    background: white;
    color: #D40000;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_1.iconother {
    background: #078a24;
    color: white;
}

section.other_banner .card .bannerheading {
    font-size: clamp(27px, 3vw, 37px);
}

.wrapper_child {
    background: white;
    /* box-shadow: 0px 0px 6px #00000021; */
    /* border-radius: 13px; */
    border: 1px solid #E8E8E8;
}

.question__faqs {
    padding: 20px 21px 20px 11px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: normal;
    height: 68px;
    transition: all 0.6s ease;
}

.question__faqs.active {
    background: #f4f4f4;
    /* border-top-left-radius: 13px;
    border-top-right-radius: 13px; */
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.4s ease;
    padding: 8px;
    transform: translateX(11px) rotate(0);
}

.question__faqs.active .faq-icon {
    transform: translateX(11px) rotate(45deg);
    background-color: white;
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    color: #535353;
}

.answer {
    padding: 16px 12px 16px;
}

.question__faqs.secondaryheading {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 20px;
}

.faq-icon svg {
    width: 15px !important;
    height: 15px !important;
}

.customul li {
    list-style: disc;
    margin-left: 1rem;
}

.customul li::marker {
    color: #003C86;
}

.customul.customulwhite li::marker {
    color: white;
}

section.faq_page {
    position: relative;
}

section.faq_page .faqbox {
    padding: 25px 20px;
}

/* modal and form design */
#premiumModal .modal-body {
    max-height: 94vh;
    overflow-y: auto;
}

.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 14px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
    z-index: 10;
}

.close-btn svg {
    width: 19px !important;
}

.close-btn:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: rotate(90deg);
}

.modal-backdrop.show {
    background-color: #00000080;
    opacity: 1;
    backdrop-filter: blur(4px);
}

.modal-backdrop.fade {
    transition: all 0.4s linear;
}

.modal-body {
    padding: 15px 13px;
}

.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: none;
    border-radius: 0;
}

body.modal-open {
    transition: none !important;
    padding-right: 0 !important;
}

.form-control,
.form-select {
    color: #868686 !important;
    padding: 9px 12px;
    border-radius: 7px;
    border: 1px solid transparent;
    background-color: #f2f2f2 !important;
    background-image: linear-gradient(#0068e7, #0068e7);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 0% 1.5px;
    transition: background-size 0.4s ease;
    font-size: 14px;
}

.form-control::placeholder {
    color: #868686;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-size: 100% 1.5px;
    border: 1px solid transparent;
}

#datepicker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23868686' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E"),
        linear-gradient(#0068e7, #0068e7);
    background-repeat: no-repeat;
    background-position: right 12px center, bottom center;
    background-size: 16px, 0% 1.5px;
    padding-right: 40px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23868686' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"),
        linear-gradient(#0068e7, #0068e7);
    background-repeat: no-repeat;
    background-position: right 12px center, bottom center;
    background-size: 12px, 0% 1.5px;
    padding-right: 40px;
}

.form-select:focus {
    background-size: 12px, 100% 1.5px;
    box-shadow: none;
    outline: none;
    border: 1px solid transparent;
}

#datepicker:focus {
    background-size: 16px, 100% 1.5px;
}

textarea {
    resize: none;
}

.phone-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.country-code-input {
    width: 60px;
}

.iti__dropdown-content {
    width: 100% !important;
}

.iti__search-input {
    border-radius: 0 !important;
    padding: 8px 10px;
}

/* Customizing Flatpickr Theme to be Modern */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px !important;
    padding: 10px !important;
    width: 320px !important;
}

.flatpickr-day.selected {
    background: #003C86 !important;
    border-color: #003C86 !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    border-radius: 12px !important;
}

.flatpickr-day:hover {
    background: #f1f5f9 !important;
    border-radius: 12px !important;
}

.flatpickr-day.today {
    border-color: #003C86 !important;
    color: #003C86 !important;
}

.flatpickr-months .flatpickr-month {
    color: #1e293b !important;
    fill: #1e293b !important;
    height: 45px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-weekday {
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

.iti__selected-dial-code {
    font-size: 14px;
}

.modal {
    overflow-y: hidden;
}

section.contact_page {
    position: relative;
}

section.contact_page .contact_formbody {
    padding: 25px 20px;
    background-color: white;
    box-shadow: 0px 0px 14.3px rgb(0 0 0 / 13%);
}

section.contact_page .contact-pill {
    display: flex;
    align-items: center;
    padding: 16px 12px;
}

section.contact_page .pill-icon {
    width: 50px;
    height: 50px;
    background: #078a24;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 19px;
    margin-right: 13px;
    flex-shrink: 0;
}

section.aboutus .symbolbox {
    padding: 25px 20px;
    box-shadow: 0px 1px 7.3px rgb(0 0 0 / 11%);
}

section.aboutus .symbolimg {
    width: 208px;
    object-fit: contain;
}

section.schoolanthem {
    position: relative;
    overflow-y: hidden;
}

section.admission_cta .ctabox {
    padding: 28px 16px;
    position: relative;
    padding-bottom: 0;
}

section.faq_page.academicdet .faqbox.academicbox {
    padding: 15px 14px;
}

section.faq_page.academicdet .mainctas {
    display: flex;
    column-gap: 7px;
    flex-wrap: wrap;
}

section.faq_page.academicdet .pagecta {
    background-color: white;
    padding: 8px 8px;
    padding-left: 9px;
    display: inline-block;
    /* width: calc(50% - 3.5px); */
    width: 100%;
    border-left: 2.5px solid #003C86;
    margin-bottom: 12px;
    font-size: clamp(16px, 2vw, 20px);
}

section.faq_page.academicdet .pagecta.active {
    color: #D40000;
    border-left: 2.5px solid #D40000;
    pointer-events: none;
    cursor: default;
}

section.faq_page.academicdet .assessmentbox {
    padding: 8px;
}

section.faq_page.academicdet .assessmentborder {
    padding: 25px 15px;
    border: 0.5px dashed #003C86;
    display: flex;
    justify-content: center;
    flex-direction: column;
}