/* Custom Global Variables */
:root {
    --primary-color: #e67e22; /* Vibrant accent representing giving & warmth */
    --secondary-color: #2c3e50;
    --dark-color: #1a252f;
    --light-color: #f8f9fa;
}

/* Global Setup Modifications */
body {
    font-family: 'Poppins', sans-serif;
    color: #4f5f6f;
    overflow-x: hidden;
}

.text-primary-custom { 
    color: var(--primary-color); 
}

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

.bg-secondary-custom { 
    background-color: var(--secondary-color); 
}

/* Fixed Header Navbar Styling */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
/*
.navbar a:hover{
   color: black !important;
}*/

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color) !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

/* Hero Section Media Splash */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(26, 37, 47, 0.9)), 
                url('../img/16962.jpg') no-repeat center center/cover;
    padding: 160px 0 120px 0;
    color: #fff;
}

/* Content Segment Layout Bounds */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.max-width-600 {
    max-width: 600px;
}

/* Dynamic Pillars Feature Cards */
.feature-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Custom Interactive UI Elements */
.btn-custom-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Verified Verification Contact Details Card */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Input Form Controls Overrides */
.form-sizing {
    padding: 10px 15px;
}


/* Multi-Column Footer Specific Classes */
.tracking-wider {
    letter-spacing: 1px;
}

.footer-nav-links a {
    transition: color 0.2s ease-in-out;
}

.footer-nav-links a:hover {
    color: var(--primary-color) !important;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.x-small {
    font-size: 0.75rem;
}

/*
.hero-section {
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(44, 62, 80, 0.9)), 
                url('img/16962.jpg') no-repeat center center/cover;
    padding: 180px 0 140px 0;
    min-height: 80vh;
}
*/