/* ==========================================================================
   EB-5 PROGRAM STATIC STYLES
   ========================================================================== */



/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Container & Row Alignment (Bootstrap Fallbacks) */
.container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Titles */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.25rem;
    color: #d2a527; /* Professional Navy */
    position: relative;
    padding-bottom: 15px;
    margin-top: 0;
}

.section-title.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c5a059; /* Elegant Gold */
}
.bg-dark h4{
color:#c5a059 !important;
}
.cta-section h2 {
	color: #fff !important;
}
/* ==========================================================================
   COMPONENT STYLES
   ========================================================================== */

/* Custom List (Investment Requirements) */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.custom-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #c5a059;
    font-weight: bold;
}

/* Feature Boxes (Benefits Section) */
.feature-box {
    padding: 35px 25px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #c5a059;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: #002d62;
    margin-bottom: 15px;
}

/* Investment Process Steps */
.process-step h4 {
    color: #002d62;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: #666666;
}

/* Background Utilities */
.bg-light {
    background-color: #f8f8f8 !important;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.bg-primary {
    background-color: #ae8416 !important;
}

/* Text Colors */
.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

/* Call to Action (CTA) Button */
.cta-section {
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-light {
    display: inline-block;
    background-color: #ffffff;
    color: #002d62;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.btn-light:hover {
    background-color: #c5a059;
    color: #ffffff;
}

/* Spacing Helpers */
.mt-4 {
    margin-top: 1.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .col-md-3, .col-md-4, .col-md-6 { margin-bottom: 30px; }
}

@media (max-width: 576px) {
    .section-title h2 { font-size: 1.75rem; }
    .cta-section h2 { font-size: 2rem; }
}
.rounded-img {
    border-radius: 15px;
}

/* ===== PROJECT CARD ===== */

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
    transition:0.4s;
    background:#000;
}

/* Image */
.project-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.6s;
    display:block;
}

/* ===== OVERLAY ===== */
.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.15) 65%,
        transparent 100%
    );
    display:flex;
    align-items:flex-end;
}

/* ===== CONTENT BOX ===== */
.project-content{
    padding:30px;
    width:100%;
}

/* Title */
.project-content h4{
    color:#f5c542;   /* Brighter gold */
    font-size:22px;
    font-weight:600;
    margin-bottom:6px;
}

/* Description */
.project-content p{
    color:#f1f1f1;
    font-size:14.5px;
    line-height:1.5;
    margin:0;
    opacity:0.9;
}

/* ===== HOVER EFFECT ===== */

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(0,0,0,0.65);
}

.project-card:hover img{
    transform:scale(1.08);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.project-card img{
    height:260px;
}

.project-content{
    padding:22px;
}

}

/* Button Style */
.project-btn{
    display:inline-block;
    margin-top:14px;
    padding:8px 20px;
    border-radius:6px;
    background:#d4af37;   /* Gold */
    color:#000;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

/* Hover */
.project-btn:hover{
    background:#fff;
    color:#000;
}

.project-content{
    position:relative;
    z-index:2;
}
.table th{
    width:35%;
    background:#f5f5f5;
}