/* ===================================
   US Global Publishers - Complete CSS
   style.css - PART 1
   =================================== */

/* ===================================
   GOOGLE FONTS IMPORT - ALL VARIATIONS
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Playball&display=swap');
/* Root Variables */
:root {
    --primary-yellow: #FFC300;
    --dark-bg: #333333;
    --light-bg: #FFFFFFBF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --olive-green: #8B9968;
    --gray-text: #666666;
    --light-color:#fff;
    --light-background:#f1f2ee;
    --text-black:#000;

        /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Playfair Display', serif;
    --font-script: 'Playball', cursive;
    
    /* Font Weights */
    --font-thin: 100;
    --font-extra-light: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    --font-black: 900;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-weight: var(--font-regular);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.8;
}
html body h1, html body h2, html body h2, html body h4, html body h5, html body h6{
    font-family: var(--font-heading);
}


/* ===================================
   POPUP MODAL
   =================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 195, 0, 0.4),
                0 0 100px rgba(255, 195, 0, 0.2),
                inset 0 0 40px rgba(255, 195, 0, 0.1);
    border: 3px solid #ffc300;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 40px rgba(255, 195, 0, 0.3),
                    0 0 80px rgba(255, 195, 0, 0.15),
                    inset 0 0 30px rgba(255, 195, 0, 0.1);
    }
    to {
        box-shadow: 0 0 60px rgba(255, 195, 0, 0.5),
                    0 0 120px rgba(255, 195, 0, 0.25),
                    inset 0 0 50px rgba(255, 195, 0, 0.15);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #ffc300;
}

.popup-header {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.header-text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.header-text p {
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: Arial, sans-serif;
}

.input-group input:focus,
.input-group textarea:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    transform: translateY(-2px);
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 30px;
    transform: translateY(-50%);
    color: #ffc300;
    font-size: 18px;
}

.input-group textarea + i {
    top: 20px;
    transform: translateY(0);
}

.submit-btn {
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 195, 0, 0.6);
    background: linear-gradient(135deg, #ffaa00 0%, #ff9900 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   HEADER STYLES
   =================================== */
   .main-header {
    background-color: var(--light-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-bar  .col-md-12 {
    justify-content: center;
    display: flex;
}

.top-bar a {
    position: relative;
}
.top-bar .col-md-12 a.top-bar-man {
    position: relative !important;
}

.top-bar .col-md-12 a.top-bar-man:before {
    content: '';
    position: absolute;
    border: 1px solid var(--primary-yellow);
    height: 100%;
    top: 0;
    right: -16px;
    animation: 2s scale linear alternate infinite;
    transform-origin: top;
}
.top-bar {
    background-color: #333333;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.3s;
    font-family: var(--font-heading);
}

.contact-info a:hover {
    color: var(--primary-yellow);
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-yellow);
}

.social-links a {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--text-black);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand .logo {
    max-height: 60px;
    width: auto;
}
ul.navbar-nav{
    display: flex;
    gap: 10px;
}
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 12px !important;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-color) !important;
    background-color: var(--olive-green);
    border-radius: 5px;
}

.nav-item.dropdown .dropdown-menu {
    background-color: #000000;
    border-radius: 10px !important;
    margin-top: 10px !important;
    left: 0;
    right: auto; 
    max-width: 650px;
    width: 650px;
}

.dropdown-item {
    color: var(--text-light);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 15px;
}

.dropdown-item:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-quote {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-heading);
    transition: 0.9s;
    position: relative;
}

.btn-quote:before {
    content: '';
    position: absolute;
    background-color: black;
    width: 100%;
    height: 0%;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.9s;
    z-index: -1;
}

.btn-quote:hover:before {
    height: 100%;
}

.btn-quote:hover {
    color: white !important;
}
.btn-quote:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: var(--dark-bg);
}

.navbar-toggler {
    background-color: var(--primary-yellow);
    border: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    /*min-height: 90vh;*/
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    display: flex;
    align-items: center;
    padding: 100px 0;
}
.hero-section .btn.btn-secondary-cta {
    background: var(--primary-yellow);
}
.hero-section .btn.btn-secondary-cta:hover {
    background-color: var(--dark-bg);
}

/*.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}*/

.hero-section .container {
    position: relative;
    z-index: 2;
}
section.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-subtitle {
    color: var(--text-light);
    font-size: 36px;
    font-weight: var(font-bold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.hero-title {
    color: var(--primary-yellow);
    font-size: 55px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: -10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.trust-badge {
    display: inline-block;
    margin: 30px 0;
}

.trust-badge-content {
    background: #FFC300D9;
    padding: 20px 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.author-images {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--text-light);
    margin-left: -15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.author-img:first-child {
    margin-left: 0;
}

.author-img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.trust-text {
    text-align: center;
}

/*.stars {
    color: var(--light-background);
    font-size: 24px;
    line-height: 24px;
    margin-block: 10px;
}*/
.stars-img {
    margin: 10px 0px 5px 0px;
}

.trusted-by {
    color: var(--text-black);
    font-size: 20px;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: var(--font-medium);
}

.badge-text h3 {
    color: var(--text-black);
    font-size: 42px;
    font-weight: var(--font-extra-bold);
    line-height: 1.1;
    margin: 0;
}

.hero-description {
    color: var(--text-light);
    font-size: 22px;
    margin: 30px 0 40px;
    line-height: 1.6;
    font-family: var(--font-heading);
}

.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    background-color: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    color: var(--dark-bg);
}

/* ===================================
   PUBLISHERS STRIP
   =================================== */
/* ===================================
   PUBLISHERS STRIP - AUTO SCROLL
   =================================== */
.publishers-strip {
    background-color: var(--light-bg);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
    gap: 30px;
}

/* Pause on hover */
.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.publisher-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}

.publisher-logo img {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.publisher-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
    

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}
.why-choose-us .books-grid {
    display: flex;
    gap: 20px;
    height: 100px;
}

/* LEFT COLUMN - moves downwards */
.why-choose-us .books-grid .col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: moveDown 20s linear infinite;
}

/* RIGHT COLUMN - moves upwards */
.why-choose-us .books-grid .col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: moveUp 20s linear infinite;
}

