@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* =============================================
   Heritage Crest Publishing — Theme Stylesheet
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: 'Plus Jakarta Sans';
    font-size: 15px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.brand-accent {
    color: var(--secondary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}



.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}


:root {
    /* Brand Colors */
    --primary: #D6C68B;
    /* deep heritage maroon */
    --primary-dark: #0F2944;
    --primary-light: rgba(15, 41, 68, 0.8);
    --gradient-sec: linear-gradient(180deg, #744F21 -39.06%, #E0B66C 51.25%, #744F21 141.56%);
    /* antique gold */
    --black: #1c1410;
    /* ink black-brown */
    --c1: #f1c66b;
    --light: #faf6ef;
    /* aged paper */
    --cream: #f2e9d8;
    --text: #111;
    --muted: #333;
    --white: #ffffff;

    /* Typography */
    --font-heading: "Oswald", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;

    /* Effects */
    --transition: all 0.2s ease-in-out;
    --radius: 10px;
    --shadow-sm: 0 2px 10px rgba(28, 20, 16, 0.06);
    --shadow-md: 0 10px 30px rgba(28, 20, 16, 0.1);
}

.spacing {
    padding: 100px 0px;
}

.spacing-top {
    padding-top: 100px;
}

.spacing-bottom {
    padding-bottom: 100px;
}



/* ===== Base ===== */


/* ===== Header / Navbar ===== */
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

/* --- Top bar --- */
.top-bar {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 41, 68, 0.08);
}

.top-bar-text {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
}

.top-bar-phone:hover {
    color: var(--black);
}

.top-bar-phone-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.75rem;
}

.btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-chat:hover {
    color: var(--black);
    filter: brightness(1.08);
}

.btn-chat-arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    font-size: 0.7rem;
}

/* --- Main nav --- */
.main-nav {
    background: #030D19;
    padding: 13px 0px;
}

.main-nav .navbar-brand img {
    height: 48px;
}

.navbar-brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}

.navbar-brand-logo img {
    height: 150px;
}

.main-nav-left,
.main-nav-right {
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white) !important;
    padding: 6px 15px !important;
    transition: var(--transition);
    display: block !important;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: var(--black);
}

.main-nav .nav-link.active {
    background: #D6C68B;
    border-radius: 50px;
    color: var(--black) !important;
}

/* --- Services Hover Dropdown Menu --- */
.main-nav .dropdown-has-menu {
    position: relative;
}

.main-nav .dropdown-toggle-link {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.main-nav .nav-chevron {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.main-nav .dropdown-has-menu:hover .nav-chevron {
    transform: rotate(180deg);
}

.services-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 360px;
    background: #0b1420;
    border: 1px solid rgba(214, 198, 139, 0.25);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(214, 198, 139, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    z-index: 1200;
    pointer-events: none;
    backdrop-filter: blur(16px);
}

/* Hover bridge to keep dropdown open when moving mouse down */
.services-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.main-nav .dropdown-has-menu:hover .services-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.services-dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for dropdown list */
.services-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.services-dropdown-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.services-dropdown-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.services-dropdown-item {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.services-dropdown-item:hover {
    background: rgba(214, 198, 139, 0.12);
    transform: translateX(4px);
}

.services-dropdown-item .service-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
    color: var(--primary);
    font-size: 15px;
    transition: all 0.25s ease;
}

.services-dropdown-item:hover .service-icon-box {
    background: var(--gradient-sec);
    color: var(--black);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(224, 182, 108, 0.35);
}

.services-dropdown-item .service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-dropdown-item .service-title {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    transition: color 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.services-dropdown-item:hover .service-title {
    color: var(--primary);
}

.services-dropdown-item .service-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: none;
    transition: color 0.2s ease;
}

.services-dropdown-item:hover .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
    .navbar-brand-logo {
    }

    .main-nav .navbar-collapse {
    }

    .main-nav .nav-link {
        padding: 10px 16px;
    }

    .main-nav .nav-link.active {
        display: inline-block;
        padding: 8px 20px;
    }
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 13, 25, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1900;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 340px;
    max-width: 85vw;
    background: #030D19;
    border-left: 1px solid rgba(214, 198, 139, 0.15);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    box-shadow: -20px 0 45px rgba(0, 0, 0, 0.45);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-logo img {
    height: 40px;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--gradient-sec);
    color: var(--black);
    border-color: transparent;
}

.mobile-nav-list {
    padding: 10px 12px;
    flex: 1;
}

.mobile-nav-list .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-list .nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white) !important;
    padding: 14px 10px !important;
    display: block !important;
}

