/* ============================================================================
   GEMINI WEB PAGE - MASTER STYLESHEET
   Cleaned & Organized | All Pages Consistent Formatting
   Version 2.0 - Optimized CSS with No Conflicts
   ============================================================================ */

/* ============================================================================
   1. RESET & GLOBAL BASE STYLES
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background: #f8fafc;
    color: #333;
}

/* Global heading styles */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1, h2, h3 {
    color: #1e4fa8;
    margin: 0.75rem 0 0.35rem;
}

/* Hero/Page title - always centered */
.page-hero h1,
.hero-content h1 {
    text-align: center;
}

/* Body section headings - left aligned for readability */
.content-section h2,
.service-section h2,
.service-detail h2 {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Default h3 - left aligned unless in card/pillar context */
h3 {
    text-align: left;
}

/* Service pillars and cards - center their h3s */
.service-pillar h3,
.card h3,
.advantage-block h2,
.affiliate-card h3 {
    text-align: center;
}

/* Global paragraph styles */
p {
    margin: 0.75rem 0;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

/* Global list styles */
ul, ol {
    list-style: none;
    text-align: left;
}

/* Color accent class */
.highlight-value {
    color: #f7b32d;
    font-weight: 700;
}

/* ============================================================================
   2. NAVBAR & HEADER STYLES
   ============================================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    height: 40px;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar nav a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #0056b3;
}

/* CTA Button (Gold accent button in navbar) */
.cta-button {
    background-color: #f7b32d;
    color: #1a1a1a;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #e09900;
}

/* ============================================================================
   3. BREADCRUMBS NAVIGATION
   ============================================================================ */

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%;
    background-color: #e9ecef;
    font-size: 0.9em;
    border-bottom: 1px solid #ddd;
}

.breadcrumbs-container a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
}

.breadcrumbs-container a:hover {
    text-decoration: underline;
}

.breadcrumbs-container span {
    color: #6c757d;
    font-weight: 600;
}

/* ============================================================================
   4. HERO SECTIONS (Homepage & Internal Pages)
   ============================================================================ */

/* Homepage Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('assets/img/Flyer Background 4.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* Internal Page Hero */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('assets/img/Flyer Background 4.jpg') center/cover no-repeat;
    padding: 80px 20px;
    min-height: 250px;
    text-align: center;
    position: relative;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.page-hero h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 20px auto 0;
    color: white;
}

/* CTA Button (Primary - White version for heroes) */
.primary-cta {
    display: inline-block;
    background-color: #fff;
    color: #0056b3;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
}

.primary-cta:hover {
    background-color: #ddd;
}

/* CTA Button Small (for service cards) */
.primary-cta-small {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.primary-cta-small:hover {
    background-color: #004494;
}

/* ============================================================================
   5. CONTENT SECTIONS & LAYOUTS
   ============================================================================ */

/* Main container for all content sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Standard content section */
.content-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.content-section:last-child {
    border-bottom: none;
}

/* Callout/Emphasis sections */
.callout-section {
    background-color: #e6f0ff;
    padding: 40px 5%;
    text-align: left;
    border-radius: 8px;
    margin: 40px auto;
}

.callout-box h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* CTA Section - standardized styling */
.cta-section {
    background-color: #f0f4f8;
    padding: 60px 5%;
    text-align: left;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1e4fa8;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-multi {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ============================================================================
   PROFESSIONAL VISUAL ENHANCEMENTS & SECTION DIVIDERS
   ============================================================================ */

/* Section divider - subtle gold accent separator */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f7b32d 20%, #f7b32d 80%, transparent);
    margin: 3rem auto;
    width: 150px;
}

/* Accent highlight for key statements */
.accent-highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.accent-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f7b32d;
}

/* Value/metric block styling */
.value-block {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0ff 100%);
    border-left: 4px solid #f7b32d;
    padding: 20px;
    border-radius: 4px;
    margin: 25px auto;
    max-width: 600px;
}

.value-block strong {
    color: #1e4fa8;
    font-size: 1.15em;
}

