:root {
    --primary-color: #009996;
    --primary-dark: #007774;
    --primary-light: #00b8b5;
    --secondary-color: #f8f9fa;
    --text-dark: #333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.29);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* General Styles */
body {
    /* font-family: "Poppins", sans-serif; */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f5f5f5;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url("/img/bg_doodle_bw.jpg");
}

.section-py {
    padding: 0;
    margin-bottom: 20px;
}

.bg-light {
    background-color: var(--secondary-color) !important;
}

.bg-white2 {
    background-color: #f8f9fa;
}

/* Container Customization - Boxy Style */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* Section Boxed - All sections in one card */
.section-boxed {
    padding: 0;
    margin-bottom: 20px;
}

.section-boxed .container {
    padding: 0;
}

.section-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .section-card {
        padding: 20px;
    }

    .section-boxed {
        padding: 5px;
        margin-bottom: 5px;
    }
}

/* Navbar - Sticky on Scroll */
.layout-navbar {
    position: relative;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky State - When Scrolled */
.layout-navbar.navbar-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
}

/* Navbar Background Enhancement on Scroll */
.layout-navbar.navbar-sticky .navbar {
    background-color: var(--white);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Hero Section - Prevent overlap with navbar */
#landingHero {
    margin-top: 90px;
    position: relative;
}

/* When navbar becomes sticky, add spacing to prevent content jump */
body.navbar-is-sticky #landingHero {
    margin-top: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .layout-navbar.navbar-sticky .navbar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
}

/* Utilities */

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

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

.badge.bg-label-primary {
    background-color: rgba(0, 153, 150, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Section Titles */
.title1 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.title1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.title2 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}
