/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Roboto:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');

/* Global Reset and Base Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #4267b2; /* Main color for default text */
    background-color: #FFFFFF; /* White background */
}

/*---------------------------------------
   TYPOGRAPHY              
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: inherit;
}

h1, h2, h3, h4 {
    letter-spacing: -1px;
}

h5 {
    font-weight: 500;
}

h1 {
    color: #FFFFFF; /* White for hero contrast */
    font-size: 5em;
}

h2 {
    color: #4267b2; /* Main color */
    font-size: 3em;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
}

h4 {
    color: #D4C9BE; /* Beige for subtle contrast */
    font-size: 1.8em;
    padding-bottom: 2px;
}

h6 {
    letter-spacing: 0;
    font-weight: normal;
    color: #D4C9BE; /* Beige */
}

/*==================================
    LOADER
===================================*/

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #4267b2, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

/* Typewriter Container */
.typewriter-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Uiverse.io Typewriter Styles */
.typewriter {
    --blue: #5cbbff;
    --blue-dark: #162d72;
    --key: #fff;
    --paper: #eef0fd;
    --text: #00000049;
    --tool: #ffbb00;
    --duration: 3s;
    position: relative;
    -webkit-animation: bounce05 var(--duration) linear infinite;
    animation: bounce05 var(--duration) linear infinite;
}

.typewriter .slide {
    width: 92px;
    height: 20px;
    border-radius: 3px;
    margin-left: 14px;
    transform: translateX(14px);
    background: linear-gradient(var(--blue), var(--blue-dark));
    -webkit-animation: slide05 var(--duration) ease infinite;
    animation: slide05 var(--duration) ease infinite;
}

.typewriter .slide:before,
.typewriter .slide:after,
.typewriter .slide i:before {
    content: "";
    position: absolute;
    background: var(--tool);
}

.typewriter .slide:before {
    width: 2px;
    height: 8px;
    top: 6px;
    left: 100%;
}

.typewriter .slide:after {
    left: 94px;
    top: 3px;
    height: 14px;
    width: 6px;
    border-radius: 3px;
}

.typewriter .slide i {
    display: block;
    position: absolute;
    right: 100%;
    width: 6px;
    height: 4px;
    top: 4px;
    background: var(--tool);
}

.typewriter .slide i:before {
    right: 100%;
    top: -2px;
    width: 4px;
    border-radius: 2px;
    height: 14px;
}

.typewriter .paper {
    position: absolute;
    left: 24px;
    top: -26px;
    width: 40px;
    height: 46px;
    border-radius: 5px;
    background: var(--paper);
    transform: translateY(46px);
    -webkit-animation: paper05 var(--duration) linear infinite;
    animation: paper05 var(--duration) linear infinite;
    overflow: hidden;
}

.typewriter .paper:before {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 7px;
    border-radius: 2px;
    height: 4px;
    transform: scaleY(0.8);
    background: var(--text);
    box-shadow: 0 12px 0 var(--text), 0 24px 0 var(--text), 0 36px 0 var(--text);
}

.typewriter .keyboard {
    width: 120px;
    height: 56px;
    margin-top: -10px;
    z-index: 1;
    position: relative;
}

.typewriter .keyboard:before,
.typewriter .keyboard:after {
    content: "";
    position: absolute;
}

.typewriter .keyboard:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    transform: perspective(10px) rotateX(2deg);
    transform-origin: 50% 100%;
}

.typewriter .keyboard:after {
    left: 2px;
    top: 25px;
    width: 11px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
        60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
        22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
        60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    -webkit-animation: keyboard05 var(--duration) linear infinite;
    animation: keyboard05 var(--duration) linear infinite;
}

@keyframes bounce05 {
    85%, 92%, 100% {
        transform: translateY(0);
    }
    89% {
        transform: translateY(-4px);
    }
    95% {
        transform: translateY(2px);
    }
}

@keyframes slide05 {
    5% {
        transform: translateX(14px);
    }
    15%, 30% {
        transform: translateX(6px);
    }
    40%, 55% {
        transform: translateX(0);
    }
    65%, 70% {
        transform: translateX(-4px);
    }
    80%, 89% {
        transform: translateX(-12px);
    }
    100% {
        transform: translateX(14px);
    }
}

@keyframes paper05 {
    5% {
        transform: translateY(46px);
    }
    20%, 30% {
        transform: translateY(34px);
    }
    40%, 55% {
        transform: translateY(22px);
    }
    65%, 70% {
        transform: translateY(10px);
    }
    80%, 85% {
        transform: translateY(0);
    }
    92%, 100% {
        transform: translateY(46px);
    }
}

@keyframes keyboard05 {
    5%, 12%, 21%, 30%, 39%, 48%, 57%, 66%, 75%, 84% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    9% {
        box-shadow: 15px 2px 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    18% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 2px 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    27% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 12px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    36% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 12px 0 var(--key),
            60px 12px 0 var(--key), 68px 12px 0 var(--key), 83px 10px 0 var(--key);
    }
    45% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 2px 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    54% {
        box-shadow: 15px 0 0 var(--key), 30px 2px 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    63% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 12px 0 var(--key);
    }
    72% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 2px 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
    81% {
        box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key),
            60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key),
            22    22px 10px 0 var(--key), 37px 12px 0 var(--key), 52px 10px 0 var(--key),
            60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key);
    }
}

/* Quote Text on Paper */
.quote-text {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    font-family: 'Special Elite', courier, monospace;
    font-size: 6px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    white-space: pre-wrap;
    overflow: hidden;
}

