﻿
:root {
    --primary-color: #13357B;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --light-color: #F7FFF7;
    --dark-color: #292F36;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.ecommerce-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

    .logo span {
        color: var(--secondary-color);
    }

/* Hero Section */
.about-section {
    padding: 60px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-image-container {
    position: relative;
    margin-bottom: 30px;
}

.about-image-frame {
    border: 15px solid;
    border-color: transparent var(--primary-color) transparent var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.text-primary {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.service-card-inner {
    display: flex;
    padding: 20px;
    align-items: center;
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(19, 53, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-content {
    flex-grow: 1;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: white;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    color: #6c757d;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .social-icon:hover {
        background-color: var(--secondary-color);
        transform: scale(1.1);
    }

/* Responsive Adjustments */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image-container {
        flex: 0 0 40%;
        margin-bottom: 0;
        padding-right: 30px;
    }

    .about-text {
        flex: 1;
    }

    .service-card-inner {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .about-image-frame {
        border-width: 10px;
    }

    .service-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
