/**
 * EXCELLEDGE TRAINING - MAIN STYLESHEET
 * Version 1.0 | February 2025
 * 
 * This stylesheet implements the complete Excelledge design system
 * including colors, typography, components, and layouts.
 * 
 * Design Philosophy: Modern Minimal + Professional Corporate
 * - Lots of white space
 * - Clean, structured layouts
 * - Professional color palette
 * - Subtle, tasteful interactions
 */

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */

:root {
    /* Brand Colors */
    --color-primary: #1c447f;           /* Excelledge Blue */
    --color-primary-light: #2a5ba8;     /* Lighter blue for gradients */
    --color-secondary: #f6891f;         /* Excelledge Orange */
    --color-secondary-light: #ff9d3d;   /* Lighter orange for gradients */
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;           /* Light backgrounds */
    --color-gray-100: #f3f4f6;          /* Hover backgrounds */
    --color-gray-200: #e5e7eb;          /* Borders */
    --color-gray-400: #9ca3af;          /* Placeholder text */
    --color-gray-600: #666666;          /* Supporting text */
    --color-gray-700: #555555;          /* Body text */
    --color-gray-900: #333333;          /* Dark text */
    --color-black: #1a1a1a;             /* Footer background */
    
    /* Typography */
    --font-family: "Raleway", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Font Sizes */
    --font-size-xs: 0.875rem;           /* 14px */
    --font-size-sm: 1rem;                /* 16px */
    --font-size-base: 1.125rem;          /* 18px */
    --font-size-lg: 1.25rem;             /* 20px */
    --font-size-xl: 1.5rem;              /* 24px */
    --font-size-2xl: 1.75rem;            /* 28px */
    --font-size-3xl: 2rem;               /* 32px */
    --font-size-4xl: 2.5rem;             /* 40px */
    --font-size-5xl: 3rem;               /* 48px */
    --font-size-6xl: 3.5rem;             /* 56px */
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-snug: 1.3;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;
    
    /* Spacing (8px multiples) */
    --spacing-1: 0.5rem;    /* 8px */
    --spacing-2: 1rem;      /* 16px */
    --spacing-3: 1.5rem;    /* 24px */
    --spacing-4: 2rem;      /* 32px */
    --spacing-5: 2.5rem;    /* 40px */
    --spacing-6: 3rem;      /* 48px */
    --spacing-8: 4rem;      /* 64px */
    --spacing-10: 5rem;     /* 80px */
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max-width: 1200px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-900);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
    margin-bottom: var(--spacing-2);
}

h1 {
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-snug);
}

h3 {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-normal);
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
}

p {
    margin-bottom: var(--spacing-2);
    color: var(--color-gray-700);
    line-height: var(--line-height-loose);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--color-secondary);
}

strong, b {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

ul, ol {
    margin-left: var(--spacing-4);
    margin-bottom: var(--spacing-2);
}

li {
    margin-bottom: var(--spacing-1);
    color: var(--color-gray-700);
    line-height: var(--line-height-relaxed);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.section {
    padding: var(--spacing-8) 0;
}

.section-large {
    padding: var(--spacing-10) 0;
}

.text-center {
    text-align: center;
}

.max-width-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-medium {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-2) var(--spacing-4);
    min-height: 80px;
}

.logo {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
	max-width: 250px;
	height: auto;
	display: block;
}
.logo2 {
    max-width: 250px;
    height: auto;
    display: block;
}

.logo-link {
    display: inline-block;
	line-height: 0;
}
.logo:hover {
    color: var(--color-primary-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-4);
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--color-gray-900);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    padding: var(--spacing-1) 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-4);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--spacing-2);
    border-bottom: none;
    border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
    background: var(--color-gray-50);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    line-height: 1.5;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #e57a0f;
	color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 137, 31, 0.3);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 68, 127, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
}

.btn-full-width {
    width: 100%;
    display: block;
}

/* ============================================
   Icons
   ============================================ */

.icon-circle img {
    width: 50px;      /* Adjust size here */
    height: 50px;     /* Keep square */
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: var(--spacing-10) var(--spacing-4);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-2);
    opacity: 0.95;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    color: var(--color-white);
    margin-bottom: var(--spacing-3);
    line-height: var(--line-height-tight);
}

.hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-4);
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
    color: white; /* or #ffffff */
}

.hero .btn {
    margin-top: var(--spacing-2);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem 0;
    text-align: left;
    display: inline-block;
	color: #ffffff;
}

