* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* main-navbar */
#full-nav {
    display: flex;
    justify-content: space-around;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    padding: 8px;
    background: linear-gradient(to left, #890c25, black);
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.logo {
    width: 50%;
    background: white;
}

.navbar-brand {
    background: rgb(239, 239, 239);
    position: absolute;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 0px 2px 5px #890c25f0;
    top: 0px;
    left: 10%;
}

.navbar-brand img {
    width: 15vh;
}

.items {
    width: 50%;
    display: flex;
    justify-content: end;
    position: relative;
    top: 7px;
}

.items ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

.items ul li {
    list-style-type: none;
}

.items ul li button {
    background: white;
    padding: 8px 10px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: rgb(40, 40, 40);
}

.items ul li button a {
    text-decoration: none;
    color: black;
}

.items ul li button a span img{
    width: 2.8vh;
}

.items ul li button.apply-now{
    padding: 8.8px 15px;
}

#banner-section {
    background: linear-gradient(to left, #890c25, black);
    height: 90vh;
}

#banner-section .content {
    display: flex;
    justify-content: center;
    padding-top: 5%;
    width: 95%;
    margin: auto;
}

#banner-section .content .box {
    width: 50%;
    color: white;
    padding: 10px;
}

#banner-section .content .box .text h1 {
    font-size: 35px;
    font-weight: 700;
}
#banner-section .content .box .text h1 span { color: #c6b090;
}

#banner-section .content .box .text p {
    font-size: 18px;
    font-weight: 500;
}

#banner-section .content .box .text .points {
    margin-top: 20px;
}

#banner-section .content .box .text .points ul {
    padding-left: 0px;
}

#banner-section .content .box .text .points ul li {
    list-style-type: none;
    font-size: 20px;
    font-weight: 500;
}

#banner-section .content .box .text .points ul li span {
    margin-right: 5px;
}

#banner-section .content .box .text .points ul li span img {
    width: 3.5vh;
}

#banner-section .content .box .text .btns {
    margin-top: 30px;
}

#banner-section .content .box .text .btns .dm-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(175, 174, 174, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

#banner-section .content .box .text .btns .dm-btn a {
    text-decoration: none;
    color: white;
}


#banner-section .content .box .text .description {
    display: flex;
    justify-content: start;
    column-gap: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

#banner-section .content .box .text .description .box {
    text-align: start;
    width: auto;
}

#banner-section .content .box .text .description span {
    font-size: 50px;
    font-weight: 200;
    margin-top: -5px;
}

#banner-section .content .box .text .description .box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c6b08f;
}

#banner-section .content .box .text .description .box p {
    font-size: 16px;
}

#banner-section .content .box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    position: relative;
}

#banner-section .content .box2 img {
    width: 10vh;
    position: absolute;
    top: 40px;
    right: 100px;
    z-index: 200;
    transform: rotate(15deg);
}

#banner-section .content .box2 .form-container {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

#banner-section .content .box2 .form-container h2 {
    font-size: 23px;
    color: black;
    margin-bottom: 40px;
    font-weight: bold;
}

#banner-section .content .box2 .form-container .input-box {
    position: relative;
    margin-bottom: 20px;
}

#banner-section .content .box2 .form-container .input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: black;
    border-bottom: 1px solid rgb(68, 68, 68);
    transition: all 0.3s ease-in-out;
}

#banner-section .content .box2 .form-container .input-box input:focus,
.input-box textarea:focus {
    border-bottom: 2px solid #ff4081;
}

#banner-section .content .box2 .form-container .input-box label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    color: rgba(246, 246, 246, 0.878);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

#banner-section .content .box2 .form-container .input-box input:focus+label,
#banner-section .content .box2 .form-container .input-box input:not(:placeholder-shown)+label,
#banner-section .content .box2 .form-container .input-box textarea:focus+label,
#banner-section .content .box2 .form-container .input-box textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 0;
    font-size: 14px;
    color: grey;
    font-weight: bold;
}

#banner-section .content .box2 .form-container .input-box textarea {
    height: 80px;
    resize: none;
}

#banner-section .content .box2 .form-container button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #890c25;
    color: white;
}

#banner-section .content .box2 .form-container button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(136, 132, 133, 0.6);
}


/* why choose us */
#why-choose-us {
    margin-top: 5%;
}

.content {
    width: 90%;
    margin: auto;
}

