/**
* Template Name: Medicio
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Poppins", system-ui, -apple-system, "Segoe UI",
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: black; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #00adef; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #00adef; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #3fbbc0; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f7fcfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #3fbbc0;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #65c9cd;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    height: 40px;
    padding: 0;
    transition: all 0.5s;
    font-weight: 600;
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 5px 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Mobile only: screen width 576px or less */
@media (max-width: 576px) {
    .phone-mobile {
        font-size: 14px !important; /* smaller font only on mobile */
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

/* .footer .footer-top {
    padding-top: 50px;
} */

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 120px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;

    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 70vh;
    padding: 0;
    margin: 0;
    position: relative;
}

@media (max-height: 500px), (max-width: 580px) {
    .hero .carousel {
        min-height: 100vh;
    }
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero .container {
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
    z-index: 3;
}

@media (max-width: 1200px) {
    .hero .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero .btn-get-started {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.3s;
    margin: 10px;
    border-radius: 5px;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.hero .carousel-indicators li {
    cursor: pointer;
    background: var(--contrast-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 1;
    transition: 0.3s;
}

.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
}





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Banner Section Start
--------------------------------------------------------------*/
.bg-banner {
    background-image: url("{{ asset('assets/img/banner/banner-image.jpg') }}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #0b1f2a;
    position: relative;
}

.bg-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 202, 240, 0.85);
}

.bg-banner .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    color: #063447;
}

.banner-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0b3c4c;
}
.col-lg-6.mb-4.mb-lg-0 {
    text-align: center;
}

.text-warning {
    color: #7a4f01 !important;
}

.btn-primary {
    background-color: #ee8425;
    border: none;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #ee8425;
}

.card {
    background-color: rgba(255, 255, 255, 0.96);
    color: #000;
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 1.9rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

.enquiry-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: none;
}

.form-title {
    font-weight: 700;
    color: #063447;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e5e5;
    position: relative;
}
h1.attention-header {
    background-color: white;
    color: #e93d3d;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: 0;
    border: #81e6d9;
    border-radius: 150px;
    width: auto;
    font-size: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}
/ .custom-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.custom-input:focus {
    border-color: #ee8425;
    box-shadow: 0 0 0 3px rgba(55, 202, 55, 0.15);
}

.btn-submit {
    background: #ee8425;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2fb82f, #23913d);
}

@media (max-width: 767px) {
    h1.attention-header {
        font-size: 16px;
        padding: 8px 0;
    }
    .col-lg-6.mb-4.mb-lg-0 {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Counter Section Start
--------------------------------------------------------------*/
.counter-section {
    padding: 0;
    color: #ffffff;
}

.counter-section__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .counter-section__inner {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.counter-section--live .container.counter-section__inner,
.counter-section--ended .container.counter-section__inner {
    max-width: none;
    width: 100%;
}

.counter-section--live .counter-section__inner {
    /* Tight strip: avoid large orange bands above/below the glass card */
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    padding-left: clamp(0.875rem, 3vw, 1.5rem);
    padding-right: clamp(0.875rem, 3vw, 1.5rem);
}

.counter-section--ended .counter-section__inner {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    padding-left: clamp(0.875rem, 3vw, 1.5rem);
    padding-right: clamp(0.875rem, 3vw, 1.5rem);
}

.counter-section--live {
    position: relative;
    overflow: hidden;
}

.counter-section--live::before {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(
        ellipse 55% 45% at 50% 35%,
        rgba(255, 255, 255, 0.22) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.counter-section--live::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.12) 100%
    );
    pointer-events: none;
}

.counter-section--live .counter-section__inner,
.counter-section--ended .counter-section__inner {
    position: relative;
    z-index: 1;
}

.counter-section--live #counter-row {
    min-height: 0;
    align-items: center;
    justify-content: center;
}

.counter-section--ended #counter-row {
    min-height: 0;
    align-items: center;
    justify-content: center;
}

.counter-text__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.counter-text__title {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    max-width: none;
}

.counter-text__tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 82%);
    line-height: 1.45;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .counter-section--countdown .counter-intro-col {
        min-width: 0;
        flex: 1 1 0;
    }

    .counter-text--pre .counter-text__tagline {
        max-width: 36rem;
    }

    .counter-text__tagline {
        margin-left: 0;
        margin-right: 0;
    }
}

