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

img {

}

.profile-image {
    max-height:100%; 
    max-width:100%;
    position: relative;
    top : 48px;
    right : 0px;
}

.profile-image-future {
    max-height:100%; 
    max-width:100%;
    position: relative;
    top : 50px;
}

.expertise-areas-image {
    object-fit: cover;
    max-width: 100%;
}

.reflections-image {
    object-fit: cover;
    max-height: 87%;
}

.reflections-image-long {
    object-fit: cover;
    max-height: 87%;
}
.subtext {
    float: none;
    position: relative;
}

.demopage-holder {

}

.demopage-image {
    width: 50%;
    object-fit: cover;
    border-radius: 15px;;
}


.EA-holder {

}

.EA-image {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f8bbd9;
    background: rgba(248, 187, 217, 0.1);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f8bbd9, #e8a5c4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

/* Main Content */
main {
    margin-top: 80px;
}

.page {
    display: none;
    min-height: calc(100vh - 80px);
    padding: 3rem 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page.active {
    display: block;
    opacity: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f8bbd9, #e8a5c4);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.image-title-header {
    font-size: 1.0rem;
    max-width: 600px;
    margin: 1rem;
}
/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

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

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(248, 187, 217, 0.3);
    transition: transform 0.3s ease;
}

.profile-placeholder:hover {
    transform: scale(1.05);
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* About Page Additional Sections */
.about-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f8bbd9, #e8a5c4);
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Portfolio Page */
.expertise-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-areas-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.expertise-areas-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(248, 187, 217, 0.2);
}

.expertise-areas-image {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.expertise-areas-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.expertise-areas-item:hover .expertise-areas-image::before {
    left: 100%;
}

.expertise-areas-info {
    padding: 1.5rem;
}

.expertise-areas-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.expertise-areas-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.try-me-btn {
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.3);
}

.try-me-btn-coco {
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.3);
    margin : 1rem;
}

.try-me-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 187, 217, 0.4);
}

.try-me-btn-coco:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 187, 217, 0.4);
}

/* Project Detail Page */
.project-detail {
    max-width: 1000px;
    margin: 2rem auto;
}

.project-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.project-main-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(248, 187, 217, 0.3);
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.project-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-specs {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f8bbd9;
}

.project-specs ul {
    list-style: none;
    padding: 0;
}
.project-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.project-specs li:last-child {
    border-bottom: none;
}

.project-specs strong {
    color: #2c3e50;
    margin-right: 1rem;
}

.back-btn {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.3);
}

/* Services Page */
.portfolio-grid{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-images {
    display: grid;
    grid-template-rows: repeat(4, auto);
    width: 35%;
    float: right;
    gap: 0;
    margin: 44px;
}

.service-image {
    max-width: 100%;
    margin: 10px;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.service-image > img {
    border-radius: 15px;
    max-width: 100%;
}

.service-image:last-child {
    border-right: none;
}

.service-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
}

.service-card:hover .service-image::before {
    left: 100%;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content li {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 800px;
}
.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 800px;
}

/* Future Vision Page */
.vision-content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}


.vision-item-sources {
    font-size: 11px;
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.vision-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f8bbd9, #e8a5c4);
}

.vision-item:hover {
    transform: translateY(-5px);
}

.vision-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vision-item p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #f8bbd9, #e8a5c4);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-placeholder {
        width: 250px;
        height: 250px;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .profile-placeholder {
        width: 200px;
        height: 200px;
    }

    .service-images {
        grid-template-columns: 1fr;
    }
}
