/* ==========================================================================
   
Base styles
   ========================================================================== */
   :root {
    --primary-color: #0091d9;         /* Blue */
    --secondary-color: #4A4A4A;       /* Dark Gray */
    --accent-color: #D4AF37;          /* Gold */
    --background-color: #FFFFFF;      /* White */
    --text-color: #333333;            /* Dark Gray */
    --light-gray: #F5F5F5;            /* Light Gray */
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Base Elements
   ========================================================================== */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    padding-top: 76px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Lists
    ========================================================================== */
ul:not(.navbar-nav):not(.list-unstyled) {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

ul:not(.navbar-nav):not(.list-unstyled) li {
    position: relative;
    margin-bottom: 0.5rem;
}

ul:not(.navbar-nav):not(.list-unstyled) li::before {
    color: var(--primary-color);
}

/* Icon Lists */
.stagger-list {
    margin: 0;
    padding: 0;
}

.stagger-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stagger-list .bi {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Sections
    ========================================================================== */
.section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    background-color: var(--background-color);
    overflow: hidden;
}

.section:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Section Background Variants */
.bg-primary {
    background-color: var(--background-color) !important;
}

.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary p,
.bg-primary .lead,
.bg-primary .text-white {
    color: var(--text-color) !important;
}



.bg-light {
    background-color: var(--light-gray) !important;
}

/* Cards
   ========================================================================== */
.card {
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Images
   ========================================================================== */
.img-feature {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-feature:hover {
    transform: scale(1.02);
}

/* Buttons
   ========================================================================== */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c19b2f;
    border-color: #c19b2f;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Navigation
   ========================================================================== */
.navbar {
    min-height: 76px;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    transition: background-color 0.3s ease;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section     
    ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh -76px );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
   padding: 4rem 0;
   margin-top: -76px; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
   position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
}

.hero .btn {
    opacity: 0;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-text {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.25rem;
    }
}

/* Footer
    ========================================================================== */
.footer {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Utilities
    ========================================================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--text-color) !important;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}