.mobile-nav-list .nav-link.active {
    color: var(--primary) !important;
}

.mobile-dropdown-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 13px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-has-menu.active .mobile-dropdown-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
}

.mobile-dropdown-has-menu.active .mobile-dropdown-menu {
    max-height: 500px;
    padding-bottom: 10px;
}

.mobile-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-dropdown-menu li a:hover {
    background: rgba(214, 198, 139, 0.12);
    color: var(--primary);
}

.mobile-dropdown-menu li a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 13px;
}

.mobile-menu-footer {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu-footer .top-bar-phone {
    color: var(--white);
}

.mobile-menu-footer .btn-chat {
    justify-content: center;
}

body.mobile-menu-open {
    overflow: hidden;
}

.logo-wrapper {
    min-width: inherit;
}

/* ===== Banner Form ===== */
.banner-form {}

.banner-form-frame {
    position: relative;
    z-index: 3;
}

.banner-form-frame::before {
    content: '';
}

.banner-form-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 9999;
}

.banner-form-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 10px;
    background: var(--primary-dark);
    height: 130px;
    width: 39px;
    transform: rotate(-45deg);
    border-right: 10px solid var(--primary);
}

.banner-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.banner-form-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.banner-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-form-input,
.banner-form-textarea {
    width: 100%;
    border: 1px solid rgba(15, 41, 68, 0.15);
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
}

.banner-form-textarea {
    border-radius: var(--radius);
    resize: none;
}

.banner-form-input:focus,
.banner-form-textarea:focus {
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.banner-form-btn {
    background: var(--black);
    color: var(--white);
    border-radius: 50px;
    padding: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

.banner-form-btn:hover,
.banner-form-btn:focus {
    background: var(--black);
    color: var(--white);
}

.banner-right-main {
    position: relative;
}

.banner-girl-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-form {
    max-width: 450px;
    margin-left: auto;
    position: relative;
    z-index: 3;
}

.banner-form::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 140px;
    background: var(--primary);
    bottom: -23px;
    left: -25px;
    z-index: -29;
}

h4.banner-sub-title {
    color: var(--primary);
    font-size: 20px;
}

.banner-title {
    font-size: 40px;
    color: var(--white);
    padding: 8px 0px;
}

.banner-title .highlight-text {
    display: inline;
    color: var(--primary);
}

p.banner-description {
    font-size: 16px;
    color: var(--white);
}

.banner-sub-heading {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    padding: 8px 0px;
}

.banner-text {
    color: var(--white);
}

ul.banner-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 28px;
}

ul.banner-points {
    padding: 8px 0px;
}

ul.banner-points li span {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.banner-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.banner-bg {
    height: 100%;
}

.banner-bg img {
    min-height: auto;
    height: 100dvh;
    width: -webkit-fill-available;
    object-fit: cover;
}


.btn-primary i,
.btn-secondary i {
    background: var(--white);
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    border: 1px solid;
    font-size: 12px;
    color: var(--black);
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.banner-btns {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.banner-right-main::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    /* border-radius: 50%; */
    background: url('assets/images/Ellipse28948.png') no-repeat center / cover;
    top: -130px;
    left: 38px;
    margin: 50px;
}

.banner-content {
    overflow: hidden;
}

.sponsors {
    padding: 10px 0px;
    background: var(--primary);
    position: relative;
}

.sponsors::before {
    content: '';
    inset: 0;
    position: absolute;
    position: absolute;
    background: var(--primary);
    top: 0px;
    transform: rotate(2deg);
}


.sponsors::after {
    content: '';
    position: absolute;
    position: absolute;
    background: var(--primary);
    transform: rotate(-2deg);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.sponsor-slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.sponsor-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: sponsorMarquee 30s linear infinite;
}

.brand-logo {
    flex: 0 0 auto;
    padding: 0 30px;
}

.brand-logo img {
    height: 50px;
    object-fit: contain;
    opacity: 70%;
}

@keyframes sponsorMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-track {
        animation: none;
    }
}

/* Custom Styling using CSS Variables */
.featured-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--font-heading);
}

/* Tab Header Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: var(--white);
    color: var(--text);
    border: 1.5px solid #111;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

/* Tab Content Visibility */
.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

