/* Global Styles */
:root {
    --primary-color: #0A2463; /* Deep navy blue */
    --secondary-color: #4A4E69; /* Slate gray */
    --accent-color: #008080; /* Teal */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --font-tertiary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin: 0 60px;
    padding: 0;
    max-width: calc(100% - 300px); /* Account for logo and CTA button */
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition);
    white-space: nowrap;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.cta-button {
    margin: 0;
}

.cta-button .btn {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    padding: 80px 20px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu-active .mobile-menu {
    right: 0;
}

.mobile-menu-active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1060;
}

.close-menu:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
}

.mobile-menu .nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.mobile-menu .nav-item {
    width: 100%;
    margin: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
}

.mobile-menu .cta-button {
    margin: 20px 0 0;
    width: 100%;
    display: block;
}

.mobile-menu .cta-button .btn {
    width: 100%;
    text-align: center;
}

/* Mobile Menu Active States */
body.mobile-menu-active {
    overflow: hidden;
}

.mobile-menu-active .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-active .mobile-menu {
    right: 0;
}

.mobile-menu-active .hamburger .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-active .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .hamburger .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1318px) {
    .hamburger {
        display: block;
    }

    .navbar .nav-menu {
        display: none;
    }

    .navbar .cta-button {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/images/portfolio-placeholder-1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background-color: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    position: relative;
}

.approach-content h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.approach-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

.approach-points {
    margin-top: 30px;
}

.approach-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.approach-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.approach-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.approach-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.approach-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 128, 128, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(10, 36, 99, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tab {
    padding: 12px 25px;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-weight: 500;
}

.service-tab.active, .service-tab:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
    position: relative;
    overflow: hidden;
    height: 320px;
    min-height: 170px !important; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: var(--secondary-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
    padding: 0 10px;
}

.service-feature .feature-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.service-feature span {
    display: block;
    word-break: normal;
    white-space: normal;
    line-height: 1.5;
    width: 100%;
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-features {
    margin-bottom: 25px;
    width: 100%;
}

/* Investment Focus Section */
.investments-section {
    padding: 100px 0;
    background-color: white;
}

.investments-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.investments-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.investments-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.investment-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.investment-area {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.investment-area:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.investment-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.investment-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.investment-description {
    color: var(--secondary-color);
}

/* Portfolio Preview Section */
.portfolio-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.portfolio-preview h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.portfolio-image {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: white;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
    text-align: center;
}

.stats-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

.testimonial-card {
    padding: 40px;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin: 15px;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #006666 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    background-color: white;
    color: var(--accent-color);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cta-section .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    margin-right: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: 15px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-link a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        margin: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        margin: 0 15px;
        max-width: calc(100% - 260px);
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .approach-grid,
    .investment-areas {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .investment-areas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .approach-content h2,
    .services-intro h2,
    .investments-intro h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .investment-areas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-link a:hover {
        padding-left: 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-tab {
        width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }

    .approach-content h2,
    .services-intro h2,
    .investments-intro h2,
    .portfolio-preview h3,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .service-card {
        margin: 0;
    }

    .service-header {
        padding: 20px;
    }

    .service-content {
        padding: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin: 10px 0;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-title {
        font-size: 1.2rem;
    }

    .portfolio-category {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .approach-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .approach-text h4 {
        font-size: 1.1rem;
    }

    .approach-text p {
        font-size: 0.9rem;
    }

    .service-icon {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description,
    .service-feature {
        font-size: 0.9rem;
    }

    .investment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .investment-title {
        font-size: 1.3rem;
    }

    .investment-description {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-link {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .service-feature {
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .feature-icon {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .service-feature span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .service-content {
        padding: 15px 10px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding-left: 0;
        padding-right: 0;
    }

    .portfolio-item {
        margin: 0;
    }

    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .close-menu {
        top: 15px;
        right: 15px;
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
}

/* Check and fix other potential responsive issues */
.approach-image img,
.service-image img,
.testimonial-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.investment-area img {
    max-width: 100%;
    height: auto;
}

/* Ensure all sections are responsive */
section {
    width: 100%;
    overflow: hidden;
}

/* Feature Styles */
.feature-item {
    padding: 20px;
    background: rgba(0, 128, 128, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Investment Hero Section */
.investment-hero {
    background-color: #0C1B44;
    padding: 80px 0;
    text-align: center;
}

.investment-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.investment-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .investment-hero {
        padding: 60px 0;
    }

    .investment-hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .investment-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .investment-hero {
        padding: 40px 0;
    }

    .investment-hero h1 {
        font-size: 28px;
    }

    .investment-hero p {
        font-size: 14px;
    }
}

/* Investment Sections */
.philosophy-section {
    text-align: center;
    padding: 0 0 80px;
}

.philosophy-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.philosophy-section .section-intro {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Focus Areas Section */
.focus-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.focus-area {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.focus-area:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.focus-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.focus-area h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.focus-area p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Portfolio Companies Section */
.portfolio-section {
    padding: 80px 0;
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-company {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.portfolio-company:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.company-category {
    color: var(--accent-color);
    font-weight: 600;
    margin: 10px 0;
}

.company-description {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Investment Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--secondary-color);
}

/* Partner CTA Section */
.partner-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
}

.partner-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.partner-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background-color: var(--light-color);
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Investment Page Styles */
.investment-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
}

.approach-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-content p {
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.7;
}

.approach-content ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.approach-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.approach-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.approach-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Investment Focus Areas */
.investment-focus {
    padding: 100px 0;
    background-color: var(--light-color);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.focus-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.focus-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.focus-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.focus-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Portfolio Companies */
.portfolio-companies {
    padding: 100px 0;
    background-color: white;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.company-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.company-image-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.company-image {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.company-content {
    padding: 30px;
}

.company-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.company-industry {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.company-description {
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Investment Process */
.investment-process {
    padding: 100px 0;
    background-color: var(--light-color);
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -20px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -20px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Investment CTA */
.investment-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
}

.investment-cta h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.investment-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .investment-approach {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-image {
        order: -1;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin: 0 auto !important;
    }

    .timeline-content:before {
        display: none;
    }

    .process-timeline:before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .focus-grid,
    .companies-grid {
        grid-template-columns: 1fr;
    }

    .investment-cta h3 {
        font-size: 2rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .focus-card,
    .company-card {
        padding: 30px 20px;
    }

    .focus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-content {
        width: calc(100% - 40px);
    }

    .process-timeline {
        padding: 20px 0;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
    }
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: url('../images/portfolio-placeholder-1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-card {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.service-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.service-header:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.service-body {
    padding: 40px;
}

.service-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Executive Section */
.executive-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.executive-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.executive-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.executive-content {
    padding: 30px;
}

.executive-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.executive-position {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.executive-bio {
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.7;
}

.executive-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.executive-stat {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-color);
}

.faq-section{
    margin-bottom: 40px;
}

.executive-social {
    display: flex;
    gap: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Feature Items */
.feature-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--secondary-color);
}

.service-cta {
    text-align: center;
    margin-top: 30px;
}

.service-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .executive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .service-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Logo Styles */
.logo-header {
    height: 60px;
    width: auto;
}

.logo-footer {
    height: 40px;
    width: auto;
}

/* Hero Background Styles */
.hero-finance {
    background: url('assets/images/finance_executive.jpeg') no-repeat center center;
    background-size: cover;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Portfolio Page Styles */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: url('../images/portfolio-placeholder-1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.portfolio-detail {
    padding: 80px 0;
}

/* Portfolio Filter Styles */
.portfolio-filter-container {
    margin-bottom: 50px;
}

.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 50px;
    padding: 5px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-tab {
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    flex: 1;
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.filter-tab:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition), transform 0.3s ease, opacity 0.3s ease;
    height: 350px;
    opacity: 1;
    transform: scale(1);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: white;
    padding: 20px;
    display: block;
    object-position: center;
}

.gallery-image.special-logo {
    max-width: 80%;
    max-height: 80%;
    padding: 40px;
    margin: 0 auto;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A2463;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-category {
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: var(--transition);
    display: -webkit-box;
    overflow: hidden;
}

.gallery-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-button:hover {
    background-color: white;
    color: var(--accent-color);
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-description,
.gallery-item:hover .gallery-button {
    transform: translateY(0);
    opacity: 1;
}

/* Results Section Styles */
.results-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.result-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a8f 100%);
    color: white;
    padding: 25px;
    position: relative;
}

.result-header:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.result-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.result-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.result-body {
    padding: 30px;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.result-description {
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.result-quote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.result-quote-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
    font-style: normal;
}

.result-cta {
    text-align: center;
}

/* Portfolio Responsive Styles */
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-filter-tabs {
        flex-wrap: wrap;
        border-radius: 10px;
    }
    
    .filter-tab {
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
    }
    
    .result-metrics {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Case Studies Page */
.cases-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.case-study {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: white;
}

.case-header h3 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.case-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: white;
}

.case-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.case-section {
    margin-bottom: 2rem;
}

.case-section h4 {
    color: var(--primary-color);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 1rem;
    position: relative;
}

.case-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background: var(--accent-color);
}

.case-section ul {
    list-style: none;
    padding: 0;
}

.case-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.case-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.case-image {
    position: relative;
}

.case-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-quote {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    position: relative;
}

.case-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.case-quote p {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.case-quote cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Contact Page */
.contact-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    width: 100%;
}

.contact-info {
    display: grid;
    gap: clamp(1rem, 2vw, 2rem);
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-form-container {
    background: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Remove duplicate about-hero styles and update global presence section */
.global-presence {
    padding: clamp(3rem, 8vw, 6rem) 0;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    background-color: var(--light-color);
}

.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-top: 3rem;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.presence-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.presence-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix contact page map responsiveness */
.map-section {
    width: 100%;
    position: relative;
    margin-top: 4rem;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.map-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-overlay p {
    color: var(--secondary-color);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .presence-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-map {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .presence-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .map-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 300px;
    }
    
    .map-overlay {
        width: 95%;
        padding: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: clamp(4rem, 10vw, 8rem) 0;
    color: white;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 4px;
    background: var(--accent-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Additional responsive styles for About page */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.5rem;
    }
}

/* Responsive adjustments for contact grid */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }

    .section-intro {
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .info-card {
        padding: clamp(1rem, 3vw, 1.5rem);
    }
}

/* Ensure proper spacing and alignment */
.contact-form-container,
.info-card {
    width: 100%;
    box-sizing: border-box;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hidden{
    display: none;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.leadership-team h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.leadership-team h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member .position {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.3;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-member {
        padding: 20px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-box {
        flex: 0 0 calc(33.33% - 10px);
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 15px;
    }
    
    .team-member h3 {
        font-size: 20px;
    }
    
    .team-member .position {
        font-size: 14px;
    }
    
    .team-member .bio {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
.bio-content{
    min-height: 290px;
}

.our-approach {
    padding-top: 100px; /* Added top padding */
    padding-bottom: 80px;
}