/* Typing Animation */
.typing {
    border-right: 1px solid #333;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Progress Bar (Styled as Paper Scroll) */
.progress-container {
    position: absolute;
    bottom: 30px;
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #eef0fd;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 16px;
    background: #eef0fd;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    border-right: 1px solid #D2B48C;
}

.progress-text {
    position: absolute;
    bottom: 50px;
    width: 200px;
    text-align: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
}

/* Main Content (Hidden Initially) */
.main-content {
    display: none;
    padding: 50px;
    text-align: center;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #4267b2;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .typewriter-container {
        width: 150px;
        height: 150px;
    }

    .typewriter .slide {
        width: 70px;
        height: 15px;
        margin-left: 10px;
        transform: translateX(10px);
    }

    .typewriter .slide:after {
        left: 72px;
        top: 2px;
        height: 11px;
        width: 5px;
    }

    .typewriter .slide i {
        width: 5px;
        height: 3px;
        top: 3px;
    }

    .typewriter .slide i:before {
        width: 3px;
        height: 11px;
    }

    .typewriter .paper {
        left: 18px;
        top: -20px;
        width: 30px;
        height: 35px;
    }

    .typewriter .paper:before {
        left: 5px;
        right: 5px;
        top: 5px;
        height: 3px;
        box-shadow: 0 9px 0 var(--text), 0 18px 0 var(--text), 0 27px 0 var(--text);
    }

    .typewriter .keyboard {
        width: 90px;
        height: 42px;
        margin-top: -8px;
    }

    .typewriter .keyboard:after {
        left: 1px;
        top: 19px;
        width: 8px;
        height: 3px;
        box-shadow: 11px 0 0 var(--key), 22px 0 0 var(--key), 33px 0 0 var(--key),
            44px 0 0 var(--key), 55px 0 0 var(--key), 66px 0 0 var(--key),
            16px 8px 0 var(--key), 27px 8px 0 var(--key), 38px 8px 0 var(--key),
            44px 8px 0 var(--key), 50px 8px 0 var(--key), 61px 8px 0 var(--key);
    }

    .quote-text {
        font-size: 5px;
    }

    .progress-container,
    .progress-text {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .typewriter-container {
        width: 120px;
        height: 120px;
    }

    .typewriter .slide {
        width: 56px;
        height: 12px;
        margin-left: 8px;
        transform: translateX(8px);
    }

    .typewriter .slide:after {
        left: 58px;
        top: 1px;
        height: 9px;
        width: 4px;
    }

    .typewriter .slide i {
        width: 4px;
        height: 2px;
        top: 2px;
    }

    .typewriter .slide i:before {
        width: 2px;
        height: 9px;
    }

    .typewriter .paper {
        left: 14px;
        top: -16px;
        width: 24px;
        height: 28px;
    }

    .typewriter .paper:before {
        left: 4px;
        right: 4px;
        top: 4px;
        height: 2px;
        box-shadow: 0 7px 0 var(--text), 0 14px 0 var(--text), 0 21px 0 var(--text);
    }

    .typewriter .keyboard {
        width: 72px;
        height: 34px;
        margin-top: -6px;
    }

    .typewriter .keyboard:after {
        left: 1px;
        top: 15px;
        width: 6px;
        height: 2px;
        box-shadow: 9px 0 0 var(--key), 18px 0 0 var(--key), 27px 0 0 var(--key),
            36px 0 0 var(--key), 45px 0 0 var(--key), 54px 0 0 var(--key),
            13px 6px 0 var(--key), 22px 6px 0 var(--key), 31px 6px 0 var(--key),
            36px 6px 0 var(--key), 41px 6px 0 var(--key), 50px 6px 0 var(--key);
    }

    .quote-text {
        font-size: 4px;
    }

    .progress-container,
    .progress-text {
        width: 120px;
    }

    .progress-text {
        font-size: 0.8rem;
    }
}


/* ================================
   HEADER STYLES
   ================================ */
   header {
    position: relative;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #ffffff; /* Transparent */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, top 0.3s ease;
}

header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: #FFFFFF; /* White on scroll */
}

/* --------------------------------
   NAVIGATION STYLING
   -------------------------------- */
.navigation-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1200px;
}

.left-side .logo {
    height: 60px;
}

.right-side {
    display: flex;
    align-items: center;
}