/* Grid Layout for Asymmetrical Book Display */
.book-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.book-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    /* flex: 1; */
}

.book-col.center-align {
    justify-content: center;
}

/* Book Image Styling & Card Scale */


.book-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* border-radius: var(--radius); */
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .book-grid {
        flex-direction: column;
    }

    .tab-buttons {
        gap: 8px;
    }
}

/* Contact Section Custom Styling */
.contact-sec {
    padding: 80px 0;
    background-color: var(--white);
}

/* Left Image Framing */
.contact-img-box {}

.contact-img-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* Form Headings */
.contact-content .main-sub-title {}

.contact-content .main-title {
    margin-bottom: 30px;
}

/* Input Fields */
.contact-form .form-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.contact-form textarea.form-control {
    border-radius: 20px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* Services Multi-Select Dropdown */
.services-multiselect {
    width: 100%;
}

.services-multiselect-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.services-multiselect-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.services-multiselect-label.is-placeholder {
    color: #aaa;
}

.services-multiselect-menu {
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 16px;
}

.services-multiselect-menu .dropdown-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    white-space: normal;
}

.services-multiselect-menu .dropdown-item input {
    flex-shrink: 0;
}

/* Submit Button Gradient */
.btn-submit {
    width: 100%;
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    margin-bottom: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-status:not(:empty) {
    display: block;
}

.form-status.is-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

/* Thank You Modal */
#thankYouModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.thank-you-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-sec);
    color: var(--black);
    font-size: 28px;
}

#thankYouModal .modal-title {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

#thankYouModal p {
    color: var(--muted);
    margin-bottom: 20px;
}

#thankYouModal .btn-primary {
    display: inline-flex;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Quote Modal */
#quoteModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#quoteModal .modal-header {
    background: var(--gradient-sec);
    color: var(--black);
    padding: 18px 24px;
}

#quoteModal .modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    text-shadow: 2px 2px 1px #0000008a;
}

#quoteModal .btn-close {
    filter: invert(1);
    opacity: 0.7;
}

#quoteModal .btn-close:hover {
    opacity: 1;
}

#quoteModal .modal-body {
    padding: 30px 24px 24px;
    background: #fff;
}

.quote-form .form-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    display: block;
}

.quote-form .form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.quote-form textarea.form-control {
    border-radius: 20px;
    resize: none;
}

.quote-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* Footer Container & Background Overlay */
.main-footer {
    background-image: url('../assets/images/footer-bg.png');
    color: var(--white);
    font-family: var(--font-body);
    position: relative;
    background-position: center;
    background-size: cover;
}

/* --- 1. Newsletter Styling --- */
.newsletter-wrapper {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content .sub-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.newsletter-content .main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.newsletter-content .secondary-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.newsletter-content .description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0px 200px;
}

/* Newsletter Form Inputs */
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    flex: 1;
}

.newsletter-form .form-control {
    width: 100%;
    height: 48px;
    border-radius: 50px;
    border: none;
    padding: 0 25px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
}

.newsletter-form .form-control::placeholder {
    color: #777;
}