/* Secondary CTA button variant */
.content-split {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.content-split .split-text {
    flex: 2;
}

.content-split .split-image {
    flex: 1;
    text-align: center;
}

.content-split img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-split.reverse-split {
    flex-direction: row-reverse;
}

/* Two-column text and image layout */
.text-and-image {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-and-image .text-content {
    flex: 1;
}

.text-and-image .image-placeholder {
    flex: 1;
    min-width: 300px;
}

.text-and-image .image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   6. HOME PAGE SPECIFIC STYLES
   ============================================================================ */

/* INVX Overview section */
.invx-overview {
    padding: 60px 5%;
    text-align: left;
}

.invx-overview h2 {
    font-size: 2em;
}

.invx-overview p {
    max-width: 950px;
    margin: 1.5rem 0;
    text-align: left;
}

/* Leadership preview */
.invx-leadership-preview {
    padding: 60px 5%;
    text-align: left;
}

.invx-leadership-preview h3 {
    font-size: 2em;
}

.invx-leadership-preview p {
    max-width: 950px;
    margin: 1.5rem 0;
    text-align: left;
}

/* Content preview (Services showcase) */
.content-preview {
    padding: 40px 5%;
    text-align: left;
}

.content-preview h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: left;
}

.content-preview p {
    max-width: 950px;
    margin: 1rem 0;
    text-align: left;
}

/* Service cards container */
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 20px;
}

/* Individual service card */
.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0056b3;
    transition: transform 0.3s;
    text-align: left;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.card p {
    text-align: left;
    line-height: 1.6;
}

.card ul, .card li {
    text-align: left;
    margin-left: 20px;
}

.card li {
    list-style: disc;
    margin-bottom: 8px;
}
    max-width: none;
    padding: 0;
}