.menu-space {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-space li {
    padding: 0 15px;
    position: relative; /* For dropdown positioning */
}

.menu-space a {
    text-decoration: none;
    color: #000000; /* Black for non-active links */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 8px;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Active link styling */
.menu-space a.active {
    color: #4267b2 !important;
}

.menu-space a:hover {
    transform: scale(1.1);
    color: #5b7bd6; /* Hover color */
}

.menu-space a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5b7bd6; /* Hover color */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-space a:hover::after {
    transform: scaleX(1);
}

/* Remove outline on focus */
.menu-space a:focus {
    outline: none;
}

/* Dropdown Styling */
.dropdown {
    position: relative; /* Anchor for dropdown positioning */
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Start at the bottom of the parent li */
    left: 0;
    background-color: #FFFFFF;
    border-radius: 0 0 4px 4px;
    list-style: none;
    padding: 20px 0 10px 0;
    margin: 0;
    min-width: 150px;
    z-index: 1001;
}

.menu-space .dropdown:hover .dropdown-menu,
.menu-space .dropdown:focus-within .dropdown-menu,
.menu-space .dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: #000000;
    font-size: 16px;
    padding: 8px 20px;
    display: block;
}

.dropdown-menu a.active {
    color: #4267b2 !important;
}

.dropdown-menu a:hover {
    color: #4267b2;
    transform: scale(1); /* Override main menu hover effect */
}

.dropdown-menu a::after {
    display: none; /* Remove underline effect for dropdown links */
}

.dropdown-menu a:focus {
    outline: none;
}

/* ================================
   HAMBURGER ICON STYLING
   ================================ */
.hamburger-icon {
    cursor: pointer;
    display: none;
}

.hamburger-icon input {
    display: none;
}

.hamburger-icon svg {
    height: 3em;
    width: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #000000; 
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .line {
    stroke: #4267b2; /* Main color when scrolled */
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger-icon input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger-icon input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.hamburger-icon:focus-within {
    outline: none;
}

/* ================================
   MOBILE MENU STYLING
   ================================ */
@media (max-width: 1200px) {
    .menu-space {
        display: none;
        flex-direction: column;
        background-color: #FFFFFF;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .menu-space.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .hamburger-icon {
        display: block;
    }

    .menu-space li {
        text-align: center;
        padding: 12px 0;
    }

    .menu-space a {
        color: #000000; /* Black for non-active links */
    }

    .menu-space a.active {
        color: #4267b2 !important;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #F5F5F5; /* Light grey for contrast */
        padding: 10px 0;
    }
}

/* ================================
   HERO SECTION STYLES
   ================================ */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #030303; /* Black fallback, preserved for carousel */
}

header.fixed + .hero-section {
    margin-top: 80px;
}

.hero-section::after {
    content: "Scroll Down";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF; /* White */
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* Carousel Items */
.hero-section .owl-carousel .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px; /* Fixed height for consistency */
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: flex-start; /* Align content to the left */
    position: relative;
    padding: 0 20%; /* Remove top/bottom padding, keep horizontal */
}

/* Ensure the overlay covers the entire item */
.hero-section .owl-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.5); /* Black overlay */
}

/* Background Images (Preserved) */
.owl-carousel .item-1 {
    background-image: url('../images/slider/slider1.webp');
}

.owl-carousel .item-2 {
    background-image: url('../images/slider/slider2.webp');
}

.owl-carousel .item-3 {
    background-image: url('../images/slider/slider3.webp');
}

/* Header Text */
.owl-carousel .header-text {
    width: fit-content;
    position: relative;
    z-index: 1;
    color: #FFFFFF; /* White */
    animation: fadeInUp 1.2s ease-out;
}

.owl-carousel .header-text span.category {
    background-color: #4267b2; /* Main color */
    color: #FFFFFF; /* White */
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    padding: 6px 15px;
    display: inline-block;
    border-radius: 3px;
}

.owl-carousel .header-text span.category em {
    font-style: normal;
    color: #000000; /* Beige */
}

.owl-carousel .header-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF; /* White */
    line-height: 72px;
    width: auto;
    margin: 15px 0;
    padding: 0;
    position: relative;
}

.owl-carousel .header-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #4267b2; /* Main color */
}

.owl-carousel .header-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #ffffff; /* Beige */
    width: auto;
    line-height: 26px;
}

.owl-carousel .header-text .motto {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: italic;
    color: #ffffff; /* Beige */
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.hero-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 90%;
    left: 5%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.owl-nav button {
    background: linear-gradient(145deg, #FFFFFF, #FFFFFF) !important; /* White */
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #4267b2; /* Main color */
    visibility: visible;
}

.owl-nav button:hover {
    background: linear-gradient(145deg, #5b7bd6, #5b7bd6) !important; /* New hover color */
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.owl-nav button i {
    font-size: 15px;
    color: #4267b2; /* Main color */
    transition: color 0.3s ease;
}

.owl-nav button:hover i {
    color: #FFFFFF; /* White */
}

.owl-nav button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Dots */
.owl-dots {
    position: absolute;
    bottom: 60px;
    left: 20%;
    text-align: left;
    z-index: 2;
}

.owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF !important; /* White */
    border-radius: 50%;
    display: block;
    transition: background-color 0.5s;
}

.owl-dots .owl-dot.active span {
    background-color: #4267b2 !important; /* Main color */
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .owl-carousel .item {
        height: 600px; /* Adjusted height for smaller screens */
        padding: 0 10%; /* Remove top/bottom padding, adjust horizontal */
    }

    .owl-carousel .header-text {
        padding: 0 20px;
    }

    .owl-carousel .header-text h2 {
        font-size: 36px;
        line-height: 44px;
        width: 80%;
    }

    .owl-carousel .header-text h2::after {
        width: 80px;
        height: 3px;
    }

    .owl-carousel .header-text p {
        font-size: 14px;
        width: 80%;
        line-height: 22px;
    }

    .owl-carousel .header-text .motto {
        font-size: 16px;
        margin-top: 20px;
    }

    .owl-carousel .header-text span.category {
        font-size: 14px;
        padding: 5px 12px;
    }

    .owl-nav {
        width: 94%;
        left: 3%;
    }

    .owl-nav button {
        width: 25px;
        height: 25px;
        margin: 0 10px;
    }

    .owl-nav button i {
        font-size: 12px;
    }

    .owl-dots {
        bottom: 40px;
        left: 10%;
    }
}

@media (max-width: 480px) {
    .owl-carousel .item {
        height: 500px; /* Further adjusted height for very small screens */
        padding: 0 5%; /* Adjust horizontal padding */
    }

    .owl-carousel .header-text h2 {
        font-size: 28px;
        line-height: 36px;
        width: 100%;
    }

    .owl-carousel .header-text h2::after {
        width: 60px;
        height: 2px;
    }

    .owl-carousel .header-text p {
        font-size: 12px;
        width: 100%;
    }

    .owl-carousel .header-text .motto {
        font-size: 14px;
        margin-top: 15px;
    }

    .owl-carousel .header-text span.category {
        font-size: 12px;
        padding: 4px 10px;
    }

    .owl-nav {
        width: 96%;
        left: 2%;
    }

    .owl-nav button {
        width: 20px;
        height: 20px;
        margin: 0 5px;
    }

    .owl-nav button i {
        font-size: 10px;
    }
}

/*==================================
   BOOK HIGHLIGHT SECTION
==================================*/
#book-spotlight {
    margin: 60px 0;
    padding: 60px 0;
    background: #FFFFFF; /* White */
}

/* Container */
#book-spotlight .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row */
.container .row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

/* Columns */
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Book Info */
.book-info {
    text-align: left;
    color: #4267b2; /* Main color */
    flex: 0 0 55%;
    max-width: 90%;
    width: 100%;
    padding: 0;
}

.book-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #4267b2; /* Main color */
    width: 100%;
}

.book-info h2 i {
    margin-left: 10px;
    color: #5b7bd6; /* New hover color */
}

.book-info p {
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000000; /* Beige */
    width: 100%;
}

/* Author Info */
.author-info {
    width: 100%;
}

.author-info h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 10px;
    color: #4267b2; /* Main color */
}