/* --- 2. Shared Buttons Styling --- */
.btn-gradient {
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 0 25px;
    height: 48px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-gradient i {
    background: var(--white);
    color: var(--black);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.btn-gradient.btn-sm {
    height: 38px;
    padding: 0 20px;
    font-size: 12px;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: var(--black);
}

/* --- 3. Footer Main Links Columns --- */
.footer-links-wrapper {
    padding: 50px 0 0px;
}

.footer-col .col-title {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col .col-text {
    /* font-size: 12px; */
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 12px;
}

.footer-links li::before {
    content: "•";
    color: var(--white);
    position: absolute;
    left: 0;
    font-size: 12px;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
}

/* --- 4. Info & Social Bar --- */
.footer-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #ddd;
}

.footer-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info-bar .info-item i {
    color: var(--primary);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

/* --- Preloader --- */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071320 0%, #0f2944 55%, #1d4f7a 100%);
    color: var(--white);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.preloader-ring span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f1c66b;
    border-right-color: #f1c66b;
    animation: preloaderSpin 1.2s linear infinite;
}

.preloader-ring span:nth-child(2) {
    inset: 16px;
    border-top-color: var(--white);
    border-right-color: var(--white);
    animation-duration: 1.4s;
    animation-direction: reverse;
}

.preloader-ring span:nth-child(3) {
    inset: 32px;
    border-top-color: #f1c66b;
    border-right-color: #f1c66b;
    animation-duration: 1s;
}

.preloader-text {
    display: flex;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.preloader-text span:last-child {
    color: #f1c66b;
}

@keyframes preloaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- 5. Bottom Copyright --- */
.footer-bottom {
    background-color: #071320;
    padding: 15px 0;
    font-size: 12px;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

.legal-links .sep {
    margin: 0 8px;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-group,
    .btn-gradient {
        width: 100%;
    }

    .footer-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.main-sub-title {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-body);
    padding-bottom: 8px;
    text-transform: uppercase;
}

h2.main-title {}

h2.main-title {
    color: #0F2944;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gsap-split-words {
    overflow: hidden;
}

.gsap-split-words .split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
}

.about-acccodians {}

.about-acccodians {
    margin: 20px 0px;
    overflow: hidden;
    padding-left: 10px;
}

button.accordion-button.collapsed {
    background: #E8E8E8;
}

.accordion-header button {
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    outline: none;
    border: none;
}

.accordion-item {
    border: 1px solid #000;
    border-radius: 25px !important;
    overflow: hidden;
    box-shadow: -4px 0px 0px;
}

.accordion-item:first-child {
    margin-bottom: 18px;
}


.accordion-button:not(.collapsed) {
    background: var(--white);
    border-bottom: none;
}

.accordion-body {
    padding-top: 0;
    padding-bottom: 25px;
}

.accordion-item:not(:first-of-type) {
    .accordion-item: not(: first-of-type) {
        /* border-top: 0; */
    }

    border-top: unset;
}

.accordion-item:not(:first-of-type) {
    border-top: unset !important;
}



.blue-sec {
    background-image: url('../assets/images/section-bg.png');
    color: var(--white);
}

h2.main-title {}

.blue-sec .main-title {
    color: var(--white);
}

.publishing-content-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.publishing-content-images {
    width: 90%;
}

.points li {
    display: flex;
    gap: 9px;
    align-items: center;
    line-height: 33px;
}

.publishing-content-main .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

.publishing-right-main {}

.publishing-right-main {
    position: relative;
    width: -webkit-fill-available;
    height: 100%;
}

.publishing-logo-stamp {}

.publishing-logo-stamp {
    position: absolute;
    bottom: 0;
    left: -10px;
}

.publishing-airoplane {
    position: absolute;
    left: -90px;
    top: 0;
    width: 280px;
}

.publishing-girl-group {}

.publishing-girl-group {
    width: 380px;
    position: relative;
    z-index: 2;
    margin-left: auto;
}

.publishing-girl-bg {
    position: absolute;
    z-index: -1;
}

.publishing-girl {
    padding-top: 72px;
}

section.special-welcome {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-image {
    position: absolute;
    left: 0;
    top: 0;
    height: -webkit-fill-available;
}

.special-welcome .right-image {
    position: absolute;
    right: 0;
    top: 0;
    height: stretch;
}

.welcome-content-main {
    position: relative;
    z-index: 999;
    text-align: center;
    background: var(--primary-dark);
    min-height: 500px;
    display: flex;
    width: auto;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding: 0px 90px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.welcome-content-main h2:last-child {
    width: 120px;
}

.welcome-content-main h2 {
    color: var(--white);
}

.welcome-content-main h3 {
    color: var(--primary);
}

.discount-title {
    color: #EBD193 !important;
    font-size: 82px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 77px;
    padding-bottom: 7px;
}

.left-image img,
.right-image img {
    object-fit: cover;
    height: inherit;
}

.welcome-content-main .last-title {
    width: 440px;
    margin: 0 auto;
}

.welcome-content-main {}

.welcome-content-wrapper::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 100%;
    background: var(--white);
    left: -5%;
    z-index: 2;
    clip-path: polygon(13% 0, 87% 0, 100% 50%, 87% 100%, 13% 100%, 0% 50%);
}

.welcome-content-wrapper::after {
    content: '';
    background: var(--primary);
    width: 106%;
    height: 100%;
    left: -3%;
    z-index: 33;
    position: absolute;
    top: 0;
    clip-path: polygon(13% 0, 87% 0, 100% 50%, 87% 100%, 13% 100%, 0% 50%);
}

.welcome-content-wrapper {
    position: relative;
}

.book-col.large {
    width: 1680px !important;
}

.featured-sec .main-btns {
    text-align: center;
}

.featuerd-title {
    text-align: center;
    padding: 0px 130px;
}

/* Testimonial Section Styling */
.testimonial-sec {
    background-color: var(--light);
}

.testimonial-sec .sub-title {
    1:
        AUTO 100PX;
    1:
        AUTO 100PX;
    1:
        AUTO 100PX;
    1:
        AUTO 100PX;
    1:
        AUTO 100PX;
}

.testimonial-sec .main-title {}

/* Stats Bar */
.stats-bar {}

.authors-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light);
}

.avatar-group .avatar:last-child {
    margin-left: -15px;
}

.badge-text .count {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-text .label {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.stats-desc {}

.rating-box .rating-score {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.rating-box .rating-score i {
    font-size: 28px;
    color: var(--black);
}

.rating-box .score {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.rating-box .rating-count {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px 20px;
    min-height: 350px;
    height: 100%;
    5: 500;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0px 10px;
    display: flex;
}

.testimonial-card .stars {
    color: var(--black);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    =: 12.5px;
    font-weight: 500;
}

.card-footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.author-role {
    font-size: 12px;
    color: #555;
    display: block;
}

.quote-icon {
    font-size: 36px;
    color: var(--black);
}

/* Dots Pagination */
.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 35px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-dark);
    transform: scale(1.2);
}

/* =============================================
   Blog Styles
   ============================================= */

/* Blog Page Header */
.blog-page-header {
    background: var(--light);
    text-align: center;
}

.blog-page-header .main-sub-title {
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-page-header .main-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
}

/* Blog Section */
.blog-sec {
    background: var(--white);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 22px 20px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--muted);
}

.blog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog-read-more:hover {
    color: var(--primary);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    gap: 8px;
}

.blog-pagination .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
}

.blog-pagination .page-item.active .page-link {
    background: var(--gradient-sec);
    color: var(--black);
    border-color: transparent;
}

.blog-pagination .page-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Blog Single Header */
.blog-single-header {
    background: var(--light);
    text-align: center;
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category-tag,
.blog-date-tag,
.blog-author-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
    background: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-category-tag {
    background: var(--gradient-sec);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.blog-single-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.blog-single-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Single Featured Image */
.blog-single-featured-image {
    margin-top: -50px;
}

.blog-single-featured-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Blog Single Content */
.blog-single-content {
    background: var(--white);
}

.blog-article {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.blog-article .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.blog-article h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-article p {
    margin-bottom: 18px;
}

/* Blog Single Tags */
.blog-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-single-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    background: var(--light);
    padding: 6px 14px;
    border-radius: 50px;
}

.blog-single-tags i {
    color: var(--primary);
    font-size: 11px;
}

/* Author Box */
.blog-author-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 35px;
    margin-top: 40px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-box-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.author-box-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.author-box-bio {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social-links {
    display: flex;
    gap: 10px;
}

.author-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.author-social-links a:hover {
    background: var(--gradient-sec);
    color: var(--black);
    border-color: transparent;
}

/* Related Posts */
.blog-related-posts {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.related-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.related-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.related-content {
    padding: 18px 16px 20px;
}

.related-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.related-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.related-content h4 a {
    color: inherit;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: var(--primary);
}

.related-date {
    font-size: 13px;
    color: var(--muted);
}

.related-date i {
    color: var(--primary);
    margin-right: 5px;
}

ul.slick-dots {
    bottom: -35px;
}

/* Container alignment */
#testimonial_slider .slick-dots {
    position: absolute;
    bottom: -45px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 8px;
}

/* Hide default slick dot numbers */
#testimonial_slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

/* Inactive dots reset */
#testimonial_slider .slick-dots li button:before {
    display: none;
    /* Hide default Slick ::before content */
}

/* Active dot state */
#testimonial_slider .slick-dots li.slick-active button {
    background-color: var(--primary-dark);
    transform: scale(1.15);
}

/* Ensure room for dots under slider */
#testimonial_slider {
    margin-bottom: 50px;
}

.slick-dots li {
    width: unset;
    height: unset;
    margin: 0 2px;
}

.cta-content .main-btns {
    margin-top: 20px;
}

.cta-content {}

.cta-image-main {
    position: relative;
}

.cta-righthand-book {}

.cta-righthand-book {
    position: absolute;
    top: 50%;
    right: 0;
    width: 450px;
    transform: translateY(-50%);
}

.cta-books {
    position: absolute;
    top: 30px;
    width: 440px;
    right: 360px;
}

.bg-shadow {
    position: absolute;
    right: -130px;
    top: -90px;
    width: 600px;
}

.cta-sec.blue-sec {
    position: relative;
}

.cta-book-bg {
    position: absolute;
    bottom: 0;
    width: 610px;
    right: 260px;
}

.trust-sec {
    background-image: url(../assets/images/trusted-sec-bg.png);
    position: relative;
}

.trust-content p:last-child {
    padding-top: 20px;
}

.trusted-card-content {
    background: var(--white);
    color: var(--black);
    border-radius: 10px;
    text-align: center;
    padding: 22px 20px;
    margin-top: -10px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.trusted-card-content .wrapper {}

.trusted-card-content .card-icon {
    margin: 0 auto;
}

.trusted-card-content h4 {
    padding: 8px 0px;
}

.card-heddin-bnt {
    height: 0px;
    overflow: hidden;
    margin-top: 10px;
}


.trusted-slider {
    position: absolute;
    width: 62%;
    right: -10%;
}

.trusted-card {
    margin: 0px 10px;
}

/* Container Spacing for Arrows */
.trusted-slider {

    /* Space reserved for bottom-left arrows */
}

/* Reset Default Slick Arrows */
.trusted-slider .slick-prev,
.trusted-slider .slick-next {
    position: absolute;
    bottom: 30px;
    top: auto;
    transform: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.trusted-slider .slick-prev:before,
.trusted-slider .slick-next:before {
    display: none;
    /* Hide default Slick unicode characters */
}

/* Position Arrows in Left Corner */
.trusted-slider .slick-prev {
    left: -65%;
}

.trusted-slider .slick-next {
    left: -60%;
    /* Positioned right next to prev arrow */
}

/* FontAwesome Icon Alignment */
.trusted-slider .slick-prev i,
.trusted-slider .slick-next i {
    font-size: 14px;
}

/* Hover & Active States */
.trusted-slider .slick-prev:hover,
.trusted-slider .slick-next:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0px 0px 10px var(--white);
}

.trusted-card:hover .card-hidden-btn {
    bottom: 0px;
}

.card-hidden-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: -50px;
    transition: all 0.3s ease-in-out;
}


.wrapper {}

.wrapper {
    overflow: hidden;
    position: relative;
}

.trusted-card:hover .trusted-card-content p {
    margin-bottom: 50px;
    transition: all 0.4s ease-in-out;
}

.trusted-card:hover .trusted-card-content {
    margin-top: -50px;
}

.trusted-card-content p {
    margin: 1px;
}

.blue-sec .main-sub-title {
    color: var(--primary);
}

/* Accordion Container Reset */
.custom-faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 !important;
    box-shadow: none;
}

/* Header Button Styling */
.custom-faq-accordion .accordion-button {
    background: transparent !important;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 20px 0;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.custom-faq-accordion .accordion-button.collapsed {
    color: var(--white);
}

/* Disable Bootstrap Default Arrow */
.custom-faq-accordion .accordion-button::after {
    display: none !important;
}

/* Font Awesome 5 Icon Styling */
.custom-faq-accordion .faq-icon {
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
}

/* Accordion Body Styling */
.custom-faq-accordion .accordion-body {
    padding: 0 40px 20px 0;
    color: #c8cacc;
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Right Card Box */
.faq-promo-card {}

.faq-promo-card .promo-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    text-transform: uppercase;
}

.faq-promo-card .promo-title span {
    color: var(--primary);
}

.promo-books-fan {
    margin-top: 15px;
}

.promo-books-fan img {
    max-width: 100%;
    height: auto;
    display: block;
}

.faq-promo-card {
    position: relative;
}

.faqs-content {
    position: absolute;
    top: 70px;
    text-align: center;
    width: 100%;
}

.faqs-content h3 span {
    color: var(--primary);
}

.faqs-content h3 {
    padding-bottom: 20px;
    font-size: 48px;
    padding: 0px 40px 20px;
}

.faqs-sec .row:first-child {
    padding-bottom: 40px;
}

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

.about-image-main {
    position: relative;
    width: 90%;
}

img.about-shape-1 {
    position: absolute;
    top: 8px;
    animation: rotateClockwise 8s linear infinite;
}


img.about-shape-2 {
    position: absolute;
    left: -10px;
    animation: rotateAntiClockwise 4s linear infinite;
}

img.about-shape-3 {
    position: absolute;
    opacity: 50%;
    animation: AntiClockScale 8s linear infinite;
}

img.main-image {
    position: absolute;
    top: 40px;
}

img.about-shape-4 {
    position: absolute;
    top: -20px;
    z-index: -1;
    width: 90%;
    border-radius: 50%;
}


/* Continuous Clockwise Rotation Keyframe */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateAntiClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes AntiClockScale {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-180deg) scale(1.1);
        /* Explicitly set rotation at midpoint */
    }

    100% {
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes scaleAnimate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Utility Class */
.rotate-smooth {
    animation: rotateClockwise 8s linear infinite;
}

.info-item span {
    font-size: 15px;
}

.trusted-card-images img {
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    width: 100%;
}

.gsap-split-words {
    overflow: hidden;
}

.split-word {
    display: inline-block;
    will-change: transform, opacity;
}

.services-sec .main-btns {
    margin-top: 50px;
    text-align: center;
}

/* Section Container */
.services-slider-sec {
    padding: 80px 0;
    background-color: var(--primary-dark);
    overflow: hidden;
}

/* Slick Track Alignments */
#bookServicesSlider .slick-track {
    display: flex !important;
    align-items: center;
    padding: 30px 0;
}

.slider-item {
    padding: 0 15px;
    outline: none;
}

/* Card Base Styles */
.book-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
    height: 320px;
}

