/* Master CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding-top: 120px;
    /* for fixed header spacing */
}

.top-bar {
    background-color: #001f3f;
    padding: 10px 30px;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar a.btn-call {
    background: #000000;
}

.top-bar a.btn-schedule {
    background: #000000;
}

.top-bar a:hover {
    opacity: 0.85;
}

header {
    background-color: #f8f9fa;
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    width: 180px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #002244;
    /* dark text color for visibility on light bg */
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav ul li a:hover,
nav ul li.active a {
    background: rgba(0, 34, 68, 0.1);
    /* subtle hover bg */
    color: #007bff;
    /* blue highlight */
}

nav ul li.hasSubmenu {
    position: relative;
}

nav ul li.hasSubmenu:hover .subMenu {
    display: block;
}

.subMenu {
    display: none;
    position: absolute;
    background: #fff;
    top: 30px;
    left: 0;
    min-width: 250px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 99;
}

.subMenu li {
    margin-bottom: 10px;
}

.subMenu a {
    color: #002244 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subMenu a:hover {
    color: #007bff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: 10px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #002244;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul.menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #002244;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 20px;
        z-index: 1001;
    }

    nav ul.menu.active {
        display: flex;
    }

    .header-container {
        position: relative;
    }

    .logo {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
    }

    .top-bar {
        align-items: flex-end;
        gap: 5px;
    }

    .top-bar a {
        color: white;
        text-decoration: none;
        font-size: 9px;
        padding: 8px 10px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-weight: bold;
    }
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d1b2a;
}

.custom-divider {
    width: 70px;
    height: 4px;
    background: #076ab0;
    margin: 10px auto;
    border-radius: 10px;
}

.bg-color-black {
    background-color: #000000;
}

/* Glow Animation on Button */
.glow-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-effect::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(243, 242, 242, 0.2),
        transparent 40%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: glow-slide 5s linear infinite;
    z-index: -1;
}

@keyframes glow-slide {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.custom-btn {
    font-size: 14px;
    font-weight: 600;
    width: 46%;
    border-radius: 50px;
    padding: 10px;
}
/* --------  Master CSS END -------- */

/* -------- WhatsApp Floating Button -------- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 28px;
    padding: 4px;
    border-radius: 50%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
}

.whatsapp-float:hover {
    background-color: #1ebe5b;
    color: white;
}

/* Tooltip styling */
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 10px;
    position: absolute;
    right: 60px;
    bottom: 50%;
    transform: translateY(50%);
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

/* Show tooltip on hover */
.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
/* -------- Whatsapp CSS -------- */

/* ------- HERO SECTION ------- */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1)
    );
    z-index: 1;
}

.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.text-content h1,
.text-content h2 {
    font-weight: 800;
    color: #fff;
}

.deserve-line span {
    font-size: 2.8rem;
    font-weight: bold;
    margin-right: 3px;
}

.get-started-btn {
    font-size: 1.2rem;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #001f3f;
    transition: all 0.3s ease;
    color: #fff;
}

.get-started-btn:hover {
    background-color: #001f3f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .deserve-line span {
        font-size: 1.4rem;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1rem;
    }
}
/* -------- HERO SECTION -------- */

/* -------- ABOUT SECTION ------- */
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.main-img {
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.offset-layer {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: #076ab0;
    z-index: 1;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .about-heading {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .offset-layer {
        top: 10px;
        left: 10px;
    }
}
/* ------- ABOUT SECTION ------- */
/* ------- BOOK SECTION -------- */
.books-section-modern {
    background: #fff;
}

.view-all-btn {
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
}

.view-all-btn:hover {
    background: #000000;
}

.book-card {
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
}

.flip-container {
    perspective: 1000px;
    width: 100%;
    height: 380px;
    border-radius: 10px;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 10px;
}

.front img,
.back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back {
    transform: rotateY(180deg);
}

.book-title {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1rem;
}
/* ------- BOOK SECTION END ------ */

/* ------- Hear From Our Authors SECTION ------ */
.hear-authors-section {
    background: #f7f9fc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b2a;
}

.custom-divider {
    width: 70px;
    height: 4px;
    background: #076ab0;
    margin: 12px auto;
    border-radius: 10px;
}

.author-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.author-img img {
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #076ab0;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}
/* ------- Hear From Our Authors SECTION END ------ */
/* ------- WHAT WE DO SECTION ------ */
.card-service {
    flex: 1 1 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.card-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.card-service h5 {
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0 10px;
    color: #333;
}

.card-service p {
    font-size: 14px;
    color: #666;
}

.icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.icon-wrap img {
    width: 32px;
    height: 32px;
    filter: brightness(100) invert(1);
}
/* ------- WHAT WE DO SECTION END ------ */

/* ------- OUR PACKAGES SECTION ------ */
.package-card {
    border-radius: 16px;
    transition: 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.package-card ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
}

.badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}
/* ------- OUR PACKAGES SECTION END ------ */

/* ------- WHY CHOOSE SECTION ------ */
.why-choose {
    background: #f7fafd;
}

.choose-card {
    background: #fff;
    border-left: 5px solid #076ab0;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.choose-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a3d62;
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); */
    max-height: 480px;
    width: 100%;
}

.styled-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.image-wrapper:hover .styled-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .choose-card {
        padding: 20px 15px;
    }

    .image-wrapper {
        max-height: none;
        height: auto;
    }

    .styled-image {
        height: auto;
    }
}
/* ------- WHY CHOOSE SECTION END ------ */

/* ------- SUPPORT SECTION ------ */
.support_sec {
    background: #f2f6f8;
}

.gif-box .gif-img {
    max-width: 100%;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.content-box .subheading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
}

.content-box .lead {
    font-size: 1.1rem;
    color: #555;
}

.btn.custom-btn {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn.custom-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .subheading {
        font-size: 1.3rem !important;
    }

    .lead {
        font-size: 1rem;
    }
}
/* ------- WHY CHOOSE SECTION END ------ */

/* ------- CALL TO ACTION SECTION ------- */
.call-to-action {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

.subtitle {
    color: #6c757d;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.highlight {
    background: linear-gradient(to right, #0dcaf0, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.7rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }

    .subtitle {
        font-size: 0.9rem;
    }
}

/* ------- CALL TO ACTION SECTION END ------- */

/* ------- FAQ SECTION --- */

.faq-section {
    background-color: #f9f9f9;
}

.highlight-text {
    color: #000000;
    font-weight: 600;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.15);
}

.accordion-button {
    background-color: #fff;
    color: #222;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #000000;
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #fff;
    color: #555;
    font-size: 1rem;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .flip-container {
        height: 200px;
    }

    .card-service {
        margin: 10px;
    }
}
/* ------ FAQ SECTION END ------ */

/* ----- Publishing Call-To-Action Section ----- */
.publishing-hero-section {
    background-color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-illustration {
    max-width: 80%;
    transition: transform 0.4s ease;
}

.hero-illustration:hover {
    transform: translateY(-10px);
}

.gradient-text {
    background: linear-gradient(90deg, #0dcaf0, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.1rem;
    color: #333;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* ----- Publishing Call-To-Action Section End ----- */
