/* Master Base Layout CSS - All structural & functional styles go here */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@400;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&family=Roboto:wght@500;700&family=Lato:wght@400;700&family=Montserrat:wght@600;800&display=swap');

body {
    font-family: var(--font-main, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--text-dark, #1a1a1a);
    background-color: var(--bg-body, #FFFFFF);
    line-height: 1.5;
    font-size: 0.95rem;
    /* Slightly smaller base font */
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

.display-4 {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark, var(--primary));
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar i {
    color: var(--secondary);
    margin-right: 5px;
}

/* Navbar */
.navbar-custom {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.navbar-brand img {
    max-height: 60px;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta {
    background: var(--secondary);
    color: #fff !important;
    border: none;
    font-weight: 600;
}

.btn-cta:hover {
    background: var(--secondary-hover);
    color: #fff;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg, 16px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Feature Icons */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb, 0, 152, 141), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.card:hover .feature-icon-circle {
    background: var(--primary);
    color: var(--secondary);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-slider-height {
    min-height: 500px;
}

/* Animations */
.animate-float {
    animation: float-y 4s ease-in-out infinite;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer-custom {
    background: var(--primary-dark, #1b1b1b);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-custom h4,
.footer-custom h5 {
    color: #fff;
}

.footer-custom p,
.footer-custom li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-custom a:hover {
    color: var(--secondary);
}

/* Marquee Slider */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 20px;
}

.marquee-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Banner Images */
.hero-banner-img {
    height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-banner-img {
        height: 300px;
    }
}