.hero-list li {
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
}

/* ============================================
   PAGE HEADER (Non-Hero)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: var(--spacing-8) var(--spacing-4);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-6);
}

.section-title {
    font-size: var(--font-size-4xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-2);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    font-weight: var(--font-weight-normal);
    margin-bottom: 0;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-4);
    transition: all var(--transition-normal);
}

.card-elevated {
    box-shadow: var(--shadow-md);
}

.card-elevated:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-elevated h3 {
    text-align: center;
}

.card-elevated:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-bordered {
    border: 2px solid var(--color-gray-200);
}

.card-bordered:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.card-accent-left {
    background: var(--color-gray-50);
    border-left: 4px solid var(--color-secondary);
}

.card-accent-left:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-accent-left h3 {
    text-align: center;
}

.card-title {
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-2);
}

.card-text {
    color: var(--color-gray-700);
    line-height: var(--line-height-loose);
}

.card-accent-left h4 {
    text-align: center;
}

/* ============================================
   GRIDS
   ============================================ */

.grid {
    display: grid;
    gap: var(--spacing-4);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ============================================
   TEAM PHOTOS
   ============================================ */
.team-photo {
    width: 120px;           /* Larger than icon circle for better visibility */
    height: 150px;
    border-radius: 50%;     /* Makes it circular */
    overflow: hidden;       /* Crops image to circle */
    margin: 0 auto 1.5rem;  /* Centers it */
    border: 2px solid var(--color-primary);  /* Blue border */
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);  /* Subtle shadow */
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Ensures image fills circle properly */
    display: block;
}

/* ============================================
   ICON CIRCLES
   ============================================ */

.icon-circle-outline {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-2);
    color: var(--color-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-2);
    color: var(--color-white);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
}

.icon-circle-sm {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-2);
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
}

.icon-circle-lg {
    width: 100px;
    height: 100px;
    font-size: var(--font-size-4xl);
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-3);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(28, 68, 127, 0.1);
}

.accordion-header {
    background: var(--color-gray-50);
    padding: var(--spacing-4);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-4);
    transition: background var(--transition-normal);
}

.accordion-header:hover {
    background: var(--color-gray-100);
}

.accordion-header-content {
    flex: 1;
}

.accordion-title {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-1);
    font-weight: var(--font-weight-semibold);
}

.accordion-description {
    color: var(--color-gray-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2);
}

.accordion-icon {
    font-size: var(--font-size-3xl);
    color: var(--color-primary);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content.active {
    max-height: 5000px;
    transition: max-height 0.6s ease-in;
}

.accordion-body {
    padding: var(--spacing-4);
    border-top: 1px solid var(--color-gray-200);
}

.accordion-body h3 {
    margin-top: var(--spacing-4);
    margin-bottom: var(--spacing-2);
}

.accordion-body h4 {
    margin-top: var(--spacing-3);
    margin-bottom: var(--spacing-1);
}

/* ============================================
   CTA BOXES
   ============================================ */

.cta-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    padding: var(--spacing-4);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-4);
}

.cta-box-title {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2);
    font-weight: var(--font-weight-semibold);
}

.cta-box-text {
    color: var(--color-white);
    margin-bottom: var(--spacing-3);
    opacity: 0.95;
}

.cta-box .btn {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: var(--spacing-8) var(--spacing-4);
    text-align: center;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-6);
	margin-bottom: var(--spacing-2);
}

.final-cta h2 {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-2);
}

.final-cta p {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
    opacity: 0.9;
}

.final-cta .btn {
    margin-top: var(--spacing-2);
}

.final-cta a {
    color: white;
    text-decoration: underline;
}

/* ============================================
   CREDIBILITY STRIP
   ============================================ */

.credibility-strip {
    background: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-4);
    margin: var(--spacing-8) 0;
    border-radius: var(--radius-md);
}

.credibility-content {
    display: flex;
    justify-content: center;
    gap: var(--spacing-8);
    flex-wrap: wrap;
}

.credibility-item {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-3);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-1);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-900);
}

.form-label-required::after {
    content: ' *';
    color: #dc2626;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    font-family: var(--font-family);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(28, 68, 127, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    display: none;
    color: #dc2626;
    font-size: var(--font-size-xs);
    margin-top: var(--spacing-1);
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #dc2626;
}

.form-success-message {
    background: #10b981;
    color: var(--color-white);
    padding: var(--spacing-3);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-4);
    display: none;
}