.author-info p {
    font-style: italic;
    color: #000000; /* Beige */
    margin-bottom: 20px;
}

/* Book Image */
.col-md-6.book-image-col {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: center;
}

.book-image {
    width: 100%;
}

.book-image img {
    width: 140%;
    height: auto;
    display: block;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
#book-spotlight .box {
    width: 140px;
    height: auto;
    transition: 0.5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    background: #FFFFFF; /* White */
    text-transform: uppercase;
    font-weight: 900;
    border: 1px solid #4267b2; /* Main color */
    color: #4267b2; /* Main color */
    cursor: pointer;
}

#book-spotlight .box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
}

#book-spotlight .box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
}

#book-spotlight .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: #5b7bd6; /* New hover color */
    color: #FFFFFF; /* White */
}

#book-spotlight .box:hover:before {
    border-color: #5b7bd6; /* New hover color */
    height: 100%;
    transform: translateX(0);
    transition: 0.3s transform linear, 0.3s height linear 0.3s;
}

#book-spotlight .box:hover:after {
    border-color: #5b7bd6; /* New hover color */
    height: 100%;
    transform: translateX(0);
    transition: 0.3s transform linear, 0.3s height linear 0.5s;
}

#book-spotlight button {
    color: #4267b2; /* Main color */
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
}

/* Links Container */
#book-spotlight .links {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}

#book-spotlight .links button {
    flex: 1;
    text-align: center;
}

/* Book Spotlight Responsive */
@media (max-width: 1000px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .book-info {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .col-md-6.book-image-col {
        flex: 0 0 100%;
        max-width: 50%;
        margin-top: 20px;
    }

    .book-image img {
        width: 100%;
    }

    #book-spotlight.links {
        justify-content: center;
    }

    .book-info h2 {
        font-size: 1.7rem;
    }

    .book-info p {
        font-size: 0.8rem;
    }

    .author-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .col-md-6.book-image-col {
        max-width: 70%;
    }

    .book-info h2 {
        font-size: 1.5rem;
    }

    .book-info p {
        font-size: 0.9rem;
    }

    .author-info h3 {
        font-size: 18px;
    }

    #book-spotlight .box {
        width: 120px;
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* ================================
   FACTS
   ================================ */
   .facts-section {
    max-width: 1200px; /* Limits width, matches other sections */
    width: 90%; /* Slightly less than full width for smaller screens */
    background: #4267b2; /* Main color */
    padding: 30px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    margin: 20px auto 70px auto; /* Centers horizontally with top/bottom spacing */
}

/* Fact Item */
.fact {
    display: flex;
    align-items: center;
    flex: 1;
    text-align: left;
    padding: 0 20px;
}

/* Icon */
.fact i {
    font-size: 36px;
    color: #FFFFFF; /* White for contrast */
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.6s ease;
}

.fact i:hover {
    color: #cccccc; /* New hover color */
    transform: scale(1.3);
}

/* Fact Content */
.fact-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #FFFFFF; /* White for contrast */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.fact-content h3:hover,
.fact-content p:hover {
    color: #cccccc; /* New hover color */
}

.fact-content p {
    font-size: 14px;
    margin: 0;
    color: #FFFFFF; /* White for contrast */
}

/* Divider */
.divider {
    width: 1px;
    height: 60px;
    background: #FFFFFF; /* White for visibility */
    margin: 0 20px;
}

/* Facts Responsive */
@media (max-width: 920px) {
    .facts-section {
        flex-direction: column;
        padding: 20px;
        width: 90%; /* Keeps some side spacing */
    }
    
    .fact {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 15px 0;
        padding: 0;
    }
    
    .divider {
        width: 80%;
        height: 1px;
        margin: 15px 0;
    }
}

/* ================================
   SERVICES
   ================================ */
.services-section-wrapper {
    width: 100%;
    height: 750px;
    background-image: url('../images/background/service-section-background.webp'); /* Preserved */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin: 30px 0 0 0;
    padding: 10px 0;
}

/* Services Section */
.services-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
.services-header {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-header h1 {
    font-size: 2rem;
    color: #4267b2; /* Main color */
    margin-bottom: 15px;
}

.services-header p {
    font-size: 1rem;
    color: #000000; /* Beige */
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    padding: 0 30px;
}

/* Service Card */
.service-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(91, 123, 214, 0.3); /* New hover color shadow */
}

/* Blue Card */
.service-card.blue {
    background-color: #4267b2; /* Main color */
    color: #FFFFFF; /* White */
}

/* White Card */
.service-card.white {
    background-color: #FFFFFF; /* White */
    color: #4267b2; /* Main color */
}

/* Card Icon */
.service-card .icon {
    width: 60px;
    height: 60px;
    background-color: #000000; /* Beige */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
}

.service-card.blue .icon {
    background-color: #FFFFFF; /* White */
}

.service-card.white .icon {
    background-color: #4267b2; /* Main color */
}

.service-card .icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    transition: stroke 0.3s ease, transform 0.6s ease;
}

