/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

:root {
    --primary-blue: #1a2b4a;
    /* Dark Blue */
    --accent-gold: #f9c846;
    /* Gold/Yellow */
    --light-gray: #f4f4f4;
    --text-dark: #333;
    --text-white: #fff;
    --accent-red: #e63946;
    /* Theme Red */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.08);
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    margin: 0 0 15px 0;
    font-weight: 700;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #e0b030;
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    width: auto;
    /* Changed from 100% to auto */
    display: inline-block;
    /* Changed from block */
    min-width: 150px;
    text-align: center;
    margin-top: 15px;
}

.btn-primary-small {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 10px 20px;
    /* Matched to btn-red */
    font-size: 0.95rem;
    /* Matched to btn-red */
    border-radius: 5px;
    /* Matched to btn-red */
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary-small:hover {
    background-color: #e0b030;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-red {
    background-color: var(--accent-red);
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-red:hover {
    background-color: #c92a36;
    transform: translateY(-2px);
}

.btn-yellow {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    display: inline-block;
}

.btn-yellow:hover {
    background-color: #e0b030;
    transform: translateY(-2px);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(249, 200, 70, 0.4);
}

/* Premium Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}



/* Header */
.main-header {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 0;
    /* Removed padding to let nav take full height if needed */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    /* Reduced vertical padding */
    max-width: 1400px;
    /* Increased width to fit more items */
    margin: 0 auto;
    margin: 0 auto;
    width: 100%;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.logo-text {
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.2;
    margin-top: 5px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    display: block;
    /* Ensure it behaves well with sibling text */
    margin-bottom: 5px;
}

.branding-col .logo-text {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-align: left;
    /* Footer aligns left usually */
    display: block;
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

/* Nav & Dropdowns */
.main-nav ul {
    display: flex;
    gap: 10px;
    /* Reduced gap from 20px */
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    position: relative;
    padding: 10px 0;
}

.main-nav a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.85rem;
    /* Slightly smaller font */
    display: block;
    padding: 5px 8px;
    /* Reduced horizontal padding */
    white-space: nowrap;
    /* Prevent text wrapping inside links */
}

.main-nav a:hover {
    color: var(--accent-gold);
}

.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    /* Slightly wider for long course names */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-top: 3px solid var(--accent-gold);
    border-radius: 0 0 4px 4px;
}

.main-nav .dropdown li {
    padding: 0;
    border-bottom: 1px solid #eee;
}

.main-nav .dropdown li:last-child {
    border-bottom: none;
}

.main-nav .dropdown a {
    color: var(--primary-blue);
    padding: 10px 15px;
    font-size: 0.85rem;
    transition: background 0.2s;
    white-space: normal;
    /* Allow wrapping in dropdowns if needed */
}

.main-nav .dropdown a:hover {
    background-color: #f4f4f4;
    color: var(--primary-blue);
}

/* Show dropdown on hover */
.main-nav li:hover .dropdown {
    display: block;
}

.main-nav i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s;
}

.main-nav li:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 43, 74, 0.7), rgba(26, 43, 74, 0.7)), url('https://images.unsplash.com/photo-1542884748-2b87b36c6b90?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 100px 0;
    text-align: left;
}

/* VAM Section Refinements */
.vam-section {
    background: linear-gradient(135deg, #a81c1c 0%, #d32f2f 100%);
    /* Rich medical red gradient */
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vam-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.vam-section h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vam-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.vam-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.vam-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.vam-image-container img:hover {
    transform: translateY(-5px);
}

.vam-text-container {
    flex: 1;
    min-width: 300px;
}

.vam-text-container h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vam-text-container p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.vam-location {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 30px;
}

.vam-location strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
}

/* Expert Training & About Sidebar Refinements */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
}

.about-content img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
}

.about-content .caption {
    font-style: italic;
    color: #666;
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
}

.about-sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.about-sidebar h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.podcast-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.podcast-feature img:first-child {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.podcast-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e6ac00 100%);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.podcast-cta:hover {
    transform: scale(1.02);
}

.podcast-cta h4 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
}

.podcast-cta p {
    font-size: 0.95rem;
    margin: 8px 0 0 0;
    color: var(--primary-blue);
    font-weight: 600;
    opacity: 0.9;
}


/* Fallback if no image */
.hero-section {
    background-color: var(--primary-blue);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--accent-gold);
    display: block;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Bar */
