/* CSS Variables for Blue Color Scheme */
:root {
    --deep-blue: #1a365d;
    --navy-blue: #2d3748;
    --royal-blue: #2b6cb0;
    --bright-blue: #3182ce;
    --light-blue: #ebf8ff;
    --sky-blue: #90cdf4;
    --white: #ffffff;
    --light-gray: #f7fafc;
    --dark-gray: #4a5568;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Slider Image Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.8s ease;
}

.slide:hover .slide-background {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 3; /* Higher than overlay and background */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(43, 108, 176, 0.7) 100%);
    z-index: 2;
	opacity: 25%;
}

/* Remove the old gradient backgrounds from slides */
.slide:nth-child(1),
.slide:nth-child(2),
.slide:nth-child(3),
.slide:nth-child(4),
.slide:nth-child(5) {
    background-image: none !important;
}

/* Navigation with Button Hover Effect */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: var(--light-blue);
    color: var(--deep-blue);
    border-color: var(--bright-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--deep-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider - Full Width */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Slide background images - you'll replace these with your actual images */
.slide:nth-child(1) {
    background-image: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.7)), url('https://placehold.co/2560x1440/1a365d/ffffff?text=Slide+1');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.7)), url('https://placehold.co/2560x1440/2b6cb0/ffffff?text=Slide+2');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.7)), url('https://placehold.co/2560x1440/3182ce/ffffff?text=Slide+3');
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(43, 108, 176, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--bright-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.btn-primary:hover {
    background: var(--royal-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--bright-blue);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Framework Section */
.framework {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 3rem;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.framework-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--bright-blue);
}

.framework-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.framework-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bright-blue), var(--royal-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link:hover {
        background: var(--light-blue);
        transform: none;
        box-shadow: none;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .slider-controls {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/banners/about.png') center/cover;
    opacity: 0.3;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateX(10px);
}

.philosophy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.philosophy-text h4 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.philosophy-text p {
    margin: 0;
    color: var(--dark-gray);
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Commitment Section */
.commitment {
    padding: 6rem 0;
    background: var(--light-gray);
}

.commitment-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.commitment-header h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--bright-blue);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.commitment-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: sticky;
    top: 100px;
}

.founder-photo {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--royal-blue), var(--bright-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.founder-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--bright-blue);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 500;
    color: var(--deep-blue);
}

.founder-bio h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--royal-blue);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.bio-content {
    margin-bottom: 3rem;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.founder-expertise {
    margin-bottom: 3rem;
}

.founder-expertise h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.expertise-tag {
    background: var(--light-blue);
    color: var(--deep-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--sky-blue);
}

.founder-books h4 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.book-item {
    text-align: center;
}

.book-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--sky-blue);
}

.book-item p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--bright-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.value-card h3 {
    color: var(--deep-blue);
    margin: 1.5rem 0 1rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* CTA Butons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .story-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-image {
        position: static;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;

    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .commitment-header h2,
    .values-section h2 {
        font-size: 2rem;
    }
    
    .founder-bio h2 {
        font-size: 2rem;
    }
}
/* Page Hero Common Styles */
.page-hero {
    position: relative;
    height: 50vh;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Specific hero backgrounds */
.consulting-hero .page-hero-overlay {
    background-image:url('../images/banners/consulting.png') center/cover;
}

.academy-hero .page-hero-overlay {
    background-image:url('../images/banners/academy.png') center/cover;
}

.insights-hero .page-hero-overlay {
    background-image:url('../images/banners/insight.png') center/cover;
}

.contact-hero .page-hero-overlay {
  background-image:url('../images/banners/contact.png') center/cover;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Consulting Page Styles */
.services-overview {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-main-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border-top: 4px solid var(--bright-blue);
    transition: transform 0.3s ease;
}

.service-main-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-main-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-main-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    color: var(--bright-blue);
    font-weight: bold;
    margin-right: 1rem;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--light-gray);
}

.industries h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Case Studies */
.case-studies {
    padding: 6rem 0;
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.case-study-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--bright-blue);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-industry {
    background: var(--bright-blue);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-result {
    background: var(--emerald-green);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.case-study-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.highlight strong {
    display: block;
    font-size: 1.5rem;
    color: var(--bright-blue);
    margin-bottom: 0.5rem;
}

.highlight span {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--light-gray);
}

.process h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bright-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Academy Page Styles */
.academy-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.learning-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.benefit-icon {
    font-size: 1.2rem;
}

.overview-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    font-weight: 600;
}

/* Program Categories */
.program-categories {
    padding: 6rem 0;
    background: var(--light-gray);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--bright-blue);
    color: var(--bright-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
    background: var(--bright-blue);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.program-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.program-duration {
    color: var(--bright-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.program-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li::before {
    content: "•";
    color: var(--bright-blue);
    font-weight: bold;
    margin-right: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--bright-blue);
    border: 2px solid var(--bright-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--bright-blue);
    color: var(--white);
}

/* Upcoming Events */
.upcoming-events {
    padding: 6rem 0;
    background: var(--white);
}

.upcoming-events h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.event-card {
    display: flex;
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
}

.event-date {
    background: var(--bright-blue);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.month {
    font-size: 0.9rem;
    font-weight: 600;
}

.day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-details {
    padding: 2rem;
    flex: 1;
}

.event-details h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--bright-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.event-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-link {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--deep-blue);
}

/* Learning Methodology */
.methodology {
    padding: 6rem 0;
    background: var(--light-gray);
}

.methodology h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.method-step h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.method-step p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Insights Page Styles */
.featured-insights {
    padding: 6rem 0;
    background: var(--white);
}

.featured-insights h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.featured-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bright-blue);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.category {
    color: var(--bright-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.featured-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.featured-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Content Categories */
.content-categories {
    padding: 6rem 0;
    background: var(--light-gray);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--bright-blue);
    color: var(--bright-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bright-blue);
    color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card .card-image {
    height: 150px;
}

.content-card .card-content {
    padding: 1.5rem;
}

.content-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.content-card p {
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Author Books */
.author-books {
    padding: 6rem 0;
    background: var(--white);
}

.author-books h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.books-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.book-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.book-cover-large {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--royal-blue), var(--bright-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.book-details h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.book-subtitle {
    color: var(--bright-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.book-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.book-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.other-books h4 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.books-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.book-cover-small {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-blue), var(--sky-blue));
    border-radius: 5px;
    flex-shrink: 0;
}

.book-info h5 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.book-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Newsletter */
.newsletter {
    padding: 6rem 0;
    background: var(--light-gray);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--sky-blue);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-options {
    padding: 6rem 0;
    background: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-full {
    width: 100%;
}

/* Contact Main Section */
.contact-main {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--sky-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--bright-blue);
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--dark-gray);
    line-height: 1.5;
}

.office-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.office-hours h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
}

/* Schedule Section */
.schedule-section {
    padding: 6rem 0;
    background: var(--white);
}

.schedule-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.schedule-header h2 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.schedule-header p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.schedule-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.calendar-placeholder {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.calendar-header h3 {
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-day.available {
    background: var(--light-blue);
    color: var(--deep-blue);
}

.calendar-day.available:hover {
    background: var(--bright-blue);
    color: var(--white);
}

.time-slots h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 0.75rem;
    background: var(--white);
    border: 2px solid var(--sky-blue);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.time-slot:hover,
.time-slot.selected {
    background: var(--bright-blue);
    color: var(--white);
    border-color: var(--bright-blue);
}

.schedule-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
}

.schedule-form h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-faq h2 {
    text-align: center;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.1);
}

.faq-item h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
   .page-hero {
    height: 60vh;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/banners/about.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
} 