.counter-section .cd-timer--countdown {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem 1rem;
}

@media (min-width: 992px) {
    /* Column is only as wide as the timer; no need to push boxes to far end */
    .counter-section .cd-timer--countdown {
        justify-content: flex-start;
        gap: 1rem 1.25rem;
    }
}

.counter-section .cd-timer--countdown .cd-item {
    flex: 0 0 auto;
    width: 5.5rem;
    height: 5.5rem;
    margin: 0;
    padding: 0.85rem 0.5rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (min-width: 400px) {
    .counter-section .cd-timer--countdown .cd-item {
        width: 6.25rem;
        height: 6.25rem;
    }
}

@media (min-width: 992px) {
    .counter-section .cd-timer--countdown .cd-item {
        width: 7rem;
        height: 7rem;
        padding-top: 1rem;
    }
}

.counter-section .cd-timer--countdown .cd-item:after {
    display: none;
}

.counter-section .cd-timer--countdown .cd-item span {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.counter-section .cd-timer--countdown .cd-item p {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 90%);
    margin-bottom: 0;
    margin-top: 0.35rem;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .counter-section .cd-timer--countdown .cd-item p {
        font-size: 0.75rem;
    }
}

.counter-hero {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.counter-hero--live,
.counter-hero--ended {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.counter-hero__panel {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 1.35rem 1.35rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .counter-hero__panel {
        padding: 2rem 2rem 1.65rem;
    }
}

.counter-hero--live .counter-hero__panel {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 1.25rem;
    /* Lighter vertical shadow so the card doesn’t look “floating” in orange gaps */
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

@media (min-width: 992px) {
    .counter-hero--live .counter-hero__panel {
        padding: 1.35rem clamp(1rem, 3vw, 2rem) 1rem;
    }
}

.counter-hero--ended .counter-hero__panel {
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem clamp(1rem, 3vw, 2rem) 1.1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

@media (min-width: 768px) {
    .counter-hero--ended .counter-hero__panel {
        padding: 1.35rem clamp(1.25rem, 3vw, 2rem) 1.15rem;
    }
}

.counter-hero__two-col {
    --bs-gutter-x: 1.5rem;
}

.counter-hero__badge-wrap {
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .counter-hero__badge-wrap {
        margin-bottom: 0.9rem;
    }
}

.counter-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.counter-hero__badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3ee03e;
    box-shadow: 0 0 0 0 rgba(62, 224, 62, 0.5);
    animation: counter-live-dot-pulse 1.6s ease-out infinite;
}

@keyframes counter-live-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 224, 62, 0.45);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(62, 224, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(62, 224, 62, 0);
    }
}

.counter-hero__title {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(1.75rem, 5.5vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.counter-hero__lead {
    color: rgba(255, 255, 255, 92%);
    font-size: 1.02rem;
    line-height: 1.45;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .counter-hero--live .counter-hero__lead {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}

.counter-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.counter-hero__meta--stack {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 0;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .counter-hero__meta--stack {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}

.counter-hero__chip {
    flex: 1 1 auto;
    min-width: 10.5rem;
    max-width: 17rem;
    padding: 0.9rem 1rem;
    text-align: center;
    border-radius: 0.85rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.counter-hero__chip--compact {
    max-width: none;
    min-width: 0;
    padding: 0.7rem 0.85rem;
}

@media (min-width: 992px) {
    .counter-hero__meta--stack .counter-hero__chip--compact {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
    }
}

.counter-hero__chip-icon {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 95%);
    opacity: 0.95;
}

.counter-hero__chip-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 75%);
    margin-bottom: 0.2rem;
}

.counter-hero__chip-value {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.counter-hero__venue-row {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@media (min-width: 992px) {
    .counter-hero__venue-row {
        margin-top: 1rem;
        padding-top: 0.85rem;
    }
}

.counter-hero__venue {
    color: rgba(255, 255, 255, 88%);
    font-size: 0.9rem;
    line-height: 1.4;
    padding-top: 0;
    border-top: none;
}

.counter-hero__dates {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.95;
}

.counter-hero__hours {
    color: rgba(255, 255, 255, 92%);
    font-size: 1rem;
    font-weight: 500;
}

.counter-hero__sub {
    color: rgba(255, 255, 255, 88%);
    font-size: 1.05rem;
}

.counter-hero--live .counter-hero__title {
    animation: counter-live-title-glow 2.8s ease-in-out infinite alternate;
}

@keyframes counter-live-title-glow {
    0% {
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.08);
    }
    100% {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25), 0 0 32px rgba(255, 255, 255, 0.28),
            0 0 48px rgba(255, 220, 150, 0.2);
    }
}

.counter-section--ended {
    position: relative;
    overflow: hidden;
}

.counter-section--ended::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.06) 100%
    );
    pointer-events: none;
}

.counter-hero--ended .counter-hero__title {
    animation: none;
}

/*--------------------------------------------------------------
# Previous Admission Expo section Start
--------------------------------------------------------------*/
.bg-gradient {
    background-color: #ee8425;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-section-title {
    font-size: 28px;
    font-weight: 600;
}

.hero-area-cta {
    line-height: 1.25;
}

.hero-area-cta__sub {
    font-size: 16px;
    font-weight: 600;
}
/*--------------------------------------------------------------
# Why Attend Section Start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Service Sections Start
--------------------------------------------------------------*/
.service-card {
    border: none;
    border-top: 4px solid #ee8425; /* highlight line */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}
.btn-outline-primary {
    border-color: #ee8425;
    color: #ee8425;
}

.btn-outline-primary:hover {
    background-color: #ee8425;
    border-color: #ee8425;
    color: #fff;
}

/*---------------------
  Expo Locations Cards
-----------------------*/
.expo-locations {
    background: #f6f8fc;
}

.expo-locations__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b63d8;
    background: #eaf3ff;
}

.expo-locations__card {
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 14px;
    padding: 26px 22px 22px;
    box-shadow: 0 12px 28px rgba(20, 38, 61, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.expo-locations__card:hover {
    transform: translateY(-4px);
    border-color: #cfdcf0;
    box-shadow: 0 18px 36px rgba(20, 38, 61, 0.12);
}

.expo-locations__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0b63d8;
    background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
}

.expo-locations__title {
    font-size: 26px;
    font-weight: 700;
    color: #182b43;
    margin-bottom: 10px;
}

.expo-locations__text {
    color: #566981;
    font-size: 15px;
    line-height: 1.65;
    min-height: 72px;
}

.expo-locations__btn {
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Ads Section Start
--------------------------------------------------------------*/
.ads-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ads-section .bg-dark {
    border-radius: 0;
}

/*--------------------------------------------------------------
# Gallery Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sponsors Section Start
--------------------------------------------------------------*/
.clients {
    padding: 50px 0;
}

.sponsor-card {
    background: linear-gradient(135deg, #ffffff, #f3f6ff);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sponsor-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 193, 7, 0.2);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    filter: blur(70px);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffb703, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.main-title::after {
    content: "";
    display: block;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ffb703, #ff6b00);
    margin: 10px auto 0;
    border-radius: 2px;
    transition: 0.4s;
}

.sponsor-card:hover .main-title::after {
    width: 70px;
}

.subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 8px;
}

.clients h5 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
}

.text-warning {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.clients h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: currentColor;
    display: block;
    margin: 8px auto 0;
    opacity: 0.6;
}

.clients .swiper {
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
}

.clients .swiper-wrapper {
    height: auto;
}

/* Sponsor logos: infinite horizontal marquee (8 logos × 2 groups for seamless loop) */
.sponsors-marquee {
    width: 100%;
    max-width: 100%;
}

.sponsors-marquee__viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.sponsors-marquee__track {
    display: flex;
    width: max-content;
    animation: sponsors-marquee-scroll 38s linear infinite;
}

.sponsors-marquee--silver .sponsors-marquee__track {
    animation-duration: 46s;
}

.sponsors-marquee:hover .sponsors-marquee__track {
    animation-play-state: paused;
}

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

    .sponsors-marquee__viewport {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.sponsors-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(1.25rem, 4vw, 2.75rem);
    padding-right: clamp(1.25rem, 4vw, 2.75rem);
}

.sponsors-marquee__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors-marquee__img {
    display: block;
    height: auto;
    max-height: 52px;
    width: auto;
    max-width: clamp(88px, 14vw, 130px);
    object-fit: contain;
    transition: transform 0.25s ease;
}

@media (min-width: 992px) {
    .sponsors-marquee__img {
        max-height: 64px;
    }
}

.sponsors-marquee__item:hover .sponsors-marquee__img {
    transform: scale(1.08);
}

@keyframes sponsors-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/*--------------------------------------------------------------
# <!-- Faq Section Start -->
--------------------------------------------------------------*/
.faq-2 .faq-container {
    margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery lightbox (Previous Expo)
--------------------------------------------------------------*/
.expo-gallery-trigger {
    cursor: zoom-in;
    color: inherit;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.expo-gallery-trigger:hover img {
    transform: scale(1.02);
}

.expo-gallery-trigger:focus-visible {
    outline: 3px solid #0d6efd;
    outline-offset: 2px;
}

.expo-gallery-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
}

.expo-gallery-modal .expo-gallery-modal__sheet {
    min-height: 100vh;
    background: rgba(33, 37, 41, 0.96);
    display: flex;
    flex-direction: column;
}

.expo-gallery-modal__close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expo-gallery-modal__nav {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expo-gallery-modal__main-img {
    max-width: 100%;
    max-height: min(78vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

.expo-gallery-modal__thumbs-wrap {
    flex-shrink: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35),
        transparent
    );
}

.expo-gallery-modal__thumb {
    cursor: pointer;
    border: 2px solid transparent !important;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.75;
    transition:
        opacity 0.2s,
        border-color 0.2s;
}

.expo-gallery-modal__thumb:hover {
    opacity: 1;
}

.expo-gallery-modal__thumb.active {
    border-color: #0d6efd !important;
    opacity: 1;
}

.expo-gallery-modal__thumb img {
    display: block;
    height: 56px;
    width: 72px;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .expo-gallery-trigger:hover img {
        transform: none;
    }
}



/*---------------------
  Schedule Section
-----------------------*/

.schedule-section {
	padding-bottom: 60px;
}

.schedule-home {
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.schedule-home__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b63d8;
    background: #eaf3ff;
}

.schedule-home__panel {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #e3ecf7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(17, 33, 53, 0.08);
}

.schedule-home__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}

.schedule-home__summary span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #2b3d55;
    background: #f5f9ff;
    border: 1px solid #e1ebf8;
}

.schedule-home__card {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5edf8;
    background: #fcfdff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.schedule-home__card:hover {
    transform: translateY(-3px);
    border-color: #cfdff5;
    box-shadow: 0 10px 20px rgba(15, 35, 65, 0.08);
}

.schedule-home__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.schedule-home__card-head h5 {
    color: #10243d;
    font-weight: 700;
    font-size: 20px;
}

.schedule-home__chip {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #0b63d8;
    background: #eaf3ff;
}

.schedule-home__line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3e526d;
    font-size: 15px;
    font-weight: 500;
}

.schedule-home__line i {
    color: #0b63d8;
    width: 18px;
}

.schedule-home__table {
    border: 1px solid #dde8f7;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 36, 61, 0.06);
}

.schedule-home__table thead th {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
    color: #122c47;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 700;
    padding: 15px 18px;
    border-bottom: 1px solid #dce7f5;
}

.schedule-home__table tbody td {
    padding: 16px 18px;
    color: #243b56;
    font-weight: 500;
    border-color: #e8eff8;
}

.schedule-home__table tbody tr:hover td {
    background: #f9fcff;
}

.schedule-home__cell-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #112d49;
}

.schedule-home__cell-label i {
    width: 18px;
    color: #0b63d8;
}

.schedule-home__pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe8fb;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #234266;
    background: #f4f8ff;
}

.schedule-home__pill--time {
    color: #0d4ea1;
    background: #edf5ff;
    border-color: #cfe1fb;
}

/* Schedule — professional card layout (welcome) */
.schedule-home--pro {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f1f5f9 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.schedule-home__head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.25rem;
}

.schedule-home__eyebrow--pro {
    color: #0284c7;
    background: rgba(0, 173, 239, 0.08);
    border: 1px solid rgba(0, 173, 239, 0.2);
    letter-spacing: 0.14em;
    font-size: 11px;
    margin-bottom: 1rem;
}

.schedule-home__title-pro {
    font-size: clamp(1.5rem, 2.8vw, 2.05rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.schedule-home__sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-home__statbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.schedule-home__statbar-item {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.1rem 1.35rem;
    border-right: 1px solid #e2e8f0;
}

.schedule-home__statbar-item:last-child {
    border-right: 0;
}

.schedule-home__statbar-item > i {
    font-size: 1.35rem;
    color: #00adef;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 173, 239, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
}

.schedule-home__statbar-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.schedule-home__statbar-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-top: 2px;
}

.schedule-home__grid {
    margin-bottom: 0;
}

.schedule-home__venue {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.schedule-home__venue:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
    border-color: rgba(0, 173, 239, 0.22);
}

.schedule-home__venue-accent {
    height: 4px;
    width: 100%;
}

.schedule-home__venue-accent--blue {
    background: linear-gradient(90deg, #0095c8 0%, #00adef 50%, #38cfff 100%);
}

.schedule-home__venue-accent--orange {
    background: linear-gradient(90deg, #e07812 0%, #f7941d 55%, #fbbf24 100%);
}

.schedule-home__venue-inner {
    padding: 1.5rem 1.35rem 1.45rem;
}

.schedule-home__venue-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.schedule-home__venue-pin {
    color: #00adef;
    font-size: 1.15rem;
    line-height: 1.2;
    margin-top: 2px;
}

.schedule-home__venue[data-venue="2"] .schedule-home__venue-pin {
    color: #f7941d;
}

.schedule-home__venue-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.schedule-home__venue-meta {
    margin: 0;
}

.schedule-home__venue-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.schedule-home__venue-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.schedule-home__venue-row:first-of-type {
    padding-top: 0;
}

.schedule-home__venue-row dt {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-home__venue-row dt i {
    font-size: 13px;
    color: #00adef;
    font-weight: 400;
}

.schedule-home__venue[data-venue="2"] .schedule-home__venue-row dt i {
    color: #f7941d;
}

.schedule-home__venue-row dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
}

.schedule-home__foot {
    margin-top: 2.5rem;
}

.schedule-home__btn {
    border-radius: 10px;
    font-weight: 600;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
}

@media (max-width: 767px) {
    .schedule-home__statbar-item {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .schedule-home__statbar-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .schedule-home__statbar-value {
        font-size: 1rem;
    }
}

.schedule-section-modern {
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.schedule-modern-shell {
    max-width: 1080px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(17, 33, 53, 0.08);
}

.schedule-modern-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fbff;
    border: 1px solid #e5efff;
    border-radius: 14px;
    padding: 16px 18px;
}

.schedule-modern-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd 0%, #00adef 100%);
    color: #ffffff;
    font-size: 18px;
}

.schedule-modern-label {
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #5f6b7a;
}

.schedule-modern-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
}

.schedule-modern-meta {
    font-size: 14px;
    color: #55657a;
    line-height: 1.4;
}

.schedule-section-home-pro .schedule-modern-shell {
    max-width: 1100px;
}

.schedule-agenda-card {
    border: 1px solid #e5edf7;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.schedule-agenda-card__head {
    padding: 14px 18px;
    border-bottom: 1px solid #e9eef5;
    background: #f5f9ff;
}

.schedule-agenda-card__head h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
}

.schedule-agenda-table thead th {
    background: #f8fbff;
    color: #334155;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom-width: 1px;
}

.schedule-agenda-table td,
.schedule-agenda-table th {
    padding: 14px 16px;
    border-color: #e9eef5;
}

.schedule-day-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #0b63d8;
    background: #eaf3ff;
}

@media (max-width: 575.98px) {
    .expo-locations__title {
        font-size: 22px;
    }

    .expo-locations__text {
        min-height: 0;
    }

    .schedule-home__panel {
        padding: 16px;
    }

    .schedule-home__card-head h5 {
        font-size: 18px;
    }

    .schedule-home__line {
        font-size: 14px;
    }

    .schedule-modern-shell {
        padding: 18px;
    }

    .schedule-modern-item {
        padding: 14px;
    }

    .schedule-modern-value {
        font-size: 16px;
    }
}

.schedule-tab .nav-tabs {
	border: none;
	border-radius: 2px;
	margin-bottom: 60px;
	-webkit-box-shadow: 3px 10px 30px rgba(74, 74, 77, 0.15);
	box-shadow: 3px 10px 30px rgba(74, 74, 77, 0.15);
}

.schedule-tab .nav-tabs .nav-item {
	border-right: 1px solid #e7e7e8;
	width: 20%;
	text-align: center;
}

.schedule-tab .nav-tabs .nav-item:last-child {
	border-right: none;
}

.schedule-tab .nav-tabs .nav-item .nav-link {
	padding: 14px 0 13px 0;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.schedule-tab .nav-tabs .nav-item .nav-link.active {
	border-radius: 2px;
	border-color: #e7e7e8;
}

.schedule-tab .nav-tabs .nav-item .nav-link.active h5 {
	color: #ffffff;
}

.schedule-tab .nav-tabs .nav-item .nav-link.active p {
	color: #ffffff;
}

.schedule-tab .nav-tabs .nav-item .nav-link h5 {
	color: #171822;
	font-weight: 600;
}

.schedule-tab .nav-tabs .nav-item .nav-link p {
	margin-bottom: 0;
}

.schedule-tab .st-content {
	border: 1px solid #ebebeb;
	border-radius: 2px;
	margin-bottom: 40px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.schedule-tab .st-content:hover {
	-webkit-box-shadow: 3px 12px 30px rgba(23, 24, 34, 0.05);
	box-shadow: 3px 12px 30px rgba(23, 24, 34, 0.05);
	border: 1px solid transparent;
}

.schedule-tab .st-content .sc-pic {
	text-align: center;
	padding: 30px 0;
}

.schedule-tab .st-content .sc-pic img {
	height: 120px;
	width: 120px;
	border-radius: 50%;
}

.schedule-tab .st-content .sc-text {
	padding: 58px 0;
}

.schedule-tab .st-content .sc-text h4 {
	color: #171822;
	font-weight: 600;
	margin-bottom: 10px;
}

.schedule-tab .st-content .sc-text ul li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #6a6b7c;
	margin-right: 25px;
	position: relative;
}

.schedule-tab .st-content .sc-text ul li:last-child:after {
	display: none;
}

.schedule-tab .st-content .sc-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
}

.schedule-tab .st-content .sc-text ul li i {
	color: #f44949;
	font-size: 14px;
}

.schedule-tab .st-content .sc-widget {
	padding: 58px 0;
}

.schedule-tab .st-content .sc-widget li {
	list-style: none;
	font-size: 16px;
	color: #6a6b7c;
	line-height: 32px;
	position: relative;
	padding-left: 22px;
}

.schedule-tab .st-content .sc-widget li i {
	color: #f44949;
	position: absolute;
	left: 0;
	top: 7px;
}