/* Inactive/Closed Card State (Side Cards) */
.card-closed {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-closed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.closed-title {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: bold;
    padding: 3px 40px;
    width: 100%;
    text-align: center;
    letter-spacing: -1px;
}

/* Active/Opened Card State (Middle Card) */
.card-opened {
    display: none;
    height: 100%;
    width: 100%;
}

.opened-left,
.opened-right {
    height: 100%;
    width: 100%;
}

.opened-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opened-right {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    opacity: 1;
    /* transform: translateX(0); */
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
    width: 90%;
}

.opened-right .card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.opened-right .card-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #f9fbff;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Center Active Slide Transformation --- */
#bookServicesSlider .slick-center .book-card {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

#bookServicesSlider .slick-center .card-closed {
    display: none;
    /* Hide closed view */
}

#bookServicesSlider .slick-center .card-opened {
    display: flex;
    /* Display open 2-column view */
}

/* --- Slick Dots & Custom Arrows Styling --- */
#bookServicesSlider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 12px;
    padding: 0;
    margin-top: 30px;
}

#bookServicesSlider .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

#bookServicesSlider .slick-dots li.slick-active button {
    background: var(--primary);
    border: 1px solid var(--primary-dark);
    box-shadow: 0 0 0 1px var(--primary);
    transform: scale(1.2);
}

