* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white-color: #fff;
    --theme-color: #1234DC;
    --black-color: #000000;
    --yellow-color: #FEC42D;
}

body {
    font-family: "Cinzel", serif;
}

p {
    font-family: "Poppins", sans-serif;
}

.same-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    padding: 16px 30px;
    border-radius: 100px;
    border: 3px solid #FEC42D;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.yellow-btn {
    background-color: var(--yellow-color);
    padding: 14px 20px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 600;
}

.para {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 25px;
}

.same-heading {
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 600;
    color: var(--black-color);
}

/* banner sec start */
.banner-sec {
    background-image: url("../images/banner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 280px 0px 100px;
    position: relative;
    z-index: 1;
}

.banner-image img {
    width: 100%;
}

.banner-content p {
    margin-bottom: 0;
    color: var(--white-color);
}

.banner-content h1 {
    text-shadow: 2px 2px 3px var(--black-color);
}

.banner-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

/* banner sec end */

/* header start */
.header {
    position: absolute;
    z-index: 11;
    width: 100%;
    padding: 0px 0px 20px;
    top: 20px;
    border-bottom: 1px solid var(--white-color);
}

.header .nav-item .nav-link {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
}

.header .navbar-nav {
    gap: 24px;
}

/* header end */

/* about author sec start */
.about-author-sec {
    padding: 100px 0px;
}

.about-author-btn {
    display: flex;
    margin-top: 40px;
}

/* about author sec end */

/* book showcase sec end */
.book-showcase {
    background-color: var(--theme-color);
    padding: 100px 0px;
}

.book-showcase-image img {
    width: 100%;
}

.book-showcase-box {
    border: 7px solid var(--yellow-color);
    border-radius: 15px;
}

.book-showcase-content {
    border-left: 7px solid var(--yellow-color);
    padding: 50px 35px;
}

.book-showcase-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.book-showcase-content h2 {
    color: var(--white-color);
    font-size: 40px;
}

.book-showcase-content p {
    color: var(--white-color);
    font-size: 14px;
}

/* book showcase sec end */

/* video sec start */
.video-sec {
    background-image: url("../images/video-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 300px 0px;
    margin: 100px 0px;
}

.video-sec-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   Video Modal Responsive
================================ */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(15px, 4vw, 40px);
}

.video-wrapper {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Close Button */
.video-close {
    position: absolute;
    top: clamp(15px, 3vw, 30px);
    right: clamp(15px, 3vw, 40px);

    background: transparent;
    border: 2px solid #fff;
    color: #fff;

    width: clamp(38px, 4vw, 48px);
    height: clamp(38px, 4vw, 48px);

    font-size: clamp(20px, 2vw, 28px);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-close:hover {
    background: #fff;
    color: #000;
}
/* video sec end */

/* testimonials sec start */
.testimonials-sec {
    background-image: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}


.testimonials-content h2 {
    text-align: center;
    color: var(--white-color);
    margin-bottom: 60px;
}

.testimonials-box {
    background-color: var(--white-color);
    padding: 30px 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 9px 11px 14px 0px #0000001A;
}

.testimonials-box img {
    width: unset !important;
}

.testimonials-box h3 {
    text-align: center;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

.testimonials-box p {
    margin-top: 0;
    text-align: center;
}

.testimonials-rating i {
    color: var(--yellow-color);
}

.testimonials-rating {
    margin-bottom: 20px;
}

.testimonials-box h4 {
    color: var(--black-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* testimonials sec end */

/* blogs sec start */
.blogs-card {
    background-color: var(--theme-color);
    box-shadow: 2px 4px 30px 5px #0000004D;
    padding: 15px 25px 40px;
    border-radius: 30px;
    height: 700px;
}

.blogs-sec {
    padding: 100px 0px;
}

.blogs-content h2 {
    text-align: center;
}

.blogs-content {
    margin-bottom: 60px;
}

.blogs-card img {
    width: 100%;
    border-radius: 30px;
}

.blogs-card-content {
    margin-top: 20px;
    text-align: center;
}

.blogs-card-content h4 {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
}

.blogs-card-content h3 {
    color: var(--white-color);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 40px;
}

.blogs-card-content a {
    color: var(--black-color);
    background-color: var(--white-color);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    padding: 14px 40px;
    border-radius: 100px;
    border: 2px solid var(--yellow-color);
}

.blogs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* blogs sec end */

/* form sec start */
.form-sec {
    background-image: url("../images/form-sec-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.form-sec-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    padding: 50px 0px;
    width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    gap: 20px;
}

.form-sec-content-box a {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content-box i {
    color: var(--theme-color);
    font-size: 50px;
}

.form-sec-content form input {
    width: 800px;
    margin-bottom: 15px;
    height: 50px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form {
    margin-top: 20px;
    text-align: center;
}

.form-sec-content form textarea {
    width: 800px;
    margin-bottom: 15px;
    height: 126px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form button {
    background-color: var(--theme-color);
    color: var(--white-color);
    width: 800px;
    height: 50px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form label {
    display: flex;
    align-items: baseline;
    width: 800px;
    margin: 0 auto;
    color: var(--white-color);
}

.form-sec-content form label input[type="checkbox"] {
    width: unset;
    height: unset;
    margin: 0;
}

.form-sec-content form label a {
    color: var(--white-color);
    text-decoration: underline;
}

.form-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #0000007a;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* form sec end */

/*footer start*/
.footer {
    background-color: var(--yellow-color);
    padding: 45px 0px;
}

.footer-branding ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
}

.footer-branding ul li a {
    color: var(--black-color);
    background-color: var(--white-color);
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    font-size: 28px;
}

.footer-branding a img {
    width: 100%;
}

.footer-links h3 {
    margin-bottom: 20px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 20px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-links ul li {
    margin-bottom: 10px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
}

.footer-links form input {
    width: 100%;
    height: 55px;
    border-radius: 100px;
    outline: none;
    border: none;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}

.footer-links form button {
    width: 100%;
    height: 55px;
    border-radius: 100px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

/*footer end*/

/* copyright sec start */
.copyright-sec {
    background-color: var(--theme-color);
}

.copyright-content {
    text-align: center;
}

.copyright-content p {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}

/* copyright sec end */