/* Secondary CTA Button */
.secondary-cta {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #0056b3;
    color: #0056b3;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.secondary-cta:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Secondary CTA Small (for affiliate cards) */
.secondary-cta-small {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 15px;
    border: 1px solid #0056b3;
    color: #0056b3;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s;
}

.secondary-cta-small:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Buttons (generic) */
.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #0056b3;
    color: #0056b3;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Solid blue secondary CTA for quick-links */
.secondary-cta-blue {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #0056b3;
    transition: background-color 0.3s, transform 0.1s;
}

.secondary-cta-blue:hover {
    background-color: #004494;
    color: #fff;
}

/* ============================================================================
   7. STYLED LISTS (Checkmark bullets)
   ============================================================================ */

.styled-list {
    list-style: none;
    text-align: left;
    max-width: 950px;
    margin: 1rem auto;
    padding: 0;
}

.styled-list li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li i {
    color: #0056b3;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

/* Compact styled list */
.styled-list-compact {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.styled-list-compact li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
    padding-left: 20px;
    position: relative;
}

.styled-list-compact li i {
    color: #0056b3;
    margin-right: 10px;
    position: absolute;
    left: 0;
}

/* Mini styled list */
.styled-list-mini {
    list-style: none;
    text-align: left;
    max-width: 90%;
    margin: 15px auto 0;
    padding: 0;
}

.styled-list-mini li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95em;
}

.styled-list-mini li::before {
    content: "";
    display: none;
}

/* Check list - standardized across all pages */
.styled-list-check {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 950px;
    margin: 1rem auto;
}

.styled-list-check li {
    margin-bottom: 15px;
    font-size: 0.95em;
    padding-left: 30px;
    position: relative;
}

.styled-list-check i {
    color: #0056b3;
    margin-right: 0;
    position: absolute;
    left: 0;
}

/* ============================================================================
   8. ABOUT PAGE SPECIFIC STYLES
   ============================================================================ */

/* Director/Profile Callout Section */
.director-profile-callout {
    background-color: #f7f9fc;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.profile-summary {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

.profile-text {
    flex: 2;
}

.profile-details {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f7b32d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.profile-details .detail-title {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.2em;
}

.profile-details-full {
    margin-top: 30px;
}

/* Profile image box */
.profile-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo-circular {
    border-radius: 50%;
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Affiliate name highlight */
.affiliate-name-highlight {
    color: #0056b3;
    font-weight: 600;
}

/* ============================================================================
   9. LEADERSHIP PAGE SPECIFIC STYLES
   ============================================================================ */

.leadership-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.leadership-profile .profile-image {
    flex: 0 0 300px;
    max-width: 100%;
    text-align: center;
    padding-top: 10px;
}

.leadership-profile .profile-image img {
    border-radius: 50%;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.leadership-profile .profile-details {
    flex: 1;
}

.leadership-profile .profile-details h2 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.leadership-profile .profile-details h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.social-links-profile {
    margin-top: -10px;
    margin-bottom: 20px;
}

.social-icon-large {
    font-size: 2.5em;
    color: #0056b3;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon-large:hover {
    color: #004494;
}

/* ============================================================================
   10. ADVANTAGES PAGE SPECIFIC STYLES
   ============================================================================ */

.advantages-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
    margin: 2rem 0;
}

.advantages-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.advantages-section ul,
.advantages-section li {
    text-align: left;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 40px;
}

.advantage-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 4px solid #0056b3;
}

.advantage-block:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.advantage-icon {
    font-size: 3em;
    color: #0056b3;
    margin-bottom: 15px;
}

.advantage-block h2 {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
}

/* ============================================================================
   11. SERVICE PAGES SPECIFIC STYLES
   ============================================================================ */

.service-intro {
    padding: 60px 5%;
    text-align: left;
}

.service-intro h2 {
    text-align: left;
}

.service-intro p {
    max-width: 950px;
    margin: 1.5rem 0;
    text-align: left;
}

/* Service sections - consistent styling */
.service-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section h2 {
    text-align: left;
    font-size: 2em;
    margin: 1.5rem 0 0.75rem;
}

.service-section h3 {
    text-align: left;
    font-size: 1.3em;
    margin: 1.5rem 0 0.75rem;
    color: #0056b3;
}

.service-section p {
    max-width: 950px;
    margin: 1rem 0;
    text-align: left;
}

/* Service detail sections */
.service-detail {
    text-align: left;
}

.service-detail h2 {
    font-size: 2em;
    margin: 1rem 0 0.5rem;
    text-align: left;
}

.service-detail h3 {
    font-size: 1.3em;
    margin: 1rem 0 0.5rem;
    text-align: left;
    color: #0056b3;
}

.service-detail p {
    max-width: 950px;
    margin: 1rem 0;
    font-size: 1em;
    text-align: left;
}

/* Service split (two pillars) */
.service-split {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.service-pillar {
    flex: 1;
    min-width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-pillar h3 {
    color: #0056b3;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-icon-small {
    font-size: 1.2em;
    margin-right: 10px;
}

.centered-cta {
    margin-top: 30px;
    display: inline-block;
}

/* Alternative two-column layout for complex projects */
.columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.column {
    flex: 1;
    min-width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.column h2 {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 20px;
    margin-top: 0;
}

.column p {
    margin-bottom: 15px;
    max-width: 100%;
}

.column ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.column li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.column strong {
    color: #1e4fa8;
    font-weight: 700;
}

/* Services Grid (Services Overview Page) */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    align-items: stretch;
    margin-top: 50px;
}

.services-grid h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

/* Service Card Container */
.service-card_container {
    flex: 0 0 350px;
    max-width: 350px;
    background-color: #ffffff;
    border: 1px solid #0056b3;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.service-card_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid #0056b3;
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card p {
    text-align: left;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
    text-align: left;
}

.service-icon-large {
    font-size: 3.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.service-icon-big {
    font-size: 3.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.service-card-full {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #0056b3;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card-full h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card-full p {
    margin-bottom: 20px;
    font-size: 0.95em;
    min-height: 40px;
}

.service-card-full .styled-list-mini {
    text-align: left;
    margin-bottom: 20px;
}

/* Service Overview Grid */
.service-overview-grid {
    text-align: center;
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-overview-grid h2 {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

/* ============================================================================
   12. AFFILIATIONS PAGE SPECIFIC STYLES
   ============================================================================ */

.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.affiliate-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #0056b3;
    transition: transform 0.3s;
}

.affiliate-card:hover {
    transform: translateY(-5px);
}

.affiliate-card h3 {
    font-size: 1.3em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.affiliate-icon {
    font-size: 3.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.affiliate-cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.affiliate-card h4 {
    font-size: 1.1rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.affiliate-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Secondary Services Section */
.secondary-services {
    text-align: center;
    padding: 60px 0;
    background-color: #f4f7f6;
}

/* ============================================================================
   13. CONTACT PAGE SPECIFIC STYLES
   ============================================================================ */

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-top: 40px;
}

.contact-form-container {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-container {
    flex: 1;
    padding: 30px 0;
}

.contact-form-container h2,
.contact-info-container h2 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 1.6em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-info-container .info-block {
    margin-bottom: 30px;
}

.contact-info-container .info-icon {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 10px;
}

.contact-info-container .detail {
    font-weight: 600;
    color: #333;
}

.social-links-contact {
    margin-top: 30px;
    text-align: left;
}

/* ============================================================================
   13.5 SVG DIAGRAM STYLING
   ============================================================================ */

.svg-diagram {
    margin: 40px auto;
    max-width: 950px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 60px;
    margin-top: 80px;
}

.content-section .svg-diagram {
    margin-top: 140px;
}

.svg-diagram svg {
    width: 100%;
    height: auto;
}

/* Service cards container (Services overview page) */
.service-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .service-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .service-cards-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   14. FOOTER STYLES (Enhanced with Gradient)
   ============================================================================ */

.footer {
    background: linear-gradient(135deg, #1e4fa8, #2563eb);
    color: white;
    text-align: center;
    padding: 3rem 5%;
    font-size: 0.9em;
}

.footer p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.social-icon {
    font-size: 1.5rem;
    color: #f7b32d;
}

/* ============================================================================
   15. RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================================================ */

@media (max-width: 900px) {
    /* Service split - stack columns */
    .service-split {
        flex-direction: column;
    }

    /* Contact layout - stack columns */
    .contact-layout {
        flex-direction: column;
    }

    /* Leadership profile - center alignment */
    .leadership-profile {
        flex-direction: column;
        align-items: center;
    }

    .leadership-profile .profile-image {
        flex: auto;
        margin-bottom: 20px;
    }

    .leadership-profile .profile-details {
        text-align: center;
    }

    .leadership-profile .profile-details .styled-list {
        text-align: left;
    }

    /* About/Content split - stack columns */
    .content-split,
    .content-split.reverse-split,
    .profile-summary {
        flex-direction: column;
    }

    .content-split .split-text,
    .content-split .split-image,
    .profile-text,
    .profile-details {
        flex: 1 1 100%;
        width: 100%;
    }

    .profile-details {
        margin-top: 20px;
        border-left: none;
        border-top: 4px solid #f7b32d;
    }

    /* Text and image layout */
    .text-and-image {
        flex-direction: column;
    }

    /* Content section padding */
    .content-section {
        padding: 40px 3%;
    }
}

@media (max-width: 768px) {
    /* Navbar - stack vertically */
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .navbar nav {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .navbar nav a {
        margin: 5px 0;
    }

    /* Card container - single column */
    .card-container {
        grid-template-columns: 1fr;
    }

    /* Hero text - reduce size */
    .hero-content h1 {
        font-size: 2em;
    }

    .page-hero h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .page-hero p {
        font-size: 1em;
    }

    /* Service cards - adjust */
    .service-card_container {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    /* Advantages/Affiliations grid - single column */
    .advantages-grid,
    .affiliations-grid {
        grid-template-columns: 1fr;
    }

    /* Two-column layout - stack on mobile */
    .service-split,
    .columns {
        display: block;
    }

    .service-pillar,
    .column {
        margin-bottom: 30px;
    }
}

/* ============================================================================
   END OF STYLESHEET - All Formatting Unified & Consistent Across Pages
   ============================================================================ */