/* DOWN animation */
@keyframes moveDown {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* UP animation */
@keyframes moveUp {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}
.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.book-item img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(2px 4px 6px black);
    transition: transform 0.3s ease;
}


.book-item img:hover {
    transform: translateY(-10px);
}

.why-choose-content {
    padding-left: 40px;
}

section.bestselling-section.py-5 .owl-item {
    opacity: 30%;
    scale:0.9;

    transition:0.9s;
}

section.bestselling-section.py-5  .owl-item.active.center {
    opacity: 1;
    scale:1;
}

.section-title {
    font-size: 50px;
    font-weight: var(--font-extra-bold);
    color: var(--primary-yellow);
    margin-bottom: 25px;
}

.section-text {
    font-size: 16px;
    color: var(--text-black);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.btn-secondary {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    /*margin: 10px 0;*/
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    border: unset;
}
.btn-secondary:before {
    content: '';
    position: absolute;
    background-color: black;
    width: 100%;
    height: 0%;
    bottom: 0;
    left: 0;
    border-radius: 15px;
    transition: 0.9s;
    z-index: -1;
}

.btn-secondary:hover:before {
    height: 100%;
}
.btn-secondary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.stats-cards {
    display: flex;
    gap: 20px;
    margin: 30px 0 10px 0px;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
}

/*.stat-card i {
    font-size: 32px;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    transition: 0.9s;
}
.stat-card:hover i {
    transform: rotatey(360deg);
    transition: 0.9s;
    SCALE: 1.1;
}*/
.stat-card h4 {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: var(--primary-yellow);
}
.stat-card p {
    font-size: 16px;
    font-weight: var(--font-bold);
    color: var(--text-black);
    margin-bottom: 0px;
}

.awards-badges {
    display: flex;
    gap: 15px;
    margin-top: 0px;
    justify-content: space-around;
}

.awards-badges img {
    width: 23% !important;
}

/* ===================================
   VIDEO SECTION - CUSTOM PLAYER
   =================================== */
.video-section {
    padding: 80px 0;
    background-size: 100% 60% !important;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: top center;
}

.section-heading {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}
.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    background-color: #000;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Play Overlay (Big Play Button) */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.play-overlay.hidden {
    opacity: 0;
}

