/* -- Google Fonts Import -- */
/* font-family: 'Lato', sans-serif; */
/* font-family: 'Poppins', sans-serif; */

/* -- Color Palette & Variables -- */
/* -- Color Palette & Variables -- */
:root {
    --primary-color: #D62828; /* A strong, professional red to match the logo */
    --secondary-color: #0a0f18; /* A very dark blue/black for text and footers */
    --accent-color: #F77F00; /* A complimentary warm orange/gold for contrast */
    --cool-color: #003049; /* A deep blue for a tech-savvy feel */
    --background-color: #f4f4f4; /* Light gray for backgrounds */
    --light-gray: #0180ff;
    --white: #ffffff;
}
/* ... rest of the CSS ... */

body {
    font-family: 'Lato', sans-serif;
    padding-top: 56px; /* Offset for fixed navbar */
}

/* -- Typography -- */
h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Poppins', sans-serif;
}

/* -- Navigation Bar -- */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* -- Hero Section (High-Impact) -- */
.hero-section {
    /* Change 'hero-bg.jpg' to your actual background image in assets/images/ */
    background: linear-gradient(rgba(10, 15, 24, 0.8), rgba(10, 15, 24, 0.8)), url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: var(--white);
    min-height: 80vh; /* Ensures it fills most of the screen */
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-weight: 700;
}

/* -- Buttons -- */
/* ---------------------------------------------------- */
/* -- Buttons -- (FINAL CONFIGURATION)                  */
/* ---------------------------------------------------- */
.btn {
cursor: pointer;
text-decoration: none;
padding: 12px 24px;
font-weight: 600;
border-radius: var(--border-radius-sm);
transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.1s;
}

/* 1. .btn-primary: Red default, Darker Red hover (Retained) */
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
color: var(--white);
}

.btn-primary:hover {
background-color: #3c00ff; /* Darker red hover */
border-color: #3c00ff;
transform: translateY(-1px);
}

/* 2. .btn-cool: Bright Blue default with Primary Red hover (Blue w/ Red Hover) */
.btn-cool {
background-color: var(--light-gray); /* Bright Blue */
border-color: var(--light-gray);
color: var(--white);
}

.btn-cool:hover {
background-color: var(--primary-color); /* Primary Red hover */
border-color: var(--primary-color);
transform: translateY(-1px);
}

/* 3. .btn-success: Green default with darker green hover (Retained color, modified hover) */


.btn-success:hover {
background-color: #F77F00; /* Darker Green hover */
border-color: #F77F00;
transform: translateY(-1px);
}

/* 4. .btn-accent: Orange default with darker orange hover (NEW) */
.btn-accent {
background-color: var(--accent-color); /* Orange/Gold */
border-color: var(--accent-color);
color: var(--secondary-color); /* Dark text for contrast on bright button */
}

.btn-accent:hover {
background-color: #000000; /* Darker Orange hover */
border-color: #00ff88;
transform: translateY(-1px);
}

.btn-outline-light {
border-width: 2px;
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.1s;
}

.btn-outline-light:hover {
background-color: var(--white);
color: var(--secondary-color);
border-color: var(--white);
transform: translateY(-1px);
}

/* -- Sections & Cards -- */
section {
    padding: 80px 0;
}

.card {
    border: 1px solid #ddd;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15) !important;
}

/* -- Footer -- */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* --- Transparent Header Styling --- */
.navbar-transparent {
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out; /* Smooth transition for scroll effect */
}

/* This class will be added by JavaScript when the user scrolls */
.navbar-scrolled {
    background-color: var(--white) !important; /* Solid white background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* When the navbar is scrolled, the text links must switch back to dark */
.navbar-scrolled .nav-link, 
.navbar-scrolled .navbar-brand span {
    color: var(--secondary-color) !important; 
}

/* --- Logo Styling --- */
.navbar-logo {
    height: 80px; /* Adjust as needed */
    width: auto;
    transition: all 0.4s ease-in-out;
}

/* Make logo slightly smaller when scrolled */
.navbar-scrolled .navbar-logo {
    height: 50px; /* Smaller when scrolled */
}

/* --- Additional Custom Styles --- */
/* Add any additional custom styles below this line */  