:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #34495e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    //margin: 0;
    //padding: 0;
    //box-sizing: border-box;
}

body {
    //font-family: 'Open Sans', sans-serif;
    //color: var(--text);
    // background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    // line-height: 1.6;
}

.container {
    //max-width: 1200px;
    //margin: 0 auto;
    //padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(120deg, var(--primary), #1a2530);
    color: white;
    padding: 60px 0;
    /*//text-align: center;
            margin-bottom: 50px;*/
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}



.brand-statement {
    max-width: 1200px;
    margin: 30px auto;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    font-size: 2.2rem;
    //font-family: 'Montserrat', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 15px auto;
    border-radius: 2px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin: 40px 0;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 85%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid white;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::after {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 10px solid white;
}

.year {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    /* //font-family: 'Montserrat', sans-serif; */
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
    /* //font-family: 'Montserrat', sans-serif; */
}

.timeline-desc {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Brand Family Styles */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.brand-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
    /* //font-family: 'Montserrat', sans-serif; */
}

.brand-desc {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Expertise Styles */
.expertise-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.expertise-item {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.3rem;
    /* //font-family: 'Montserrat', sans-serif; */
}

/* Footer */
/*footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        }
*/
/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-content::after {
        left: -10px;
        right: auto;
        border-left: none;
        border-right: 10px solid white;
    }

    .brand-grid,
    .expertise-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .brand-statement {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .title-fill {
        font-size: 32px;
        padding: 0px 0 !important;
        text-align: center;
        display: block;
    }

    .p-style-large {
        font-size: 15px;
        text-align: center !important;
    }

    .p-style-bold-up {
        text-align: center !important;
        display: block;
    }

    .load-title-fill {
        display: block;
        text-align: center;
        line-height: 1.2;
    }

    .flex-min-height-box {
        padding: 0;
    }

    .page-head video {
        top: 15px;
        -weblit-transform: none;
        -ms-transform: translate(-50%, -50%);
        transform: translate(0%, -0%) !important;
        height: 86vh;
    }

    .flex-min-height-inner {
        width: 100%;
        height: 100%;
        min-height: 80vh;
    }
}