.play-overlay-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff63;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.play-overlay-btn:hover {
    transform: scale(1.1);
    background: var(--primary-yellow);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.play-overlay-btn i {
    margin-left: 5px;
    font-size: 70px;
    color: var(--light-background);
}

/* Video Controls Container */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar:hover {
    height: 8px;
}

.progress-filled {
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-filled::after {
    opacity: 1;
}

.time-display {
    color: white;
    font-size: 13px;
    font-weight: 500;
    min-width: 100px;
    text-align: right;
}

/* Control Buttons */
.controls-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.play-pause-btn {
    font-size: 20px;
    width: 40px;
    height: 40px;
}

/* Volume Slider */
.volume-slider {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    outline: none;
}

.controls-left:hover .volume-slider {
    width: 80px;
    opacity: 1;
    margin-left: 5px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Fullscreen Styles */
.video-wrapper:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.video-wrapper:-moz-full-screen {
    width: 100%;
    height: 100%;
}

.video-wrapper:fullscreen {
    width: 100%;
    height: 100%;
}

.video-wrapper:-webkit-full-screen .custom-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===================================
   BEST SELLING BOOKS
   =================================== */
.bestselling-section {
    background: #f7f7f7;
}

.bestselling-section .owl-carousel,
.bestselling-section .owl-stage-outer {
    overflow: visible !important;
}
/*.bestselling-section .owl-carousel .owl-item img{*/
/*    width: auto;*/
/*}*/
.book-img img {
    width: 200px;
    height: auto;
}
.review-box {
    background: #fff;
    padding: 35px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 10px solid #ffc300;
    left: -40px;
    bottom: 30px;
    position: relative;
    font-family: var(--font-heading);
}
.review-box p{
    margin-bottom: 0;
}
.avatar {
    position: absolute;
    margin-bottom: 10px;
    right: 0;
    top: -65px;
    width: 130px !important;
}
.stars {
    width: 130px;
    margin: 10px 0;
}
.bestselling-section .owl-nav {
    position: absolute;
    right: 10px;
    top: -60px;
    display: flex;
    gap: 12px;
}
.bestselling-section .owl-nav button {
    background: #f9c300 !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    color: #333 !important;
}
.bestselling-section .owl-nav button:hover {
    background: #ffd84d !important;
    transform: scale(1.1);
}

/* ===================================
   PREMIUM SERVICES
   =================================== */
/*---------------Carousel--------------*/
.services-carousel .carousel-btn {
    position: absolute;
    top: -20%;
    transform: translateY(-50%);
    z-index: 20;
    background: #0000000f;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}
.services-carousel .carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.428);
}
.services-carousel .prev-btn {
    right: 70px;
}
.services-carousel .next-btn {
    right: 10px;
}
/*---------------Carousel--------------*/
.services-carousel {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.services-carousel .carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding-top: 10px;
}

.services-carousel .carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.services-carousel .card-item {
  min-width: calc(33.33% - 20px);
}

/*---------------Carousel--------------*/

.premium-services {
    padding: 60px 0;
    background-color: var(--primary-yellow);
}
.premium-services .Sub-tittle{
    font-family: var(--font-script);
    color: var(--text-black);
}
.premium-services a.btn.btn-quote {
    padding-block: 17px;
    background-color: var(--text-light) !important;
}

.service-card .service-icon {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.service-card .service-icon img {
    width: 24%;
}

.section-header-centered {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-main {
    font-size: 35px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-subtitle{
    font-size: 18px;
    color: var(--text-black);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.service-card {
    background-color: #ffffff69;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 
ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card.featured {
    filter: drop-shadow(2px 4px 6px #FFB700);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    color: var(--dark-bg);
}
.service-card .service-icon {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.service-card .service-icon img {
    width: 24%;
}
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
    margin-bottom: 0;
    font-family: 'Poppins';
}
.service-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.service-features i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.btn-service {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.cta-banner {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    margin-top: 40px;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-black);
    margin-bottom: 25px;
}

.cta-buttons .btn-secondary{
    background-color: var(--light-color) !important;
    margin-left: 20px;
}
.btn-primary-cta {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.btn-secondary-cta {
    background-color: white;
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}
.cta-buttons .btn-secondary-cta{
    float: right;
}

.btn-secondary-cta:hover {
    background-color: var(--dark-bg);
    color: white;
}

/* ===================================
   JOURNEY STEPS
   =================================== */
.journey-steps {
    padding-block: 50px 0;
    background-color: var(--light-background);
}
section.journey-steps .timeline-item:last-child:before {
    display: none;
}
section.journey-steps .timeline-item {
    margin-bottom: 0;
}
section.journey-steps .timeline-item img.Journey {
    margin: 0 auto;
    display: table;
    width: 100%;
}
.section-title-journey {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-yellow);
    text-align: left;
    margin-bottom: 40px;
}
.timeline {
    position: relative;
    max-width: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    justify-content: center;
    justify-content: space-around !important;
}

/* 
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-yellow);
} */

.timeline-item {
    /*display: flex;*/
    align-items: center;
    margin-bottom: 60px;
/*    position: relative;
    width: 33.33%;*/
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 19px;
}
.step-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-bg);
}

.timeline-content {
    padding: 10px 10px;
    background-color: transparent;
    border-radius: 0;
    margin: 0 0px;
    text-align: center;
}
.timeline-content h3 {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: var(--font-semi-bold);
    color: #8B9968;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.3;
    font-family: var(--font-heading);
    font-weight: var(--font-regular);
}
.timeline-item {
    display: block;
}
section.journey-steps .timeline-item img.arrow1 {
    position: absolute;
    right: 0;
    width: 60%;
    right: -29%;
    animation: 2s fadeIn 
linear alternate infinite;
}

section.journey-steps .timeline-item:nth-child(even) img.arrow1 {
    top: 10%;
}


/* ===================================
   CTA BOOK SECTION
   =================================== */
.cta-book-section {
    
    background-color: var(--light-background);
}
.cta-book-section .container {
   
    background-size: 100% 100% !important;
    border-radius: 30px !important;
    padding-inline: 60px;
    background-size: 100% 55% !important;
    background-repeat: no-repeat;
    background-position: 50%;
}
.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 30px;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--olive-green);
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    /*display: inline-flex;*/
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: var(--light-color);
}

.btn-cta-link {
    font-family: var(--font-heading);
    background-color: transparent;
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius:15px;
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    border: 2px solid var(--dark-bg);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-link:hover {
    background-color: var(--dark-bg);
    color: white;
}

.book-mockup {
    text-align: center;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 0px 80px 90px;
    background-color: var(--light-background);
}

.faq-section .container {
    max-width: 1920px !important;
}

.section-title-faq {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 40px;
    line-height: 1.2;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background-color: transparent;
    color: var(--dark-bg);
    font-weight: 700;
    padding: 23px 0;
    border: none;
    font-size: 18px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--dark-bg);
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.accordion-button:hover {
    color: var(--primary-yellow);
}

.faq-icon {
    width: 33px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 32px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(90deg);
}

.accordion-button:not(.collapsed) .faq-icon i {
    color: var(--primary-yellow);
}

.accordion-body {
    padding: 0 0 20px 39px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    background-color: transparent;
    font-family: var(--font-heading);
    font-weight: var(--font-regular);
}

.faq-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: -25px;
}

.faq-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    height: auto;
    max-height: 100%;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.main-footer {
    background-color: var(--primary-yellow);
    color : var(--text-light);
    padding : 60px 0 0;
}

.footer-logo {
    max-height: 60px;
    width: auto;
}

.social-links-footer a {
    color: white;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links-footer a:hover {
    color: var(--primary-yellow) !important;
}

.footer-title {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: var(--font-extra-bold);
    color: var(--text-dark);
    margin-bottom: 10px;
}
.main-footer .menu-col {
    position: relative;
    left: 80px;
}
.footer-links {
    list-style: none;
    padding: 0;
    font-family: var(--font-heading);
    font-weight: var(--font-regular);
}

.footer-links li {
    margin-bottom: 4px;
}
.footer-text ul.footer-links li {
    padding-bottom: 0px !important;
}
footer.main-footer a i {
    background-color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
}
.footer-bottom h2, .footer-bottom h3,.footer-bottom p {
    color: black !important;
}
.footer-bottom p {
    font-family: var(--font-heading);
}
.footer-bottom .container {
    margin-top: 30px;
    padding-block: 30px;
    border-top: 1px solid #333333;
}
footer.main-footer a {
    color: var(--text-dark);
}
footer.main-footer a:hover{
    color: var(--light-color);
}
footer.main-footer li {
    display: block;
}
.footer-links a {
    color:var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary-yellow);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: var(--primary-yellow);
    text-align: center;
    position: relative;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}
.footer-copyright {
    background: var(--light-background);
    text-align: center;
    padding-block: 10px;
}

.footer-copyright p {
    margin: 0px;
    font-family: var(--font-heading);
    color: var(--text-black);
    font-size: 14px;
}
.footer-legal-links a{
    font-family: var(--font-heading);
    font-weight: var(--font-regular);
    color: var(--text-black);
    font-size: 14px;
}
/* ================================
   STICKY FLOATING BUTTONS
================================ */
body.modal-open .sticky-contact-buttons, body.popup-overlay {
    display: none;
}
.sticky-contact-buttons {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    background: #ffc300;
}

.sticky-btn i {
    font-size: 24px;
    color: #000;
    transition: color 0.3s ease;
}

/* Hover Effect - Same for all buttons */
.sticky-btn:hover {
    background: #000;
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sticky-btn:hover i {
    color: var(--primary-yellow);
}

/* Tooltip on hover */
.sticky-btn::after {
    content: attr(title);
    position: absolute;
    right: 75px;
    background: #000;
    color: #ffc300;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-btn:hover::after {
    opacity: 1;
    right: 80px;
}
/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border: 1px solid #000;
}

.back-to-top:hover {
    background-color: #FFC700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}
/* ===================================
    INNER PAGES HERO SECTION
=================================== */
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}
.inner-hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
    color: var(--primary-yellow);
}

/* ================================
   PACKAGES PAGE - COMPLETE STYLES
================================ */
.packages-hero-section {
    background: url('../images/pages-banner/packages-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.packages-hero-section .container {
    position: relative;
    z-index: 2;
}

.packages-hero-section h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Packages Main Section --- */
.packages-main-section {
    padding: 80px 0;
    background: #ffc300;
}

/* --- Section Intro --- */
.section-intro {
    margin-bottom: 50px;
}

.section-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* --- Package Card --- */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    font-family: var(--font-heading);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Featured Package */
.package-featured {
    border: 3px solid #000;
}

.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -10px;
    background: #000;
    color: #ffc300;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.featured-ribbon i {
    margin-right: 5px;
}

/* Package Header */
.package-header {
    text-align: center;
    padding: 30px 20px 20px;
    /*background: #f8f9fa;*/
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

.package-badge {
    width: 60px;
    height: 60px;
    background: #ffc300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.4);
}

.package-badge i {
    font-size: 28px;
    color: #000;
}

.package-title {
    font-size: 28px;
    font-weight: var(--font-semi-bold);
    color: #000;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.package-company {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Package Price */
.package-price {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.price-amount {
    font-size: 42px;
    font-weight: var(--font-semi-bold);
    color: #000;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.price-billing {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 3px;
}

/* Package Description */
.package-description {
    padding: 20px;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.package-description p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Package Features */
.package-features {
    padding: 20px;
    background: #fff;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 400px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    border-bottom: 1px solid #e0e0e0;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #4caf50;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Package Footer */
.package-footer {
    padding: 20px;
    /*background: #f8f9fa;*/
    border-top: 2px solid #e0e0e0;
}

.package-ideal {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.packages-main-section .btn-cta-primary {
    display: block;
    width: 100%;
    text-align: center;
}

/* Equal Height Cards */
.row.g-4 {
    display: flex;
}

.row.g-4 > [class*='col-'] {
    display: flex;
}

/* ================================
   ABOUT US PAGE - COMPLETE STYLES
================================ */
.about-hero-section {
    background: url('../images/pages-banner/about-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

/* --- Who We Are Section --- */
.who-we-are-section {
    padding: 90px 0;
    background: #fff;
}

.about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.3);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-box:hover img {
    transform: scale(1.08);
}

.about-text-content {
    padding: 20px 40px;
}

.about-text-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
}


.about-text-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- What We Do Section --- */
.what-we-do-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* --- Our Services Section --- */
.our-services-section {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

.abt-service-card {
    background: #ffffff52;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.abt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffc300, #ffaa00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.abt-service-card:hover::before {
    transform: scaleX(1);
}

.abt-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.25);
    border-color: #ffc300;
}

.our-services-section .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.3);
    transition: all 0.3s ease;
}

.abt-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 195, 0, 0.5);
}

.service-icon i {
    font-size: 40px;
    color: #000;
}

.abt-service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.abt-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* --- Our Mission Section --- */
.our-mission-section {
    padding: 90px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('../images/pages-banner/portfolio-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.mission-content {
    background: rgba(255, 195, 0, 0.15);
    padding: 60px 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 195, 0, 0.3);
    transition: all 0.4s ease;
}

.mission-content:hover {
    background: rgba(255, 195, 0, 0.25);
    border-color: rgba(255, 195, 0, 0.6);
    transform: scale(1.02);
}

.mission-icon-box {
    text-align: center;
}

.mission-icon-box i {
    font-size: 120px;
    color: #ffc300;
    transition: all 0.4s ease;
}

.mission-content:hover .mission-icon-box i {
    transform: scale(1.1) rotate(10deg);
}

.mission-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffc300;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* --- Why Choose Section --- */
.why-choose-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    border-left: 4px solid #ffc300;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent #ffc300 transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.25);
    border-left-width: 6px;
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 195, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.5);
}

.feature-icon i {
    font-size: 32px;
    color: #000;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
/* ================================
   SERVICE PAGES - STYLES
================================ */

/* --- Hero Section --- */
.ghostwriting-hero-section {
    background: url('../images/pages-banner/ghostwriting-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ghostwriting-hero-section .container {
    position: relative;
    z-index: 2;
}

.ghostwriting-hero-section h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Service Content Section --- */
.service-content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* --- Service Image Box --- */
.service-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.service-image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.3);
}

.service-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-image-box:hover img {
    transform: scale(1.1);
}

.image-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.5);
    transition: all 0.3s ease;
}

