:root {
    --primary-orange: #FF6600;
    /* Main Orange */
    --secondary-orange: #E65C00;
    /* Darker Orange for hover */
    --light-orange: #FFF0E6;
    /* Light Orange for backgrounds */
    --text-dark: #333333;
    --text-light: #F8F9FA;
    --bg-light: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Override Bootstrap Primary Color */
.text-primary {
    color: var(--primary-orange) !important;
}

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

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

/* Pill Buttons */
.btn-pill {
    border-radius: 50rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Navbar */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 1rem;
    margin-right: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-bg-light {
    background-color: var(--light-orange);
}

/* Footer */
.footer {
    background-color: #222;
    color: #aaa;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--primary-orange);
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #fff;
}

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

/* Partner Logos */
.partner-logo {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    margin: 0 1rem;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

/* Parallax Header */
.parallax-header {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}