.heading p {
    font-weight: 500;
    font-size: 16px;
    color: #363636;
    margin-bottom: 7px;
}

.heading h1 {
    font-family: "Heebo", sans-serif;
}

.heading h1 span {
    color: #890c25;
}

#why-choose-us .content .points{
    display: flex;
    gap: 50px;
    justify-content: start;
    margin-top: 40px;
}

#why-choose-us .content .points ul{
    padding-left: 0;
    width: 28%;
}

#why-choose-us .content .points ul li{
    font-size: 18.5px;
    list-style-type: none;
    margin-bottom: 35px;
    display: flex;
    color: #181e2b;
}

#why-choose-us .content .points ul li span img{
    width: 4vh;
}

#why-choose-us .content .points ul li span{
    margin-right: 8px;
}

#placement-support {
    margin-top: 5%;
}

#placement-support .content .points {
    margin-top: 40px;
    display: flex;
    justify-content: start;
    gap: 10px;
}

#placement-support .content .points .box {
    width: 50%;
}

#placement-support .content .points .box h4 {
    font-size: 18px;

}

#placement-support .content .points .box .image {
    display: flex;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

#placement-support .content .points .box .image img {
    width: 12vh;
    border: 1px solid rgba(84, 84, 84, 0.833);
    border-radius: 5px;
    padding: 7px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#cta {
    margin-top: 5%;
    width: 100%;
}

#cta .content {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#cta .content .box {
    width: 70%;
}

#cta .content .box h1 {
    font-family: "Heebo", sans-serif;
}

#cta .content .box2 {
    width: 28%;
    display: flex;
    /* background: red; */
    justify-content: center;
}

#cta .content .box2 .btns {
    margin-top: 0px;
    width: 80%;
    /* background: blue; */
}

#cta .content .box2 .btns button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #890c25;
}

#cta .content .box2 .btns button a {
    text-decoration: none;
    color: white;
}


#course-curriculum {
    margin-top: 5%;
}

#course-curriculum .points {
    margin-top: 40px;
}

#course-curriculum .points .accordion-item {
    margin-bottom: 20px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
}

#course-curriculum .points .accordion-item .accordion-header {
    border: none;
    padding: 10px;
}

#course-curriculum .points .accordion-item .accordion-header button {
    background: white;
    color: black;
    font-weight: 500;
    font-size: 20px;
    border-bottom: none;
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
    border-bottom: 1px solid rgba(101, 101, 101, 0.356) !important;
}

#collapseOne {
    padding-left: 10px;
    margin-top: -5px;
}


.accordion-body .points ul li {
    list-style-type:square;
}

#fees-structure {
    margin-top: 5%;
}

#fees-structure .points {
    margin-top: 40px;
    padding: 30px;
    border-radius: 12px;
    background: rgb(247, 242, 242);
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#fees-structure .points .box {
    width: 50%;
}

#fees-structure .points .box p {
    font-size: 18px;
    color: #890c25;
}

#fees-structure .points .box h3 {
    font-size: 28px;
    margin-top: -13px;
}

#fees-structure .points .box h6 {
    color: black;
    font-weight: 600;
    margin-top: 20px;
}

#fees-structure .points .box h6 span {
    color: rgb(158, 157, 157);
}

#fees-structure .points .box2 {
    display: flex;
    align-items: center;
}

#fees-structure .points .box2 .btns {
    width: 100%;
    display: flex;
    justify-content: center;
}

#fees-structure .points .box2 .btns button {
    width: 50%;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #890c25;
    color: white;
}

#fees-structure .points .box2 .btns button a {
    text-decoration: none;
    color: white;
}

#testimonials {
    margin-top: 5%;
}

#testimonials .points {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

/* Show 3 boxes on desktop */
#testimonials .points .box {
    flex: 0 0 calc(33.33% - 20px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

#testimonials .points .box .image {
    width: 100%;
    height: 100%;
}

#testimonials .points .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

#testimonials .points .box .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(226, 226, 226, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulse 1.5s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

/* Mobile: Swipe Effect */
@media (max-width: 768px) {
    #testimonials .points {
        scroll-snap-type: x mandatory;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #testimonials .points .box {
        scroll-snap-align: center;
        flex: 0 0 100%;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

/* Video Container */
.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
}

