/* style.css */
:root {
  /* YOUR SPECIFIC COLORS */
  --bg-main: #F0F9FF;
  --bg-white: #FFFFFF;

  --text-primary: #1E293B;  /* Headings */
  --text-body: #475569;     /* Body text */
  --text-light: #CBD5E1;    /* Subtle text */

  --brand-red: #cf2124;   /* Primary Buttons/Accents */
  --brand-green-dark: #059669; /* Hover States */
  --brand-blue: #cf2124;    /* Secondary/Links */
  --brand-dark: #0F172A;    /* Footer/Deep Accents */
}

/* ===== BASE ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
}

.text-muted { color: var(--text-body) !important; }
.text-brand-blue { color: var(--brand-blue) !important; }
.text-brand-green { color: var(--brand-green) !important; }

/* ===== NAVBAR (Your Specific Rules) ===== */
.navbar { 
    padding-top: 20px; 
    background-color: transparent; 
}
.navbar-brand { 
    font-weight: bold; 
    font-size: 1.5rem; 
    color: var(--brand-blue) !important; 
}
.nav-link { 
    color: var(--text-primary) !important; 
    margin-right: 15px; 
    font-weight: 600; 
    font-size: 0.95rem;
}
.nav-link:hover { 
    color: var(--brand-blue) !important; 
}
/* --- Innov8 Navbar Styles --- */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 50px; /* Adjust based on your actual logo file */
}

.nav-link-custom {
    color: #0F172A !important; /* Dark Navy Text */
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #33a323 !important; /* Brand Green on Hover */
}

.btn-nav-call {
    background-color: #33a323; /* Brand Green */
    color: white !important;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-nav-call:hover {
    background-color: #28801b; /* Darker Green */
    color: white;
}
/* ===== BUTTONS ===== */
.btn-brand-green {
    background-color: var(--brand-green);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-brand-green:hover {
    background-color: var(--brand-green-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-brand-outline {
    background-color: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-brand-outline:hover {
    background-color: var(--brand-blue);
    color: white;
}

/* ===== HERO SECTIONS ===== */
.hero-header {
    background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  color: white;
}

/* ===== INDUSTRY CARDS ===== */
.industry-card {
    background-color: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--brand-blue);
}
.industry-icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    display: inline-block;
}

/* ===== INSIGHTS/BLOG SECTION ===== */
.blog-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}
.blog-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

 /* --- Footer --- */
        footer {
            background-color: var(--brand-dark); /* Deep Navy */
            color: #94A3B8;
            padding: 80px 0;
        }
        footer h5 { color: white; margin-bottom: 25px; font-weight: 600; }
        footer a { color: #94A3B8; text-decoration: none; transition: 0.2s; }
        footer a:hover { color: var(--brand-green); }
        footer .form-control { background: rgba(255,255,255,0.05); border: 1px solid #334155; color: white; }
        footer .btn-light { background: var(--brand-green); color: white; border: none; }
        footer .btn-light:hover { background: #059669; }
.social-icon {
    font-size: 1.2rem;
    margin-right: 20px;
    color: white;
}
  /* Blog Specific Styles */
        .blog-card {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }
        .blog-img-container {
            height: 200px;
            overflow: hidden;
            background-color: #f1f5f9;
        }
        .blog-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }
        .blog-card:hover .blog-img-container img {
            transform: scale(1.05);
        }
        .blog-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        .blog-link {
            margin-top: auto;
            color: var(--brand-green);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .blog-link:hover { color: var(--brand-green-dark); }

        /* Sidebar Widgets */
        .sidebar-widget {
            background: white;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--brand-dark);
            border-bottom: 2px solid var(--brand-blue);
            padding-bottom: 10px;
            display: inline-block;
        }
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .category-list li {
            margin-bottom: 10px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 10px;
        }
        .category-list a {
            text-decoration: none;
            color: var(--text-body);
            display: flex;
            justify-content: space-between;
            transition: 0.2s;
        }
        .category-list a:hover {
            color: var(--brand-blue);
            padding-left: 5px;
        }
        
        /* Subscribe Widget */
        .subscribe-widget {
            background-color: var(--brand-dark);
            color: white;
        }
        .subscribe-widget .widget-title {
            color: white;
            border-color: var(--brand-green);
        }
        .subscribe-widget .form-control {
            border: 1px solid #334155;
            background: #1e293b;
            color: white;
        }
        .subscribe-widget .form-control:focus {
            border-color: var(--brand-green);
            box-shadow: none;
        }
         .resource-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--brand-blue);
        }
        .resource-icon-wrapper {
            width: 80px;
            height: 80px;
            background-color: rgba(14, 165, 233, 0.1);
            color: var(--brand-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }
        .resource-link {
            text-decoration: none;
            color: inherit;
        }
                .support-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 35px;
            height: 100%;
            transition: 0.3s;
            text-align: center;
        }
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.06);
            border-color: var(--brand-green);
        }
        .support-icon {
            width: 70px;
            height: 70px;
            background-color: var(--bg-main);
            color: var(--brand-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        .us-badge {
            background-color: #ef4444; /* Red for US Flag reference */
            color: white;
            font-size: 0.8rem;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }
        .contact-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: 0.3s;
        }
        .contact-card:hover {
            border-color: var(--brand-blue);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--brand-green);
            margin-bottom: 20px;
        }
        .form-section {
            background-color: white;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }