:root {
    --primary-color: #ff5757;
    --dark-color: #212529;
    --light-color: #ffffff;
    --hover-bg: #ffd3c3;
    --transition-fast: 0.2s;
    --transition-smooth: 0.3s ease;
    --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* General styles */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    background-color: var(--light-color);
    scroll-behavior: smooth;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--hover-bg) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background-color: var(--hover-bg) !important;
    color: var(--primary-color) !important;
}

.sidebar-link.active {
    background-color: var(--hover-bg) !important;
    color: var(--primary-color) !important;
}

.custom-header {
    transition: var(--transition-smooth);
    z-index: 999;
    background-color: var(--light-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.pro-text {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--hover-bg);
    border-radius: 6px;
    padding-left: 6px;
    padding-right: 6px;
}

.nav-link:hover::after {
    width: 100%;
}

.transition-btn {
    transition: var(--transition-smooth);
}

.transition-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* public/css/footer.css */

.footer-section {
    background-color: #000000;
    font-size: 0.95rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-description {
    color: #ccc;
    max-width: 450px;
    line-height: 1.6;
}

.footer-contact li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary-color);
}

.social-icon {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

/* public/css/banner.css */

.hero-banner {
    position: relative;
    height: 90vh;
    background: url("/images/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.about-banner {
    position: relative;
    height: 90vh;
    background: url("/images/about.webp") center center / cover no-repeat;
    overflow: hidden;
}

.doctor-banner {
    position: relative;
    height: 90vh;
    background: url("/images/doctor.jpeg") center center / cover no-repeat;
    overflow: hidden;
}

.service-banner {
    position: relative;
    height: 90vh;
    background: url("/images/services/banner.png") center center / cover
        no-repeat;
    overflow: hidden;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* public/css/cards.css */
/* public/css/cards.css */

.features-section {
    background-color: #f2f2f2;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.card-img-top {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 30px 20px;
}

.card-title {
    font-size: 1.25rem;
    color: #ff5757;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .card-img-top {
        height: 200px;
    }

    .card-body {
        padding: 20px 15px;
    }
}

/* public/css/welcome.css */
/* public/css/welcome.css */
/* public/css/about.css */

.about-speechpro-section {
    background-color: #ffffff;
    font-size: 1rem;
}

.object-cover {
    object-fit: cover;
}

.content-wrapper {
    max-width: 90%;
    margin: 0 auto;
}

.about-speechpro-section h2 {
    font-size: 2.2rem;
    color: #ff5757;
}

.about-speechpro-section ul li {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.about-speechpro-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff5757;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* public/css/cta.css */

.cta-section {
    background-color: #ff5757;
}

.cta-section .text-emphasis {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cta-section .btn {
    transition: all 0.3s ease;
}

.hover-cta:hover {
    background-color: #ffffff;
    color: #ff5757;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
}

.slide img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.sponsor-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    justify-content: center;
    height: auto;
}

.sponsors-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    gap: 80px;
}

.collaboration-section {
    background-color: #d8d8d8;
    padding: 60px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.collaboration-section .card {
    justify-content: center;
    align-items: center;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaboration-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.collaboration-section .card img {
    border-radius: 15px;
    width: 200px;
    height: auto;
    object-fit: cover;
}