.service-card.blue .icon svg {
    stroke: #4267b2; /* Main color */
}

.service-card.white .icon svg {
    stroke: #FFFFFF; /* White */
}

.service-card:hover .icon {
    background-color: #5b7bd6; /* New hover color */
}

.service-card:hover .icon svg {
    transform: rotate(360deg);
}

.service-card.blue:hover .icon svg {
    stroke: #FFFFFF; /* White */
}

.service-card.white:hover .icon svg {
    stroke: #FFFFFF; /* White */
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card ul,
.service-card .learn-more {
    display: none;
}

.service-card a.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card.active {
    border: 2px solid #4267b2; /* Main color */
    box-shadow: 0 10px 25px rgba(66, 103, 178, 0.3);
}

.service-card.blue.active {
    border-color: #FFFFFF; /* White */
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Services Responsive */
@media (max-width: 1050px) {
    .services-section-wrapper {
        height: 650px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 20px;
        border: 1px solid #000000; /* Beige */
        box-shadow: none;
        background-color: #FFFFFF; /* White */
        color: #4267b2; /* Main color */
        text-align: left;
        transition: border-color 0.3s ease;
        display: none;
    }

    .service-card.active-card {
        display: block;
    }

    .service-card:hover {
        transform: none;
        box-shadow: none;
        border-color: #5b7bd6; /* New hover color */
    }

    .service-card.blue {
        background-color: #FFFFFF; /* White */
        color: #4267b2; /* Main color */
    }

    .service-card .icon {
        display: none;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-card p::after {
        content: '';
        display: block;
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, #4267b2, #5b7bd6);
        margin: 10px 0;
    }

    .service-card ul {
        display: block;
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .service-card ul li {
        font-size: 0.8rem;
        color: #000000; /* Beige */
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }

    .service-card ul li::before {
        content: "•";
        color: #4267b2; /* Main color */
        font-size: 1.1rem;
        position: absolute;
        left: 0;
        top: 0;
    }

    .service-card .learn-more {
        display: inline-block;
        padding: 10px 20px;
        background-color: #FFFFFF; /* White */
        border: 1px solid #4267b2; /* Main color */
        border-radius: 5px;
        font-size: 0.8rem;
        color: #4267b2; /* Main color */
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .service-card .learn-more:hover {
        background-color: #5b7bd6; /* New hover color */
        color: #FFFFFF; /* White */
    }

    .service-card a.card-link {
        display: none;
    }

    .navigation {
        display: flex;
        justify-content: flex-end;
        margin-top: 20px;
        gap: 10px;
    }

    .navigation button {
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        color: #4267b2; /* Main color */
        font-size: 0.8rem;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .navigation button:hover {
        color: #5b7bd6; /* New hover color */
    }

    .navigation button:disabled {
        color: #000000; /* Beige */
        cursor: not-allowed;
    }
}

@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-header h1 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.85rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card ul li {
        font-size: 0.85rem;
    }

    .service-card .learn-more {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}


/*==================================
   FEATURED BOOKS SECTION
==================================*/
#pubco_books_section {
    padding: 60px 0;
    background-image: url('../images/background/book-section-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 500px;
}

#pubco_books_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#pubco_books_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Section Header (Static Title) */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* Wrapper for Description and Carousel */
.pubco_content_wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    margin-bottom: 40px;
}

/* Left Side: Description */
.pubco_books_description {
    flex: 0 0 35%;
    color: #FFFFFF;
}

.pubco_books_description h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Smooth fade for title */
}

.pubco_books_description .pubco_category {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #D4C9BE;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Smooth fade for category */
}

.pubco_books_description .pubco_description_text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Smooth fade for description */
}

/* Read More Button Styles (From Uiverse.io by cssbuttons-io) */
#pubco_books_section button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

#pubco_books_section button.learn-more {
    width: 150px;
    height: auto;
}

#pubco_books_section button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2.5rem; /* 40px */
    height: 2.5rem;
    background: #4267b2;
    border-radius: 1.25rem;
}

#pubco_books_section button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

#pubco_books_section button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.5rem;
    width: 1rem;
    height: 0.125rem;
    background: none;
}

#pubco_books_section button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

#pubco_books_section button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.65rem 0.5rem 0.65rem 0; /* Added padding-right: 0.5rem */
    margin: 0 0 0 3rem; /* Space for the circle + gap */
    color: #4267b2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

#pubco_books_section button:hover .circle {
    width: calc(100% + 0.5rem); /* Leave 8px padding on the right */
}

#pubco_books_section button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(0.75rem, 0);
}

#pubco_books_section button:hover .button-text {
    color: #fff;
}

#pubco_books_section button.learn-more:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Right Side: Carousel Wrapper */
.pubco_books_carousel_wrapper {
    flex: 1;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 355px;
    overflow: hidden;
}

/* Carousel */
.pubco_books_carousel {
    width: 100%;
}