#bookServicesSlider .slick-prev,
#bookServicesSlider .slick-next {
    position: absolute;
    bottom: -38px;
    top: auto;
    transform: none;
    /* background: #fff; */
    border: none;
    color: var(--primary);
    font-size: 19px;
    cursor: pointer;
    z-index: 10;
}

#bookServicesSlider .slick-prev {
    left: calc(50% - 160px);
}

#bookServicesSlider .slick-next {
    right: calc(50% - 146px);
}

/* Card Base Styling */
.book-card {
    /* position: relative; */
    /* border-radius: var(--radius); */
    /* overflow: hidden; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* height: 320px; */
    /* Smooth transform performance */
    /* will-change: transform, border-color, box-shadow; */
    /* transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease; */
}

/* Position state containers absolute to allow smooth cross-fading */
.card-closed,
.card-opened {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity, transform;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Inactive/Closed Card State */
.card-closed {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.card-closed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

/* Active/Opened Card State */
.card-opened {
    display: flex;
    background: #08121e;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    /* Subtle expand animation when opening */
    pointer-events: none;
}

/* Text & Button entrance animation inside opened card */
.opened-right {}

/* --- Center Active Slide Animation Triggers --- */
#bookServicesSlider .slick-center .book-card {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

/* Fade Out Closed Card */
#bookServicesSlider .slick-center .card-closed {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
}

/* Fade In Open Card */
#bookServicesSlider .slick-center .card-opened {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}


@media (min-width: 992px) {
    .slider-item.slick-slide.slick-current.slick-active .book-card {
        width: 150% !important;
        position: relative;
        z-index: 99;
        transform: translate(-17%, -15px) scale(1.08) !important;
    }
}

button#slick-slide-control11 {}

#bookServicesSlider .slick-dots li button::before {
    font-size: 0;
}

