/* =================================================================
   1. ROOT VARIABLES & GENERAL SETUP
   PALETTE: Royal Blue, Gold, Charcoal, and Light Gray
================================================================= */
:root {
    --primary-color: #2a4392; /* Royal Blue for trust and professionalism */
    --secondary-color: #2d3436; /* Charcoal Gray for deep, modern text */
    --accent-color: #c5a66a; /* Rich Gold for a touch of royalty and prestige */
    --light-gray: #f7f8fc; /* Clean light gray for modern backgrounds */
    --border-color: #dfe1e6;
    --font-family: 'Manrope', sans-serif;
    --border-radius: 8px;
    --shadow-sm: 0 4px 6px rgba(45, 52, 54, 0.06);
    --shadow-md: 0 10px 30px rgba(45, 52, 54, 0.1);
}

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    color: var(--secondary-color);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    color: #636e72;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =================================================================
   2. HEADER & NAVIGATION
================================================================= */
/* Line 1: Top Bar */
.top-bar {
    background-color: var(--light-gray);
    padding: 10px 0;
    font-size: 0.85rem;
}
.top-bar a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.top-bar a:hover {
    color: var(--primary-color);
}
.top-bar .contact-details i {
    color: var(--primary-color);
}

/* Line 2: Main Navigation Bar */
.navbar {
    background-color: #ffffff !important; /* A clean white nav base */
    border-bottom: 1px solid var(--border-color);
}
.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 800;
    letter-spacing: -1px;
}
.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}
.nav-link.active, .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Cleanup: Remove old one-line header contact styles */
.header-contact-info {
    display: none !important;
}

/* =================================================================
   3. BUTTONS & CARDS
================================================================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #1e306e; /* Darker Royal Blue */
    border-color: #1e306e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.brand-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.brand-card-img {
    height: 220px;
    object-fit: cover;
}
.brand-card .card-title {
    font-weight: 700;
}
.brand-card .btn-outline-primary {
    border-radius: 50px;
    font-weight: 700;
}

/* =================================================================
   4. PAGE-SPECIFIC SECTIONS (HERO, ABOUT, CONTACT)
================================================================= */
/* Hero Section */
.hero-section {
    background-color: var(--light-gray);
}
.hero-section h1 {
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}
.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Testimonial Section */
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #636e72;
    border-left: 3px solid var(--accent-color); /* Gold accent */
    padding-left: 1.5rem;
}
.testimonial-author {
    font-weight: 700;
    margin-top: 1.5rem;
}
.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: #636e72;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color); /* Deep charcoal background */
    color: white;
    border-radius: var(--border-radius);
}
.cta-section .btn-light {
    border-radius: 50px;
    font-weight: 700;
    padding: 12px 30px;
    color: var(--primary-color);
}

/* About Page Sections */
.mission-vision-section {
    background-color: var(--light-gray);
}
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}
.founder-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.founder-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}
.founder-achievements ul {
    list-style: none;
    padding-left: 0;
}
.founder-achievements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}
.founder-achievements li:before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color); /* Gold accent */
    position: absolute;
    left: 0;
    top: 2px;
}
.process-step {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Contact Page */
.contact-info-box {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}
.contact-info-box i {
    color: var(--primary-color);
}

/* =================================================================
   5. FOOTER
================================================================= */
footer {
    background-color: var(--secondary-color); /* Deep Charcoal */
    color: #b2bec3; /* Softer text color */
}
footer h5 {
    color: var(--accent-color); /* Gold headings for a royal touch */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
footer a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #ffffff;
    text-decoration: none;
}
/* =================================================================
   6. UPCOMING BRANDS SECTION
================================================================= */
.upcoming-brand-card {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.upcoming-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.upcoming-brand-card h5 {
    margin-bottom: 0.5rem;
}

.upcoming-brand-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* =================================================================
   7. NAVIGATION LOGO
================================================================= */
.navbar-brand img {
    max-height: 40px; /* Adjust this value to fit your logo's dimensions */
    width: auto;
}