#pubco_books_carousel {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
}

#pubco_books_carousel .owl-stage-outer {
    overflow: hidden;
}

#pubco_books_carousel .pubco_item {
    text-align: center;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #4267b2;
    text-decoration: none;
}

#pubco_books_carousel .pubco_item img {
    width: 160px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect for Book Covers */
#pubco_books_carousel .pubco_item img:hover {
    transform: scale(1.05);
    filter: none !important; /* Remove blur on hover for non-active items */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Book Title Below Image */
#pubco_books_carousel .pubco_item .pubco_book_title {
    position: relative;
    margin-top: 10px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    padding: 8px;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

/* Active Item (Larger, Not Blurred) */
#pubco_books_carousel .owl-item.active:first-child .pubco_item {
    z-index: 2;
}

#pubco_books_carousel .owl-item.active:first-child .pubco_item img {
    width: 210px;
    height: 315px;
    filter: none !important;
}

#pubco_books_carousel .owl-item.active:first-child .pubco_item .pubco_book_title {
    opacity: 1;
}

/* Non-Active Items (Smaller, Blurred) */
#pubco_books_carousel .owl-item.active:not(:first-child) .pubco_item img,
#pubco_books_carousel .owl-item:not(.active) .pubco_item img {
    filter: blur(2px);
}

#pubco_books_carousel .owl-item.active:not(:first-child) .pubco_item .pubco_book_title,
#pubco_books_carousel .owl-item:not(.active) .pubco_item .pubco_book_title {
    opacity: 0.7;
}

/* Navigation Arrows */
.pubco_carousel_nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    z-index: 3;
}

.pubco_carousel_nav .owl-nav {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pubco_carousel_nav .owl-nav button {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    color: #333333 !important;
    font-size: 1.4rem;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.pubco_carousel_nav .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333333 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pubco_carousel_nav .owl-nav button:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.pubco_carousel_nav .owl-nav button.disabled {
    display: none;
}

.pubco_carousel_nav .owl-nav .owl-prev::before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.pubco_carousel_nav .owl-nav .owl-next::before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Hide Dots */
#pubco_books_carousel .owl-dots {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    #pubco_books_section {
        height: 600px;
    }

    .pubco_content_wrapper {
        gap: 30px;
        margin-bottom: 30px;
    }

    .pubco_books_description {
        flex: 0 0 35%;
    }

    .pubco_books_carousel_wrapper {
        flex: 1;
        max-width: 65%;
        height: 325px;
    }

    #pubco_books_carousel .pubco_item img {
        width: 140px;
        height: 210px;
    }

    #pubco_books_carousel .owl-item.active:first-child .pubco_item img {
        width: 190px;
        height: 285px;
    }
}

@media (max-width: 768px) {
    #pubco_books_section {
        padding: 40px 0;
        height: 700px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pubco_content_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-boxottom: 30px;
    }

    .pubco_books_description {
        text-align: center;
        max-width: 100%;
        margin-bottom: 0;
    }

    .pubco_books_description h3 {
        font-size: 1.5rem;
    }

    .pubco_books_description .pubco_description_text {
        font-size: 0.85rem;
    }

    .pubco_books_description .learn-more {
        margin: 0 auto;
    }

    .pubco_books_carousel_wrapper {
        flex: 1;
        max-width: 100%;
        height: 355px;
    }

    #pubco_books_carousel .pubco_item img {
        width: 160px;
        height: 240px;
    }

    #pubco_books_carousel .owl-item.active:first-child .pubco_item img {
        width: 210px;
        height: 315px;
    }

    .pubco_carousel_nav {
        height: 30px;
        bottom: 5px;
    }

    .pubco_carousel_nav .owl-nav {
        gap: 8px;
    }

    .pubco_carousel_nav .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #pubco_books_section {
        height: 750px;
    }

    #pubco_books_section .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pubco_books_description h3 {
        font-size: 1.3rem;
    }

    .pubco_books_description .pubco_description_text {
        font-size: 0.8rem;
    }

    .pubco_books_description .learn-more {
        width: 130px;
        margin: 0 auto;
    }

    .pubco_books_description .learn-more .circle {
        width: 2rem;
        height: 2rem;
        border-radius: 1rem;
    }

    .pubco_books_description .learn-more .circle .icon.arrow {
        left: 0.4rem;
        width: 0.8rem;
    }

    .pubco_books_description .learn-more .circle .icon.arrow::before {
        top: -0.2rem;
        width: 0.4rem;
        height: 0.4rem;
    }

    .pubco_books_description .learn-more .button-text {
        padding: 0.5rem 0.5rem 0.5rem 0; /* Added padding-right: 0.5rem */
        margin: 0 0 0 2.5rem;
        font-size: 0.8rem;
    }

    #pubco_books_section button:hover .circle .icon.arrow {
        transform: translate(0.6rem, 0);
    }

    .pubco_books_carousel_wrapper {
        height: 325px;
    }

    #pubco_books_carousel .pubco_item img {
        width: 140px;
        height: 210px;
    }

    #pubco_books_carousel .owl-item.active:first-child .pubco_item img {
        width: 190px;
        height: 285px;
    }

    #pubco_books_carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #pubco_books_carousel .pubco_item {
        margin: 0 auto;
    }

    #pubco_books_carousel .owl-stage {
        display: flex;
        justify-content: center;
    }

    .pubco_carousel_nav .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/*==================================
   BLOG SECTION
==================================*/
#blog-section {
    margin: 40px 0;

    background: #FFFFFF; /* White */
}

#blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Header */
#blog-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

