@font-face {
    font-family: 'CanvaSans';
    src: url('Assets/Fonts/CanvaSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'LeagueSpartan';
    src: url('Assets/Fonts/LeagueSpartan.ttf') format('truetype');
}

@font-face {
    font-family: 'Quintessential';
    src: url('Assets/Fonts/Quintessential.ttf') format('truetype');
}

@font-face {
    font-family: 'TheSeason';
    src: url('Assets/Fonts/theseasons-reg.otf') format('woff');
}

html,
body {
    padding: 0;
    margin: 0;
    background-color: #f1f1f1;
}

/*.card-img-top {*/
/*  width: 100%;*/
/*  height: 360px;*/
/*  object-fit: cover;*/
/*}*/
.navbar-brand img {
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    max-height: 120px;
}

.nav-link-container {
    display: flex;
    justify-content: space-around;
}

.nav-link {
    color: #efefef;
    font-family: 'CanvaSans';
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0.5rem 2rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-bottom 0.5s ease;
    width: auto;
}
/*.spotlight-book img {*/
/*  width: 100%;*/
/*  height: 340px;*/
/*  object-fit: contain;*/
/*  background: white;*/
/*}*/

.spotlight-book img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.nav-link-container a:hover {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 15px #ff0000,
        0 0 20px #ff0000;
}

.navbar_style {
    background-image: url('Assets/Images/Header/new-header.jpg');
    background-size: cover;
    background-position: center;
}

.navbar_btn_style {
    background-color: black;
}

.title_style {
    font-family: 'TheSeason';
    color: #ffffff;
    font-style: normal;
    font-size: 2.5rem;
    cursor: default;
    text-align: center;
    width: 100%;
}

.introduction_img_style {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center;

}

.text_style {
    max-height: 100px;
    text-wrap: wrap;
    text-overflow: clip;
    overflow: hidden;
}


.button-container {
    position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
}

/* Button styling */
.signup-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    /* Green background */
    color: white;
    position: absolute;
    top: 40vh;

}

/* Button styling */
.contactus-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    /* Green background */
    color: white;
    position: absolute;
    top: 68vh;
}

.joinus-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    /* Green background */
    color: white;
    position: absolute;
    top: 27vh;
}

.schedulecall-btn
{
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    /* Green background */
    color: white;
    position: absolute;
    top: 52vh;
}

.floating-btn-left {
    height: 50pt;
    width: 130pt;
    transform-origin: left center;
    rotate: 90deg;
    left: 25px;
    margin-right: 20px;

    z-index: 10;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: small;
}

.floating-btn-right {
    height: 30pt;
    width: 80pt;
    transform-origin: right center;
    rotate: 90deg;
    right: 0;
    margin-right: 20px;
    z-index: 10;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: small;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    background-color: white;
}


.custom-spotlight-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}


.spotlight-carousel-container {
    display: grid;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
    width: 85%;
}

.spotlight-carousel {
    display: flex;
    gap: 10px;
    align-items: start;
    transition: transform 0.5s ease-in-out;
    grid-column: 2 / 3;
    /* Center column */
}

.spotlight-book {
    transform: scale(0.9, 0.9);
    width: 325px;
    position: relative;
    overflow: hidden;
    height: auto;
    /* Adjust this height to match the height of your images */
}

/*.spotlight-book img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: auto;*/
/*}*/

.spotlight-book:hover {
    transform: scale(1, 1);
}

.spotlight-book-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    cursor: default;
}

.spotlight-book:hover .spotlight-book-desc {
    visibility: visible;
    opacity: 1;
}

.author-card-container {
    display: block;
}

.author-image {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14rem;
    transition: transform 0.3s ease;
}

.author-image:hover {
    transform: scale(1.1) translateY(-1rem);
}

.author-desc {
    margin-top: 1rem;
    text-align: center;
    height: 100%;
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
}

.author-desc > p {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.authors-carousel-container {
    display: flex;
    justify-content: center; /* Center the carousel */
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
    width: 85%;
}

.authors-carousel {
    display: flex;
    margin-left: 7.5%;
    gap: 25px;
    align-items: start;
    transition: transform 0.5s ease-in-out;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.authors-carousel-container::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}


.author-card-container:hover .author-desc > p {
    opacity: 1;
}

.how-it-works, .publishing-services, .copyright
{
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0.3vh;
}

@media (max-width: 767.98px) {


    .nav-link {
        flex: 1 1 50%;
    }

    .introduction_img_style {
        width: 100%;
        object-fit: contain;
        object-position: center;
        height: auto;
    }

    .signup-btn {
        top: 65vh;
    }

    .contactus-btn {
        top: 83vh;
    }

    .joinus-btn {
        top: 50vh;
    }

    .schedulecall-btn
    {
        top: 70vh;
    }
}

/* Footer Styles */
.footer-section {
    width: 100%;
    margin-top: 2rem;
}

.footer-heading {
    font-family: 'CanvaSans', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    line-height: 2;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffd700;
    padding-left: 5px;
}

.contact-info {
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    background-color: #25D366;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
}

.company-branding img {
    margin-bottom: 10px;
}

.certifications img {
    transition: transform 0.3s ease;
}

.certifications img:hover {
    transform: scale(1.1);
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Coming Soon Badge Styles */
.footer-links li {
    position: relative;
}

.coming-soon-link {
    position: relative;
    cursor: not-allowed !important;
    opacity: 0.7;
    display: inline-block;
}

.coming-soon-link::after {
    content: "🔒 Coming Soon";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 99999;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 107, 107, 0.9);
    }
}

.coming-soon-link::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 3px);
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ee5a6f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 99999;
}

.coming-soon-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.coming-soon-link:hover::before {
    opacity: 1;
    visibility: visible;
}

.coming-soon-link:hover {
    color: #ffd700 !important;
    padding-left: 0 !important;
    text-decoration: line-through;
}

/* Coming Soon for Social Icons */
.social-icon.coming-soon {
    position: relative;
    cursor: not-allowed !important;
    opacity: 0.5;
    display: inline-block;
}

.social-icon.coming-soon::after {
    content: "🔒 Coming Soon";
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 99999;
}

.social-icon.coming-soon::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ee5a6f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 99999;
}

.social-icon.coming-soon:hover::after {
    opacity: 1;
    visibility: visible;
}

.social-icon.coming-soon:hover::before {
    opacity: 1;
    visibility: visible;
}

.social-icon.coming-soon:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer-section .container-fluid {
        padding: 30px 20px !important;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .certifications img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .social-icons img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .coming-soon-link::after {
        font-size: 9px;
        padding: 4px 8px;
    }
    /* ====== FOOTER FIX (Bootstrap override + Tooltip visibility) ====== */

/* Force footer links to stay white */
.footer-section a,
.footer-section .footer-link {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Hover effect like your design */
.footer-section .footer-link:hover {
    color: #ffd700 !important;
    padding-left: 5px;
}

/* Ensure tooltip appears above everything */
.footer-section {
    position: relative;
    z-index: 5;
}
}