#bookServicesSlider .slick-prev::before,
#bookServicesSlider .slick-next::before {
    color: var(--primary);
    opacity: 1;
    font-size: 30px;
}


.services-title {
    padding: 0px 180px;
    padding-bottom: 40px;
}

.welcome-content-main .main-btns {
    padding-top: 20px;
}

.book-grid .book-card {
    height: auto;
    border-radius: 4px;
}

/* cursor */

.cursor1 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.4s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    transition: width 0.4s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    z-index: 9999999999;
    mix-blend-mode: difference;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--c1);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    transition: transform 0.15s ease, width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
    z-index: 999999999;
    mix-blend-mode: difference;
}

.cursor1.is-visible,
.cursor2.is-visible {
    opacity: 1;
}

.cursor1.is-hovered {
    width: 50px;
    height: 50px;
    border-color: #ffffff;
}

.cursor2.is-hovered {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
}

.trust-content {
    height: 500px;
}

.newsletter-wrapper .main-sub-title {
    color: var(--primary);
    padding-bottom: 0;
}

/* =============================================
   Inner Banner (for all pages except home)
   ============================================= */
.inner-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 8px solid var(--primary);
}

.inner-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.inner-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 38%;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, #0F2944, #00000085, #0f2944);
    opacity: 100%;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.inner-banner-sub-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.inner-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.inner-banner-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .inner-banner {
        min-height: 300px;
    }

    .inner-banner-title {
        font-size: 2rem;
    }

    .inner-banner-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .inner-banner {
        min-height: 260px;
    }

    .inner-banner-title {
        font-size: 1.6rem;
    }
}