.service-image-box:hover .image-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.7);
}

.image-icon i {
    font-size: 36px;
    color: #000;
}

/* --- Service Text Box --- */
.service-text-box {
    padding: 20px 30px;
}

.service-text-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-text-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* --- Final Process Box --- */
.final-process-box {
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    padding: 50px 60px;
    border-radius: 25px;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.3);
    transition: all 0.4s ease;
}

.final-process-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.5);
}

.final-process-box h3 {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.final-process-box p {
    font-size: 17px;
    color: #000;
    line-height: 1.9;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 19px;
    font-weight: 700;
    color: #000;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 0;
}

.process-icon-large {
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.final-process-box:hover .process-icon-large {
    transform: scale(1.1) rotate(10deg);
}

.process-icon-large i {
    font-size: 70px;
    color: #ffc300;
}


/* ================================
   PORTFOLIO PAGE
================================ */
.portfolio-hero-section {
    background: url('../images/pages-banner/portfolio-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}  

.portfolio-hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Portfolio Showcase Section --- */
.portfolio-showcase-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* --- Section Intro --- */
.section-intro {
    margin-bottom: 60px;
}

.section-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    /*margin-bottom: 20px;*/
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

/* --- Portfolio Showcase Card --- */
.portfolio-showcase-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-showcase-card:hover {
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.25);
    transform: translateY(-8px);
}

/* --- Portfolio Image Wrapper --- */
.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    /*height: 320px;*/
    background: #f0f0f0;
}

.portfolio-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-showcase-card:hover .portfolio-main-img {
    transform: scale(1.08);
}

/* --- Image Overlay --- */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.92) 0%, rgba(255, 170, 0, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-showcase-card:hover .image-overlay {
    opacity: 1;
}

.view-icon {
    width: 70px;
    height: 70px;
    background: #000;
    color: #ffc300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.portfolio-showcase-card:hover .view-icon {
    transform: scale(1.15) rotate(15deg);
}

/* --- Portfolio Content --- */
.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.portfolio-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* --- GALLERY MODAL STYLES --- */
.portfolio-gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.96);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: imageZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes imageZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.gallery-modal-close {
    position: absolute;
    top: 35px;
    right: 55px;
    color: #ffc300;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.gallery-modal-close:hover {
    color: #000;
    background: #ffc300;
    transform: rotate(90deg);
}

/* Previous/Next Buttons */
.gallery-modal-prev,
.gallery-modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 195, 0, 0.95);
    color: #000;
    font-size: 28px;
    border: none;
    border-radius: 50%;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-modal-prev {
    left: 35px;
}