#blog-section .section-header h2 {
    font-size: 2rem;
    color: #4267b2; /* Main color */
    font-weight: 700;
    margin-bottom: 15px;
}

#blog-section .section-header p {
    font-size: 1rem;
    color: #000000; /* Beige */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
#blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
#blog-section .blog-card {
    background: #FFFFFF; /* White */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
#blog-section .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Blog Content */
#blog-section .blog-content {
    padding: 20px;
    position: relative;
    border-bottom: 2px solid #D4C9BE; /* Beige */
    transition: border-color 0.5s ease;
}

#blog-section .blog-card:hover .blog-content {
    border-bottom: 2px solid #4267b2; /* Main color */
}

#blog-section .blog-content::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4267b2; /* Main color */
    transition: width 0.5s ease;
}

#blog-section .blog-card:hover .blog-content::after {
    width: 100%;
}

#blog-section .blog-content .blog-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #4267b2; 
    font-weight: 500;
    text-transform: uppercase;
}

#blog-section .blog-content h3 {
    font-size: 1.25rem;
    height: 60px;
    color: #030303; /* Dark for readability */
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

#blog-section .blog-content p {
    font-size: 0.9rem;
    color: #666; /* Slightly lighter for contrast */
    line-height: 1.5;
    margin: 0;
    height: 65px; /* Fixed height for 3 lines (0.9rem * 1.5 * 3 = 64.8px, rounded to 65px) */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limits to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    #blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #blog-section .blog-grid {
        grid-template-columns: 1fr;
    }

    #blog-section .section-header h2 {
        font-size: 2rem;
    }

    #blog-section .section-header p {
        font-size: 0.9rem;
    }

    #blog-section .blog-image img {
        height: 180px;
    }

    #blog-section .blog-content h3 {
        font-size: 1.1rem;
    }

    #blog-section .blog-content p {
        font-size: 0.85rem;
        height: 61px; /* Adjusted for smaller font-size: 0.85rem * 1.5 * 3 = 61.2px, rounded to 61px */
    }
}

/* Read More Link inside the Blog Card */
#blog-section .read-more {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #4267b2; /* Main color */
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#blog-section .read-more:hover {
    color: #0356a1; /* Slightly darker blue for hover effect */
}

/*==================================
   PLATFORMS SECTION
==================================*/
#platforms_section {
    padding: 30px 0;
    background-color: #E6F0FA; /* Lighter blue background */
    position: relative;
    overflow: hidden;
}

#platforms_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
#platforms_section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

#platforms_section .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    padding: 0;
}

/* Carousel Wrapper */
.platforms_carousel_wrapper {
    width: 100%;
    max-width: 1200px; /* Max-width of 1200px for the carousel */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Carousel */
.platforms_carousel {
    width: 100%;
}

#platforms_carousel {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
}

#platforms_carousel .owl-stage-outer {
    overflow: hidden;
}

#platforms_carousel .platform_item {
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: relative;
}

/* Logos */
#platforms_carousel .platform_item img {
    width: 200px; /* Defined width for easy identification */
    height: auto;
    object-fit: contain;
    display: block; /* Prevent inline-block spacing issues */
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    #platforms_section {
        padding: 30px 0;
    }

    #platforms_section .section-header h2 {
        font-size: 2.2rem;
    }

    #platforms_carousel .platform_item {
        height: 180px; /* Adjust height for smaller screens */
    }

    #platforms_carousel .platform_item img {
        width: 250px;
    }
}

@media (max-width: 768px) {

    #platforms_section .section-header h2 {
        font-size: 2rem;
    }

    #platforms_carousel .platform_item {
        height: 160px;
    }

    #platforms_carousel .platform_item img {
        width: 220px;
    }
}

@media (max-width: 480px) {

    #platforms_section .section-header h2 {
        font-size: 1.8rem;
    }

    #platforms_carousel .platform_item {
        height: 140px;
    }

    #platforms_carousel .platform_item img {
        width: 200px;
    }
}

/*==================================
           FAQ SECTION
        ==================================*/
        #faq_section {
            padding: 60px 0;
            font-family: 'Roboto', sans-serif;
        }

        .faq_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        #faq_section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #4267b2;
            text-align: center;
            margin-bottom: 40px;
        }

        .faq_wrapper {
            display: flex;
            justify-content: center;
        }

        .faq_card {
            background: linear-gradient(135deg, #4267b2 0%, #2a4a8c 100%);
            border-radius: 15px;
            padding: 30px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(0, 0, 0, 0.2);
        
        }

        .faq_item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: url('assets/images/icons/book-motif.webp') repeat-x bottom;
            background-size: 20px;
        }

        .faq_item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
            background: none;
        }

        .faq_question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            color: #e7e7e7;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq_question:hover {
            color: #558eff;
        }

        .faq_question:focus {
            outline: 2px solid #558eff;
            outline-offset: 2px;
        }

        .faq_toggle_icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .faq_toggle_icon .plus-icon,
        .faq_toggle_icon .minus-icon {
            width: 100%;
            height: 100%;
            background-color: transparent; /* Fallback background */
        }

        .faq_toggle_icon .plus-icon path,
        .faq_toggle_icon .minus-icon path {
            fill: #e7e7e7;
            transition: fill 0.3s ease;
        }

        .faq_toggle_icon .plus-icon {
            display: block;
        }

        .faq_toggle_icon .minus-icon {
            display: none;
        }

        .faq_question[aria-expanded="true"] .faq_toggle_icon .plus-icon {
            display: none;
        }

        .faq_question[aria-expanded="true"] .faq_toggle_icon .minus-icon {
            display: block;
        }

        .faq_question:hover .faq_toggle_icon .plus-icon path,
        .faq_question:hover .faq_toggle_icon .minus-icon path {
            fill: #D4A017;
        }

        .faq_question:hover .faq_toggle_icon {
            transform: scale(1.2);
        }

        .faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0;
        }

        .faq_answer.active {
            max-height: 200px; /* Adjust based on content */
            padding: 10px 0;
        }

        .faq_answer p {
            margin: 0;
            font-size: 0.9rem;
            color: #e7e7e7;
            line-height: 1.5;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            #faq_section {
                padding: 40px 0;
            }

            #faq_section h2 {
                font-size: 1.5rem;
            }

            .faq_card {
                padding: 20px;
                transform: rotate(0deg); /* Remove tilt on smaller screens */
            }

            .faq_question {
                font-size: 0.9rem;
            }

            .faq_answer p {
                font-size: 0.85rem;
            }

            .faq_item {
                background-size: 16px;
            }
        }

        @media (max-width: 480px) {
            #faq_section {
                padding: 30px 0;
            }

            #faq_section h2 {
                font-size: 1.3rem;
            }

            .faq_card {
                padding: 15px;
            }

            .faq_question {
                font-size: 0.85rem;
            }

            .faq_toggle_icon {
                width: 16px;
                height: 16px;
            }

            .faq_item {
                background-size: 14px;
            }
        }