.blog-sec-title {
    padding-bottom: 40px;
}

/* =============================================
   Single Service Pages Styling
   ============================================= */
.single-service-sec {
    background-color: #fff;
    color: var(--text);
    padding: 80px 0 60px;
}

.service-hero {
    margin-bottom: 60px;
}

.service-hero .row {
    align-items: center;
}

.service-hero-content {
    padding-right: 20px;
}

.service-hero-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.service-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.service-features {
    padding: 40px 0 20px;
}

.service-features .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.service-features .section-title h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.included-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.included-card:hover {
    background: #f8f9fa;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.included-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-sec);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.included-card span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.service-cta-box {
    background: var(--gradient-sec);
    border-radius: var(--radius);
    padding: 45px 30px;
    text-align: center;
    color: var(--black);
    margin-top: 40px;
}

.service-cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}

.service-cta-box p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px;
    color: #222;
}

@media (max-width: 768px) {
    .single-service-sec {
        padding: 50px 0 40px;
    }

    .service-hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .service-hero-content h2 {
        font-size: 1.7rem;
    }

    .service-features .section-title h3 {
        font-size: 1.5rem;
    }

    .service-cta-box h3 {
        font-size: 1.5rem;
    }
}

/* Policy Pages */
.policy-sec {
    padding: 60px 0 80px;
    background: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.policy-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.policy-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: 'Plus Jakarta Sans';
}

.policy-content strong {
    font-weight: 700;
    color: var(--black);
}

@media (max-width: 768px) {
    .policy-sec {
        padding: 40px 0 60px;
    }

    .policy-content h2 {
        font-size: 1.35rem;
        margin-top: 30px;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin-top: 22px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 15px;
    }
}

/*  */


.responsive-btn {
    text-align: end;
}

a.open-menu {
    font-size: 26px;
}

.uwy.userway_p1 .userway_buttons_wrapper {
        top: unset !important;
    bottom: 12px !important;
    transform: translate(-100%);
    animation: floatAnimation 3s ease-in-out infinite;
}
/* Define the floating keyframes */
@keyframes floatAnimation {
    0%, 100% {
        transform: translate(-100%, 0);
    }
    50% {
        transform: translate(-100%, -8px); /* Adjust -8px to control how high it floats */
    }
}
a.whatsapp-icon-sticky {
    background: green;
    color: white;
    position: fixed;
    bottom: 30px;
    left: 90px;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    font-size: 27px;
    box-shadow: 0px 0px 10px green;
    animation: floatAnimation 3s ease-in-out infinite;
}