.form-success-message.show {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-6) var(--spacing-4) var(--spacing-2);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-2);
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: var(--spacing-1);
    line-height: var(--line-height-loose);
	width: auto;
}

.footer-section a {
    display: block !important;
    width: fit-content !important;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-section p a {
    display: inline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-4);
    border-top: 1px solid #333333;
    color: #888888;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }

.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }

.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-gray { color: var(--color-gray-600); }

.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }

.font-bold { font-weight: var(--font-weight-bold); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-medium { font-weight: var(--font-weight-medium); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: var(--spacing-2); }
.gap-4 { gap: var(--spacing-4); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
 Icon circles with outline (for "Who We Serve" section) 
	============================================ */
.icon-circle-outline {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--color-primary);  /* Blue outline */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 15px;  /* Space between border and icon */
}

.icon-circle-outline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Optional: Make icons blue instead of original color */
    /*filter: invert(18%) sepia(93%) saturate(1345%) hue-rotate(199deg) brightness(95%) contrast(97%);*/
}

/* If you want smaller outline circles */
.icon-circle-outline.icon-circle-sm {
    width: 60px;
    height: 60px;
    padding: 12px;
}

/* ============================================
   SECTION SUB-NAVIGATION
   ============================================ */

.section-nav {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    z-index: 999;
    width: 100%;
}

.section-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 0;
	justify-content: center;
}

.section-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #555555;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.section-nav a:hover {
    color: #1c447f;
    background: #ffffff;
    border-bottom-color: #f6891f;
}

.section-nav a.active {
    color: #1c447f;
    background: #ffffff;
    border-bottom-color: #1c447f;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-nav-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .section-nav-container::-webkit-scrollbar {
        display: none;
    }
    
    .section-nav a {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   CONTACT FORM MESSAGES
   ============================================ */

.form-message {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    transition: opacity 0.5s ease;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-success::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 0.5rem;
}

.form-message-error::before {
    content: "✗ ";
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============================================
   CONSULTANT CARDS (Team Page)
   Add this to the END of main.css
   ============================================ */
 
/* Consultant Grid - 3 per row, responsive */
.consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
 
/* Individual Consultant Card */
.consultant-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
 
.consultant-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #f6891f;
}
 
/* Photo Placeholder (until real photos added) */
.consultant-photo-placeholder {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}
 
/* When you have actual photos, use this class instead of placeholder:
   Replace consultant-photo-placeholder div with:
   <img src="images/team/consultant-name.jpg" alt="Name" class="consultant-photo">
*/
.consultant-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #f6891f;
}
 
/* Consultant Name */
.consultant-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c447f;
    margin-bottom: 0.5rem;
}
 
/* Consultant Title/Specialization */
.consultant-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f6891f;
    margin-bottom: 1rem;
    line-height: 1.4;
}
 
/* Consultant Bio */
.consultant-bio {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
 
/* LinkedIn Icon (optional) */
.consultant-linkedin {
    display: inline-block;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}
 
.consultant-linkedin:hover {
    opacity: 0.7;
}
 
/* ============================================
   RESPONSIVE - CONSULTANT CARDS
   ============================================ */
 
/* Tablets */
@media (max-width: 968px) {
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
 
/* Mobile */
@media (max-width: 640px) {
    .consultant-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultant-card {
        padding: 1.5rem;
    }
    
    .consultant-photo,
    .consultant-photo-placeholder .icon-circle {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   FOOTER QUICK LINKS - SUB-NAVIGATION INDENT
   ============================================ */

.footer-sublink {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-sublink:before {
    content: "└ ";
    margin-right: 0.25rem;
    opacity: 0.5;
}

.footer-sublink:hover:before {
    opacity: 1;
}

/* ============================================
   FOOTER SOCIAL MEDIA ICONS
   ============================================ */

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /*background-color: #1c447f;*/
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    /*background-color: #f6891f;*/
    transform: translateY(-3px);
    /*box-shadow: 0 4px 8px rgba(246, 137, 31, 0.3);*/
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}
```

---

## 🔗 **YOUR SOCIAL MEDIA URLs**

**You'll need to update these:**

**LinkedIn:**
```
https://www.linkedin.com/company/excelledge
```
(Replace with your actual LinkedIn company page URL)

**Twitter/X:**
```
https://twitter.com/excelledge_in
```
OR
```
https://x.com/excelledge_in

/* ============================================
   END OF MAIN STYLESHEET
   ============================================ */