.gallery-modal-next {
    right: 35px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: #ffc300;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 195, 0, 0.5);
}

.gallery-modal-prev:active,
.gallery-modal-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Image Counter */
.gallery-modal-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 195, 0, 0.95);
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* ===================================
   CONTACT US PAGE
   =================================== */
 .contact-hero {
    background: url('../images/pages-banner/contact-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero p {
    font-size: 22px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0 0 0;
    background-image:url(../images/books/book-bg.png);
    background-color: var(--light-background);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* --- Contact Form Card --- */
.contact-card {
    font-family: var(--font-heading);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 45px;
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 195, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 195, 0, 0.15);
}

.card-header-custom h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}

.card-header-custom p {
    color: var(--gray-text);
    font-size: 16px;
}

/* --- Form Styling with Icons --- */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.input-group-custom {
    position: relative;
    margin-bottom: 0;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc300;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 10px;
    transform: none;
}

.form-control-custom {
    padding: 14px 20px 14px 55px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-custom:focus {
    border-color: #ffc300;
    box-shadow: 0 0 0 0.2rem rgba(255, 195, 0, 0.15);
    background: #fff;
}

.form-control-custom:focus + .input-icon {
    color: #ffc300;
    transform: translateY(-50%) scale(1.1);
}

select.form-control-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc300' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

/* --- Submit Button --- */
.btn-submit {
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    color: #000;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 195, 0, 0.5);
    background: linear-gradient(135deg, #ffaa00 0%, #ff9900 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* --- Contact Info Card --- */
.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 195, 0, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 195, 0, 0.15);
}

.info-header h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 32px;
}