/* Video Element */
.video-container iframe,
.video-container video {
    width: 100%;
    max-height: 100vh;
    border-radius: 10px;
}

/* Close Button */
#close-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #890c25;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    color: white;
    border-radius: 5px;
}


#demo-class {
    margin-top: 5%;
    width: 100%;
}

#demo-class .content {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #890c25;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: white;
}


#demo-class .content .box {
    width: 70%;
    padding: 30px;
}

#demo-class .content .box h1 {
    font-family: "Heebo", sans-serif;
    font-size: 45px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgb(73, 73, 73);
}

#demo-class .content .box .btns {
    margin-top: 40px;
}

#demo-class .content .box .btns button {
    width: 40%;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #890c25;
    color: white;
}

#demo-class .content .box .btns button a {
    text-decoration: none;
    color: white;
}

#demo-class .content .box2 {
    width: 30%;
    display: flex;
}

#demo-class .content .box2 .image {
    width: 50vh;
    display: flex;
    position: relative;
    right: 55%;
}

#demo-class .content .box2 .image img {
    width: 60vh;
}

#disclaimer {
    margin-top: 5%;
}

#disclaimer .points {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}


#disclaimer .points ol li {
    margin-bottom: 20px;
    color: grey;
    font-size: 15px;
}

#disclaimer .points.expanded {
    max-height: 1100px;
}

#disclaimer .read-more {
    color: #890c25;
    cursor: pointer;
    display: block;
    margin-top: 10px;
    font-weight: 500;
}


#footer {
    margin-top: 5%;
    padding: 0;
    background: #181e2b;
    padding: 30px;
}

#footer footer {
    display: flex;
}

#footer footer .box {
    width: 50%;
    text-align: start;
    padding-left: 4%;
}

#footer footer .box img {
    width: 60vh;
}

#footer footer .box p {
    font-size: 14px;
    font-weight: 600;
    margin-left: 84px;
    margin-top: -15px;
    color: white;
    letter-spacing: 2px;
}

#footer footer .box2 {
    display: flex;
    width: 50%;
    justify-content: end;
    column-gap: 30px;
    align-items: center;
    padding-right: 30px;
}

#footer footer .box2 p {
    color: white;
    font-weight: 500;
    font-size: 18px;
}

#footer footer .box2 p a{
    text-decoration: none;
    color: white;
}

.form2.pulse-effect {
    animation: pulseform 1s infinite;
}

@keyframes pulseform {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    }
}






/* thankyou page */
.thankyou-container {
    text-align: center;
}

.thankyou-container .thankyou-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
}

.thankyou-container .thankyou-card img {
    width: 100px;
    margin-bottom: 15px;
}

.thankyou-container .thankyou-card h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.thankyou-container .thankyou-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.thankyou-container .thankyou-card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff5e78;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.thankyou-container .thankyou-card .btn:hover {
    background-color: #e74c63;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* forms */

#pop-up,
.overlay {
    display: none;
}


#pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 80%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.689);
    z-index: 1000;
}

#pop-up .cross {
    text-align: end;
}

#pop-up .cross img {
    width: 4vh;
    cursor: pointer;
}

#pop-up .form {
    background: rgb(253, 253, 253);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    display: flex;
}

#pop-up .form .image {
    width: 50%;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#pop-up .form .image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#pop-up .form .full-form {
    width: 50%;
    padding: 20px;
}

#pop-up .form .input-field {
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-bottom: 8px;
}

#pop-up .form .input-field h4 {
    font-size: 22px;
    color: rgb(37, 37, 37);
}

#pop-up .form .input-field label {
    font-size: 14px;
}

#pop-up .form .fields {
    margin-top: 20px;
}

#pop-up .form .input-field input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#pop-up .form .input-field select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#pop-up .form .sub-btn {
    margin-top: 20px;
}

#pop-up .form .sub-btn input {
    background: #890C25;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#pop-up .form .sub-btn input:hover {
    background: #640518;
}


/* thankyou page */
.thankyou-container {
    text-align: center;
}

.thankyou-container .thankyou-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
}

.thankyou-container .thankyou-card img {
    width: 100px;
    margin-bottom: 15px;
}

.thankyou-container .thankyou-card h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.thankyou-container .thankyou-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.thankyou-container .thankyou-card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff5e78;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.thankyou-container .thankyou-card .btn:hover {
    background-color: #e74c63;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}