.stats-bar {
    background-color: #0f1c33;
    color: var(--text-white);
    padding: 20px 0;
    border-bottom: 4px solid var(--accent-gold);
    /* Added yellow line */
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* Steps Section */
.steps-section {
    background-color: #f4f6f9;
    padding: 60px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card:nth-child(odd) {
    border-top: 4px solid var(--accent-gold);
}

.step-card:nth-child(even) {
    border-top: 4px solid var(--accent-red);
}

.step-card p {
    flex-grow: 1;
    /* Pushes button to bottom */
    margin-bottom: 20px;
}

.step-card .btn-secondary {
    width: auto;
    align-self: flex-start;
    margin-top: auto;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    background: var(--accent-gold);
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

/* Info Grid Section */
.info-grid-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
}

.info-card i {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card .subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.info-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.section-title-left {
    color: #e63946;
    /* Matching "EXPERT TRAINING" red */
    font-size: 1.8rem;
    text-transform: uppercase;
}

.about-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.about-content caption {
    font-style: italic;
    color: var(--primary-blue);
    text-align: center;
    display: block;
}

.about-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.podcast-feature {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.podcast-feature img {
    border-radius: 5px;
}

.podcast-cta {
    background: var(--accent-gold);
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

/* Courses Section */
.courses-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-details h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.course-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.course-details .btn-primary-small {
    align-self: flex-start;
    margin-top: auto;
}

.view-all-courses {
    text-align: center;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background-color: #8b0000;
    /* Dark Red background from image */
    color: white;
}

.products-section .section-title {
    color: white;
    text-align: left;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-col {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-col img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    flex-grow: 1;
    /* Helps balance height */
}

.product-col p {
    margin-bottom: 20px;
}

.product-col .btn-secondary {
    margin-top: auto;
    /* Pushes to bottom */
}

.product-col img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

/* Tailored CTA */
.tailored-cta {
    background-color: black;
    color: var(--accent-gold);
    text-align: center;
    padding: 60px 0;
}

.tailored-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tailored-cta h3 {
    color: white;
    margin-bottom: 30px;
}

/* Footer style */
.main-footer {
    background: linear-gradient(135deg, #0f1c33 0%, #1a2b4a 100%);
    color: #e0e0e0;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1.2fr 1.5fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Notice Bar Styles */
.notice-bar {
    background-color: #da1c2b;
    /* Med Red */
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 1001;
}

.notice-bar a {
    color: #ffcc00;
    /* Gold/Yellow */
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

.notice-bar a:hover {
    color: #ffffff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.contact-col i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px;
}

.branding-col p {
    margin: 20px 0;
}

/* Google stars removed as per request */

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 200, 70, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom a {
    color: #ccc;
    margin: 0 10px;
}

/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(26, 43, 74, 0.9), rgba(26, 43, 74, 0.9));
    /* Use same bg or different */

    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-gold);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-content h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mission-content p {
    margin-bottom: 15px;
    color: #555;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Core Values */
.values-section {
    padding: 80px 0;
    background-color: #f4f6f9;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #eee;
    padding-bottom: 20px;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.team-member h3 {
    margin: 15px 0 5px;
    color: var(--primary-blue);
}

.team-member .role {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member .bio {
    padding: 0 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Custom Locations Grid for About Page */
.location-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 200, 70, 0.2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.location-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.location-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.location-link {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.location-link:hover {
    gap: 12px;
    text-decoration: underline;
}

.location-link::after {
    content: '\f08e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.location-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.location-details ul {
    list-style: none;
    margin-top: 30px;
}

.location-details ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-details ul li i {
    color: var(--accent-gold);
    width: 25px;
}

.clients-list h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.client-logos img {
    background: white;
    padding: 10px;
    border-radius: 4px;
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {

    .mission-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* All Courses Page Styles */
.courses-list-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Match E-Learning styling for Standard courses (Gold Theme) */
.courses-list-section .course-card {
    border-top: 4px solid var(--accent-gold);
}

.elearning-section {
    padding: 80px 0;
    background-color: #f4f6f9;
}

.elearning-section .section-title {
    margin-bottom: 40px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.elearning-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

.elearning-section .course-card {
    border-top: 4px solid var(--accent-red);
}

.elearning-section .course-details h3 {
    color: var(--primary-blue);
}

.elearning-section .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.courses-list-section .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================
   ANIMATIONS & VISUAL POLISH (NEW)
   ========================================= */

/* 1. Global Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.step-card,
.info-card,
.course-card,
.vam-section .container {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Hidden initially, revealed by animation */
}

/* Stagger animations for cards so they don't all appear at once */
.step-card:nth-child(1) {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) {
    animation-delay: 0.4s;
}

.step-card:nth-child(3) {
    animation-delay: 0.6s;
}

.info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.info-card:nth-child(2) {
    animation-delay: 0.4s;
}

.info-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* 2. 3D Card Hover Effects */
.step-card,
.course-card,
.info-card,
.product-col {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.step-card:hover,
.course-card:hover,
.info-card:hover,
.product-col:hover {
    transform: translateY(-10px) scale(1.02);
    /* Lift and slight zoom */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Deeper shadow */
    z-index: 10;
}

/* 3. Button Pulse & Press Effect */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 200, 70, 0.4);
    /* Gold glow */
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 4. Image Zoom on Hover */
.mission-image,
.about-content,
.vam-section img {
    overflow: hidden;
    /* Contains the zoom */
    border-radius: 8px;
    display: block;
}

.mission-image img,
.about-content img,
.vam-section img {
    transition: transform 0.5s ease;
}

.mission-image:hover img,
.about-content:hover img,
.vam-section img:hover {
    transform: scale(1.05);
}

/* 5. Smooth Scroll for the whole page */
/* 6. Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* 7. Parallax Effect Class */
.parallax-bg {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* 8. Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-red);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    /* Hidden by default, JS toggles this */
    transform: translateY(100px);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:hover {
    background-color: #c92a36;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 3D Scroll Hero Section Styles */
.cpr-scroll-container {
    position: relative;
    width: 100%;
    height: 200vh;
    /* Shorter for snappier feel */
    background: #000;
}

.cpr-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

#cpr-animated-svg {
    max-width: 900px;
    width: 90%;
    height: auto;
    max-height: 80vh;
}

.content-box-sequence {
    max-width: 800px;
    padding: 2rem;
    margin-left: 5%;
    position: relative;
    height: 200px;
    /* Space for swapped text */
}

.seq-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.content-box h1,
.content-box h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.content-box .highlight {
    color: #e31e24;
    /* Primary Red */
}

.content-box .hero-subtitle {
    font-size: 1.8rem;
    color: #eee;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.animate-text {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.cpr-stage.active .animate-text {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments for new hero */
@media (max-width: 768px) {

    .content-box h1,
    .content-box h2 {
        font-size: 2.2rem;
    }

    .content-box .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-box {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
}

/* =========================================
   NEW ENHANCEMENTS styles
   ========================================= */

/* Trust Bar */
.trust-bar {
    background-color: #1A1A1B;
    color: #FFFFFF;
    padding: 15px 0;
    text-align: center;
}

.trust-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--accent-gold);
}

/* Accreditation Logos Section */
.accreditation-section {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.logos-grid img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* VAM Future Module */
.vam-future-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vam-future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vam-future-content h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.vam-future-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
}

.vam-future-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Course Card Badges & Click and Pay */
.courses-section .course-card:nth-child(odd) {
    border-top: 4px solid var(--accent-gold);
}

.courses-section .course-card:nth-child(even) {
    border-top: 4px solid var(--accent-red);
}

.course-card {
    position: relative;
}

.aha-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e31e24;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer Accreditation Grid */
.footer-accreditation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.footer-accreditation-grid img {
    width: 100%;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-accreditation-grid img:hover {
    transform: scale(1.05);
}

/* Google rating badge removed */

.google-rating-footer i {
    color: #4285F4;
    /* Google Blue */
    font-size: 24px;
}

/* Sticky Mobile Button */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-blue);
    text-align: center;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .vam-future-grid {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        bottom: 80px;
        /* Offset for sticky nav */
    }
}

/* Gallery "Mesh Work" Layout */
.gallery-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.gallery-grid-mesh {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mesh variations */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-grid-mesh {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-item.wide,
    .gallery-item.big {
        grid-column: span 1;
    }
}
/* Mobile Layout Fixes */
@media (max-width: 900px) {
    .header-container { flex-wrap: wrap; justify-content: center; text-align: center; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; margin-top: 10px; }
    .header-cta { display: none !important; }
    html, body { overflow-x: hidden; width: 100%; margin: 0; padding: 0; }
    .hero-content h1 { word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
}