.info-header p {
    color: var(--gray-text);
    font-size: 16px;
}

/* --- Info Items --- */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc300;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(255, 195, 0, 0.15);
    transform: translateX(5px);
}

.info-icon {
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3);
}

.info-icon i {
    color: #000;
    font-size: 22px;
}

.info-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-content a,
.info-content p {
    color: var(--gray-text);
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #ffc300;
}

/* --- Social Links --- */
.social-links h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
}

/* --- Map Container --- */
.map-container {
}

/* ===================================
   TERMS AND CONDITIONS PAGE
   =================================== */
 .terms-hero {
    background: url('../images/pages-banner/terms-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* ===================================
   PRIVACY POLICY PAGE
   =================================== */
 .policy-hero {
    background: url('../images/pages-banner/policy-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* laptop */

@media (max-width: 1366px) {
    .inner-hero h1 {
    font-size: 45px;
    line-height: 55px;
}
.hero-subtitle {
    font-size: 22px;
}
/* ==========================
HEADER TOP
============================ */
nav.navbar.navbar-expand-lg div#navbarNav a {
    font-size: 14px;
    line-height: 24px;
}

nav.navbar.navbar-expand-lg div#navbarNav li {
    margin-inline: -6px !important;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.stat-card h4 {
    font-size: 25px;
}
/* ===================================
   VIDEO SECTION - CUSTOM PLAYER
   =================================== */
.section-heading {
    font-size: 30px;
}
/* ===================================
   BEST SELLING BOOKS
   =================================== */

p {
}

.h3, h3 {
    font-size: 1.30rem;
}

.review-box {
    padding: 18px;
}


/* ===================================
   BEST SELLING BOOKS
   =================================== */
.section-title {
    margin-bottom: 5px;
}

.bestselling-section .owl-stage-outer p {
    font-size: 11px;
}
/* ===================================
   JOURNEY STEPS
   =================================== */


.timeline-content p {
    font-size: 10px !important;
}
/* ===================================
   CTA BOOK SECTION
   =================================== */

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-text {
    margin-bottom: 10px;
}
/* ===================================
   FAQ SECTION
   =================================== */

.section-title-faq {
    font-size: 30px;
    margin-bottom: 20px;
}
/* ===================================
   FOOTER STYLES
   =================================== */
   .footer-links a {
    font-size: 13px;
}
}
@media (max-width: 1280px) {
/* ===================================
   VIDEO SECTION - CUSTOM PLAYER
   =================================== */

section.video-section {
    padding: 40px 0;
}
}
@media (max-width: 1080px) {
    .about-text-content h2, .section-header h2, .mission-content h2, .section-header h2{
    font-size: 34px;
}
    .section-main-title {
    font-size: 32px;
    line-height: 42px;
}
.portfolio-title {
    font-size: 20px;
    line-height: 30px;
}
    .d-none {
    display: none !important;
}
    .popup-container {
    max-width: 700px;
}
   p {
    font-size: 14px !important;
    line-height: 24px !important;
}
      .services-carousel .card-item {
    min-width: calc(50% - 20px);
  }

/* ===================================
   HEADER STYLES
   =================================== */

.navbar-nav .nav-link {
    padding: 5px 10px !important;
}
/* ===================================
   HERO SECTION
   =================================== */

.hero-title {
    font-size: 35px;
}

.badge-text h3 {
    font-size: 32px;
}

.hero-description {
    margin: 10px 0 20px;
}

.hero-section {
    padding: 50px 0;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
p {
    font-size: 14px !important;
}

.btn-secondary {
    font-size: 14px;
    line-height: 24px;
}

.stat-card h4 {
    font-size: 22px;
}
/* ===================================
   BEST SELLING BOOKS
   =================================== */
.bestselling-section .owl-carousel .owl-item img {
}

.bestselling-section .owl-carousel .owl-item .book-img img {
    width: 111%;
}

.bestselling-section .owl-stage-outer p {
    font-size: 11px !important;
}

.review-box {
    left: -22px;
}

/* ===================================
   PREMIUM SERVICES
   =================================== */

.service-card h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.services-carousel .service-card {
    padding: 20px;
}
/* ===================================
   JOURNEY STEPS
   =================================== */
.section-title-journey {
    font-size: 30px;
}

.timeline-content p {
    font-size: 10px !important;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 30px 0px 40px 10px;
}

.section-title-faq {
    font-size: 25px;
}

.accordion-button {
    font-size: 13px;
}

.accordion-button {
}

.accordion-body {
    font-size: 13px;
}

/* ===================================
   FOOTER STYLES
   =================================== */

.main-footer {
    padding: 40px 0 0;
}
.footer-links a {
    font-size: 14px;
}
.footer-bottom .container {
    margin-top: 10px;
}

.footer-bottom .container p {
    margin-bottom: 0;
}
}
/* laptop */
  /* =================================== */
/* Tablet */
@media (max-width: 992px) {
    .navbar-nav .dropdown-menu {
    position: static !important;
}
    .mega-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mega-dropdown.open {
        max-height: 330px;
    }

    /* Image hide on mobile */
    .mega-dropdown .dropdown-img {
        display: none !important;
    }
    .top-bar a.top-bar-man,.top-bar strong {
    font-size: 11px !important;
}
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }
/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose-us .row {
    flex-direction: column-reverse;
}

.why-choose-us {
    padding: 30px 0;
    text-align: center;
}

.why-choose-content {
    margin-top: 0;
}

.why-choose-us .books-grid {
    height: 500px;
    overflow: hidden;
}
.book-item img {
    width: 70%;
}
/* ===================================
   BEST SELLING BOOKS
   =================================== */
.align-items-end {
    display: block !important;
}

.book-item img {
    width: 70%;
}



.section-title {
    font-size: 30px;
}

.bestselling-section .owl-carousel .owl-item .book-img img {
    width: 70%;
    margin-bottom: 40px;
}

.bestselling-section h2.section-title {
    text-align: center;
}

.bestselling-section .owl-nav {
    position: unset;
    display: flex;
    justify-content: center;
}

.bestselling-section button.owl-dot {display: none;}
/* ===================================
   BEST SELLING BOOKS
   =================================== */
   /* ===================================
   PREMIUM SERVICES
   =================================== */

section.premium-services {padding: 30px 0;}
.section-header-centered {
    text-align: center;
}
.services-carousel .service-card .service-icon {
    display: flex;
    gap: 10px 10px !important;
    flex-direction: column;
}
.services-carousel .service-card .service-icon img {
    margin: 0 auto;
    display: table;
}
.services-carousel .service-card {
    text-align: center;
}
section.premium-services .cta-banner {
    text-align: center;
            margin-top: 110px;
}
footer.main-footer a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}
.journey-steps .timeline-item {
    margin-bottom: 0px !important;
}
.services-carousel .carousel-btn {
    top: 113%;
    transform: translate(-570%, 0px);
}

    .trust-badge-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
    }

    .why-choose-content {
        padding-left: 0;
        margin-top: 0px;
    }

    /* .timeline::before {
        left: 40px;
    } */

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }

    .btn-quote {
        margin-left: 0;
        margin-top: 15px;
    }

    .journey-steps h2.section-title-journey {
    text-align: center;
}
    .section-title-main,
    .section-title-journey {
        font-size: 38px;
    }
    
    .cta-buttons,
    .cta-buttons-group {
        justify-content: center;
    }
    .video-section {
        padding: 60px 0;
        background-size: 100% 60% !important;
    }
    
    .section-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .play-overlay-btn {
        width: 100px;
        height: 100px;
    }
    
    .play-overlay-btn i {
        font-size: 60px;
    }
    
    .video-controls {
        padding: 15px;
    }
    
    .controls-wrapper {
        gap: 10px;
    }
    /* ===================================
   CTA BOOK SECTION
   =================================== */
.journey-steps {
    text-align: center !important;
}

.journey-steps h2.section-title-journey {
    text-align: center;
}

.cta-book-section .container {
    padding-inline: 130px;
    background-size: 100% 100% !important;
    text-align: center;
    padding-block: 40px;
}

.cta-book-section .container .book-mockup img {
    width: 70%;
    margin-top: 50px;
}

.cta-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

a.btn.btn-cta-primary,.btn-cta-link {
    font-size: 14px;
    line-height: 24px;
}
.faq-section .faq-image {
    margin-top: 20px;
}

.faq-section .faq-image img {
    object-fit: cover;
    height: 350px;
}

.main-footer .menu-col {
    left: 0;
}
    .faq-section {
        padding: 60px 40px 60px 0;
    }
    
    .section-title-faq {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .faq-image {
        margin-top: 40px;
    }
    
    .faq-image img {
        height: auto;
    }
 .faq-section .faq-image {
    margin-top: 20px;
}

.faq-section .faq-image img {
    object-fit: cover;
    height: 350px;
}

.main-footer .menu-col {
    left: 0;
}
.accordion-button {
    font-size: 18px;
}
}
@media (max-width: 840px) {
    .main-footer .menu-col {
    left: unset;
}
}
/* Mobile */
@media (max-width: 768px) {
    .sticky-contact-buttons {
        right: 15px;
        gap: 12px;
    }
      .timeline-icon {
margin-bottom: 0px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
    }
    
    .sticky-btn i {
        font-size: 20px;
    }
    
    .sticky-btn::after {
        display: none;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .gallery-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-content {
        max-width: 95%;
    }
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .badge-text h3 {
        font-size: 24px;
    }

    .author-img {
        width: 40px;
        height: 40px;
        margin-left: -10px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 15px 35px;
    }

    .trust-badge-content {
        padding: 15px 20px;
    }

    .hero-section {
        background-attachment: scroll;
    }
    
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stats-cards {
        flex-direction: column;
            display: flex;
    gap: 20px;
    margin: 30px 0;
    }
    .video-section {
        padding: 50px 0;
        background-size: 100% 50% !important;
    }
    
    .section-heading {
        font-size: 28px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .play-overlay-btn {
        width: 80px;
        height: 80px;
    }
    
    .play-overlay-btn i {
        font-size: 50px;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .video-controls {
        padding: 12px;
    }
    
    .control-btn {
        font-size: 16px;
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .play-pause-btn {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }
    
    .time-display {
        font-size: 11px;
        min-width: 85px;
    }
    
    .progress-bar {
        height: 5px;
    }
    
    .progress-bar:hover {
        height: 6px;
    }
    
    .controls-left:hover .volume-slider {
        width: 60px;
    }
    
    .controls-buttons {
        gap: 8px;
    }
    
    .controls-left,
    .controls-right {
        gap: 10px;
    }
    
    .section-title,
    .section-title-faq {
        font-size: 32px;
    }
    
    .books-carousel {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
   .timeline-content {
        margin-inline: 70px;
        padding: 20px;
    }
    
    .marquee-content {
        animation: marquee 20s linear infinite;
        gap: 40px;
    }
    
    .publisher-logo {
        min-width: 120px;
    }
    
    .publisher-logo img {
        max-height: 40px;
    }
    .faq-section {
        padding: 50px 20px;
    }
    
    .section-title-faq {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 15px 0;
    }
    
    .accordion-body {
        padding: 0 0 15px 35px;
        font-size: 14px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    section.journey-steps .timeline-item img.arrow1 {
    display: none;
}

.cta-book-section .container .book-mockup img {
    width: 90%;
    margin-top: 10px;
}

.footer-bottom .container p br {
    display: none;
}
.cta-book-section .container {
    padding-inline: 70px;
}
}

/* Small Mobile */
@media (max-width: 525px) {
    .nav-item.dropdown .dropdown-menu{
        min-width: unset !important;
        width: auto;
    }
    .header-text h2 {
    font-size: 28px;
}
    .about-text-content h2, .section-header h2, .mission-content h2, .section-header h2{
    font-size: 24px;
}
        .section-main-title {
        font-size: 24px;
        line-height: 34px;
    }
    .inner-hero {
    padding: 40px 0;
}
.service-text-box h2 {
    font-size: 24px;
}
.final-process-box h3 {
    font-size: 22px;
}
.final-process-box {
    background: linear-gradient(135deg, #ffc300 0%, #ffaa00 100%);
    padding: 40px;
    margin: 30px 0;
}
.process-icon-large {
    width: 80px;
    height: 80px;
}
.process-icon-large i {
    font-size: 40px;
}
    .inner-hero h1 {
    font-size: 26px;
    line-height: 36px;
}
    .owl-carousel .owl-stage-outer {
    overflow: hidden !important;
}
    .review-box {
        left: unset;
    }
    .services-carousel .carousel-btn {
    display: none;
}

section.premium-services .cta-banner {
    margin-top: 40px;
}

.services-carousel .carousel-track {display: block;}

.services-carousel .carousel-track .card-item {
    margin-bottom: 20px;
}



section.premium-services a.btn.btn-cta-primary,section.premium-services a.btn.btn-secondary {
    margin: 0 auto;
    margin-bottom: 10px;
            padding-inline: 13px;

}

section.premium-services  a.btn.btn-secondary-cta {float: unset;}
.top-bar {
    display: none;
}
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .navbar-brand .logo {
        max-height: 45px;
    }
    
    .section-title-main,
    .section-title-journey {
        font-size: 19px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    .video-section {
        padding: 40px 0;
        background-size: 100% 40% !important;
    }
    
    .section-heading {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .play-overlay-btn {
        width: 70px;
        height: 70px;
    }
    
    .play-overlay-btn i {
        font-size: 40px;
        margin-left: 3px;
    }
    
    .video-wrapper {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .video-controls {
        padding: 10px;
    }
    
    .controls-wrapper {
        gap: 8px;
    }
    
    .progress-container {
        gap: 10px;
    }
    
    .progress-bar {
        height: 4px;
    }
    
    .progress-bar:hover {
        height: 5px;
    }
    
    .progress-filled::after {
        width: 10px;
        height: 10px;
    }
    
    .time-display {
        font-size: 10px;
        min-width: 75px;
    }
    
    .control-btn {
        font-size: 14px;
        width: 28px;
        height: 28px;
        padding: 5px;
    }
    
    .play-pause-btn {
        font-size: 16px;
        width: 32px;
        height: 32px;
    }
    
    .controls-buttons {
        gap: 6px;
    }
    
    .step-number {
        font-size: 28px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    .faq-section {
        padding: 40px 15px;
    }
    
    .section-title-faq {
        font-size: 24px;
    }
    
    .accordion-button {
        font-size: 13px;
        gap: 10px;
    }
    
    .accordion-body {
        padding: 0 0 12px 30px;
        font-size: 13px;
    }
        .sticky-contact-buttons {
        right: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 45px;
        height: 45px;
    }
    
    .sticky-btn i {
        font-size: 18px;
    }
     .popup-container {
        max-width: 360px !important;
    }
    .popup-container .input-group input, .popup-container .input-group textarea {
        padding: 10px 10px 10px 30px !important;
        font-size: 14px !important;
    }
    .popup-container .input-group i {
        left: 6px !important;
        top: 23px !important;
        font-size: 16px !important;
    }
}
@media (max-width: 430px) {
section.hero-section p br {
    display: none;
}
.book-item img {
    width: 100%;
}
.bestselling-section .owl-carousel .owl-item .book-img img {
    width: 100%;
}
.avatar {
    position: unset;
    margin-top: -80px;
    margin-bottom: 0px;
}
section.bestselling-section.py-5 {
    padding-block: 30px !important;
}
.section-title, .section-title-faq {
    font-size: 25px !important;
}
.review-box {
    text-align: center;
}
.review-box img {
    margin:  auto;
}
.timeline-content {
    margin-inline: 10px;
    padding-bottom: 0;
}
.cta-book-section .container {
    padding-inline: 20px;
}
}
/* Print Styles */
@media print {
    .main-header,
    .back-to-top,
    .video-controls,
    .carousel-controls {
        display: none !important;
    }
}

/* ===================================
   END OF STYLE.CSS
   =================================== */