/*==================================
   FOOTER SECTION
==================================*/
#footer_section {
    background-image: url('../images/background/footer-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 40px 0 20px;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    color: #e7e7e7;
}

#footer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 40, 0.75) 100%);
    z-index: 0;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Newsletter Wrapper */
.footer_newsletter_wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.footer_newsletter_wrapper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #4267b2, #e7e7e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer_newsletter_wrapper form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.footer_newsletter_wrapper input[type="email"] {
    padding: 10px 15px;
    font-size: 0.9rem;
    border: none;
    border-radius: 25px;
    flex: 1;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.footer_newsletter_wrapper input[type="email"]::placeholder {
    color: #999999;
}

.footer_newsletter_wrapper input[type="email"]:focus {
    outline: 2px solid #4267b2;
    outline-offset: 2px;
}

.footer_newsletter_wrapper .subscribe-btn {
    padding: 10px 20px;
    background-color: #4267b2;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer_newsletter_wrapper .subscribe-btn:hover {
    background-color: #5b7bd6;
    box-shadow: 0 0 10px rgba(66, 103, 178, 0.5);
}

.footer_newsletter_wrapper .subscribe-btn .button-text {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer_newsletter_wrapper .subscribe-btn:focus {
    outline: 2px solid #e7e7e7;
    outline-offset: 2px;
}

/* Divider */
.footer_divider {
    text-align: center;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer_divider .book-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('../images/icons/book.webp') no-repeat center;
    background-size: contain;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4267b2;
    padding: 5px;
    border-radius: 50%;
}

/* Branding */
.footer_branding {
    text-align: center;
    margin-bottom: 30px;
}

.footer_logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}

.footer_branding p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: #b0b0b0;
    margin: 0;
}

/* Footer Content Wrapper */
.footer_content_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer_column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(90deg, #4267b2, #e7e7e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer_column h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/icons/book-black.webp') no-repeat center;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
}

/* Quick Links and Join Us */
.footer_column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_column ul li {
    margin-bottom: 10px;
}

.footer_column ul li a {
    color: #e7e7e7;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer_column ul li a:hover {
    color: #4267b2;
    transform: scale(1.05);
}

.footer_column ul li a:focus {
    outline: 2px solid #4267b2;
    outline-offset: 2px;
}

/* Social Links */
.social_links .social_icons {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social_links .social_icons li a {
    color: #e7e7e7;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social_links .social_icons li a:hover {
    color: #4267b2;
    transform: scale(1.2);
}

.social_links .social_icons li a:focus {
    outline: 2px solid #4267b2;
    outline-offset: 2px;
}

/* Contact Info */
.footer_contact {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.footer_contact p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.footer_contact a {
    color: #e7e7e7;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer_contact a:hover {
    color: #4267b2;
    transform: scale(1.05);
}

.footer_contact a:focus {
    outline: 2px solid #4267b2;
    outline-offset: 2px;
}

/* Copyright */
.footer_copyright {
    text-align: center;
    padding-top: 10px;
}

.footer_copyright p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

/* Visually Hidden (for accessibility) */
.visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    .footer_content_wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer_logo {
        height: 50px;
    }

    .footer_branding p {
        font-size: 0.85rem;
    }

    .footer_newsletter_wrapper form {
        flex-direction: column;
        align-items: center;
    }

    .footer_newsletter_wrapper input[type="email"] {
        width: 100%;
        max-width: 300px;
    }

    .footer_newsletter_wrapper .subscribe-btn {
        width: 200px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer_content_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer_column {
        text-align: center;
    }

    .footer_column ul {
        display: inline-block;
        text-align: left;
    }

    .social_links .social_icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #footer_section {
        padding: 30px 0 15px;
    }

    .footer_logo {
        height: 40px;
    }

    .footer_branding p {
        font-size: 0.8rem;
    }

    .footer_column h3 {
        font-size: 1.1rem;
    }

    .footer_column ul li a {
        font-size: 0.85rem;
    }

    .footer_contact p {
        font-size: 0.85rem;
    }

    .footer_copyright p {
        font-size: 0.8rem;
    }

    .footer_newsletter_wrapper h3 {
        font-size: 1.3rem;
    }
}
