* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'jost', sans-serif;
}

:root {
    /* Background Colors */
    --navbar-bg: #ffffff;
    --main-bg: #ffffff;
    
    /* Text Colors */
    --text-primary: #202122;
    --text-hover: #007bff;
    
    /* Shadow Colors */
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --navbar-padding: 1rem 2rem;
    --link-gap: 2rem;
    
    /* Mobile Settings */
    --mobile-menu-bg: #ffffff;
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #0f4BB9;
    --indicator-color: rgba(255, 255, 255, 0.5);
    --indicator-active: #ffffff;
    /* Spacing */
    --content-padding: 2rem;
    --button-size: 3rem;
    /* Transitions */
    --transition-speed: 0.5s;
    /* about section */
    --about-v1-primary: #202122;
    --about-v1-secondary: #0f4BB9;
    --about-v1-accent: #F5A623;
    --about-v1-text: #333333;
    --about-v1-bg: #FFFFFF;
    /* services section */
    --mds-primary: #202122;
    --mds-secondary: #6C5CE7;
    --mds-accent: #0f4BB9;
    --mds-text: #636E72;
    --mds-bg: #F5F6FA;
    --mds-card-bg: #FFFFFF;
    /* expertise section */
    --primary: #0f4BB9;
    --secondary: #4A90E2;
    --accent: #0f4BB9;
    --background: #f8fafc;
    --card: #ffffff;
    --text: #202122;
    --success: #10B981;
    --gradient-start: rgba(0, 71, 171, 0.05);
    --gradient-end: rgba(0, 163, 224, 0.05);
    /* process approach section */
    --card: #ffffff;
    --text: #1e293b;
    --border: #e2e8f0;
    --number-bg: #e0e7ff;
    --number-color: var(--primary);
    --active: #0f4BB9;
    --shadow: rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) and (max-width: 1100px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .navbar-links.active {
        left: 0;
    }
}
.about-v1 {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    font-family: 'jost', sans-serif;
}

.about-v1__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
}

.about-v1__content {
    padding: 2rem;
}

.about-v1__subtitle {
    color: var(--about-v1-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.about-v1__title {
    color: var(--about-v1-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
}

.about-v1__description {
    color: var(--about-v1-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.about-v1__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.about-v1__stat-item {
    text-align: left;
}

.about-v1__stat-number {
    color: var(--about-v1-accent);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-v1__stat-label {
    color: var(--about-v1-text);
    font-size: 1rem;
    font-weight: 500;
}

.about-v1__image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-v1__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-v1__floating-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--about-v1-accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-v1__shape-1 {
    top: -20px;
    left: -20px;
}

.about-v1__shape-2 {
    bottom: 40px;
    right: -30px;
    width: 150px;
    height: 150px;
}

@media (max-width: 992px) {
    .about-v1__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-v1__image-container {
        order: 1;
    }

    .about-v1__content {
        padding: 1rem;
    }

    .about-v1__title {
        font-size: 2rem;
    }
    .about-v1__stats{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-v1__stat-item{
        text-align: center;
        margin: 2%;
    }
}

@media (max-width: 576px) {
    .about-v1 {
        padding: 4rem 1rem;
    }

    .about-v1__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-v1__title {
        font-size: 1.8rem;
    }
}

.mds-services {
    padding: 6rem 2rem;
    background: var(--mds-bg);
    font-family: 'jost', sans-serif;
    min-height: 100vh;
}

.mds-services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.mds-services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.mds-services__subtitle {
    color: var(--mds-accent);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.mds-services__title {
    color: var(--mds-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mds-services__description {
    color: var(--mds-text);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.mds-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mds-services__category {
    background: var(--mds-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.mds-services__category.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mds-services__category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mds-services__image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mds-services__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mds-services__category:hover .mds-services__image {
    transform: scale(1.05);
}

.mds-services__category-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--mds-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.mds-services__content {
    padding: 2rem;
}

.mds-services__category-title {
    color: var(--mds-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mds-services__subservices {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mds-services__subservice {
    color: var(--mds-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.mds-services__subservice:last-child {
    border-bottom: none;
}

.mds-services__subservice::before {
    content: '→';
    color: var(--mds-accent);
    margin-right: 0.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mds-services__category:hover .mds-services__subservice::before {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .mds-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mds-services {
        padding: 4rem 1rem;
    }

    .mds-services__grid {
        grid-template-columns: 1fr;
    }

    .mds-services__title {
        font-size: 2rem;
    }

    .mds-services__content {
        padding: 1.5rem;
    }

    .mds-services__image-container {
        height: 180px;
    }
}

/* expertise section */
.expertise {
    width: 100%;
    /* margin: 0 auto; */
    padding: 80px 60px;
    /* background: radial-gradient(circle at top right, var(--gradient-start), var(--gradient-end)); */
}

.expertise__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
}

.expertise__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.expertise__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--mds-accent);
    border-radius: 2px;
}

.expertise__subtitle {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.expertise__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.expertise__stat {
    text-align: center;
}

.expertise__stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.expertise__stat-label {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.9;
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.expertise__card {
    background: var(--card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.expertise__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.expertise__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.expertise__card-description {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise__features {
    list-style: none;
}

.expertise__feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.expertise__feature::before {
    content: '✓';
    margin-right: 0.75rem;
    color: var(--success);
    font-weight: bold;
}

@media (max-width: 1200px) {
    .expertise__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise__grid {
        grid-template-columns: 1fr;
    }

    .expertise__stats {
        flex-direction: column;
        gap: 2rem;
    }

    .expertise__title {
        font-size: 2rem;
    }

    .expertise__subtitle {
        font-size: 1.125rem;
    }
}

/* process approach section */
.process {
    padding: 3% 0% 3% 0%;
    background: var(--mds-bg);
}

.process__header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.process__logo {
    width: 200px;
    margin-bottom: 2rem;
}

.process__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.process__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: var(--border);
}

.process__phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.process__phase:nth-child(even) {
    flex-direction: row-reverse;
}

.process__content {
    width: 45%;
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.process__phase-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process__number {
    width: 40px;
    height: 40px;
    background: var(--number-bg);
    color: var(--number-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.process__description {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.process__details {
    list-style: none;
}

.process__detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.9;
}

.process__detail::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--primary);
}

.process__connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process__connector::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--active);
    border-radius: 50%;
}

.process__maintenance {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-top: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.process__maintenance-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process__maintenance-text {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process__timeline::before {
        left: 20px;
    }
    .process__maintenance{
        width: 90%;
    }
    .process__phase {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px;
    }

    .process__phase:nth-child(even) {
        flex-direction: column;
    }

    .process__content {
        width: 90%;
    }

    .process__connector {
        left: 20px;
        transform: translateX(-50%);
    }

    .process__title {
        font-size: 2rem;
    }
}

/* contact section */
.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.services__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.services__title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--mds-primary);
    
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.services__subtitle {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card__content {
    position: relative;
    z-index: 2;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card__description {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    margin-top: 1rem;
}

.service-card__feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.service-card__feature::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--primary);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.service-card__link:hover {
    color: var(--primary-dark);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services__title {
        font-size: 2.5rem;
    }

    .services__subtitle {
        font-size: 1.125rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--card) 2px, transparent 2px),
        linear-gradient(90deg, var(--card) 2px, transparent 2px);
    background-size: 40px 40px;
    background-position: -2px -2px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* footer section */
.footer {
    background: #ecf5ff;
    padding: 4rem 2rem;
    /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer__logo-img {
    height: 40px;
    width: auto;
}

.footer__tagline {
    color: var(--text);
    font-size: 1rem;
    opacity: 0.8;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__title {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer__link:hover {
    color: var(--primary);
    opacity: 1;
}

.footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    opacity: 0.8;
}

.footer__icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.footer__bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: var(--text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-2px);
}

.footer__social-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button--outline:hover {
    background: var(--primary);
    color: white;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.cta-group--center {
    display: flex;
    gap: 1rem;
    margin: 2rem auto;
    justify-content: center;
    max-width: 800px;
}

/* Animation classes */
.about-v1__subtitle.animate,
.about-v1__title.animate,
.about-v1__description.animate,
.about-v1__stats.animate,
.cta-group.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Detail Page Styles */
.service-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
    color: white;
}

.service-hero__content {
    max-width: 800px;
    z-index: 1;
}

.service-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-detail {
    padding: 4rem 2rem;
    background: var(--background);
}

.service-detail__container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail__overview {
    margin-bottom: 4rem;
}

.service-detail__subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.service-detail__subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.service-detail__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.service-detail__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail__stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-detail__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-detail__stat-label {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
}

.service-detail__features {
    margin-bottom: 4rem;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-detail__card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-detail__icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-detail__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-detail__card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.service-detail__process {
    margin-bottom: 4rem;
}

.service-detail__benefits {
    margin-bottom: 4rem;
}

.service-detail__cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    margin-bottom: 2rem;
}

.service-detail__cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.service-detail__cta-text {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .service-hero__title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .service-hero {
        height: 300px;
    }

    .service-hero__title {
        font-size: 2rem;
    }

    .service-hero__description {
        font-size: 1.1rem;
    }

    .service-detail__grid,
    .service-detail__stats {
        grid-template-columns: 1fr;
    }

    .service-detail__subtitle {
        font-size: 1.75rem;
    }

    .service-detail__cta-title {
        font-size: 2rem;
    }

    .service-detail__cta-text {
        font-size: 1.1rem;
    }
}

/* Animation classes */
.expertise__header.animate,
.expertise__title.animate,
.expertise__subtitle.animate,
.expertise__stats.animate,
.expertise__card.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.process__header.animate,
.process__title.animate,
.process__phase.animate,
.process__content.animate,
.process__maintenance.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(15, 75, 185, 0.1);
    color: #0f4BB9;
    padding-left: 2rem;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        background-color: #f8f9fa;
        padding: 0;
        max-height: 0;
        overflow: hidden;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .dropdown-link {
        padding: 1rem 2rem;
    }

    .dropdown-link:hover {
        display: block;
    }

    .dropdown-title {
        padding: 0.75rem 1rem;
        border-bottom: none;
    }

    .dropdown-submenu {
        padding: 0;
        background: #f1f3f5;
    }

    .dropdown-submenu a {
        padding: 0.5rem 1.5rem;
    }

    .dropdown-submenu a:hover {
        padding-left: 2rem;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 5px;
    }
}
/* Case Studies Section Styles */
.case-studies {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.case-studies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.case-studies__header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-studies__title {
    font-size: 2.5rem;
    color: #333;
    margin: 1rem 0;
}

.case-studies__description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-study-card__image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.case-study-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover .case-study-card__image img {
    transform: scale(1.1);
}

.case-study-card__overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}

.case-study-card__category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(15, 75, 185, 0.9);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.case-study-card__content {
    padding: 2rem;
}

.case-study-card__title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.case-study-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-card__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-study-card__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-card__stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f4BB9;
}

.case-study-card__stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.case-study-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f4BB9;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.case-study-card__link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.case-study-card__link:hover {
    gap: 0.75rem;
}

.case-study-card__link:hover svg {
    transform: translateX(3px);
}

.case-studies__cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .case-studies {
        padding: 4rem 0;
    }

    .case-studies__grid {
        grid-template-columns: 1fr;
    }

    .case-studies__title {
        font-size: 2rem;
    }

    .case-study-card__content {
        padding: 1.5rem;
    }
}

.case-studies {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

/* ... existing styles ... */

.case-study-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Add animation delays for cards */
.case-study-card:nth-child(1) {
    transition-delay: 0.1s;
}

.case-study-card:nth-child(2) {
    transition-delay: 0.2s;
}

.case-study-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Client Testimonials Section */
.client-testimonials {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.client-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}

.client-testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
}

.client-testimonials__title {
    font-size: 2.5rem;
    color: #0f4BB9;
    margin-bottom: 1rem;
}

.client-testimonials__subtitle {
    font-size: 1.1rem;
    color: #333;
    opacity: 0.8;
}

.client-testimonials__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.client-testimonials__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.client-testimonials__slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.client-testimonials__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.client-testimonials__logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 3px solid #0f4BB9;
    padding: 0.5rem;
}

.client-testimonials__logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-testimonials__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.client-testimonials__author {
    margin-top: 1rem;
}

.client-testimonials__name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f4BB9;
    margin-bottom: 0.5rem;
}

.client-testimonials__position {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}

.client-testimonials__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.client-testimonials__prev,
.client-testimonials__next {
    background: none;
    border: none;
    cursor: pointer;
    color: #0f4BB9;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.client-testimonials__prev:hover,
.client-testimonials__next:hover {
    transform: scale(1.1);
}

.client-testimonials__dots {
    display: flex;
    gap: 0.5rem;
}

.client-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-testimonials__dot.active {
    opacity: 1;
    background: #0f4BB9;
}

@media (max-width: 768px) {
    .client-testimonials {
        padding: 4rem 1rem;
    }

    .client-testimonials__title {
        font-size: 2rem;
    }

    .client-testimonials__content {
        padding: 1.5rem;
    }

    .client-testimonials__logo {
        width: 80px;
        height: 80px;
    }
}
/* Client Logos Section */
.client-logos {
    padding: 6rem 2rem;
    background: #ffffff;
}

.client-logos__container {
    max-width: 1200px;
    margin: 0 auto;
}

.client-logos__header {
    text-align: center;
    margin-bottom: 4rem;
}

.client-logos__title {
    font-size: 2.5rem;
    color: #0f4BB9;
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-logos__subtitle {
    font-size: 1.1rem;
    color: #666;
    opacity: 0.8;
}

.client-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.client-logos__item {
    flex: 0 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.client-logos__item:hover {
    transform: translateY(-5px);
}

.client-logos__image {
    max-width: 150px;
    height: auto;
    
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logos__item:hover .client-logos__image {
    
    opacity: 1;
}

@media (max-width: 992px) {
    .client-logos__grid {
        gap: 2rem;
    }

    .client-logos__item {
        flex: 0 1 180px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .client-logos {
        padding: 4rem 1rem;
    }

    .client-logos__title {
        font-size: 2rem;
    }

    .client-logos__grid {
        gap: 1.5rem;
    }

    .client-logos__item {
        flex: 0 1 150px;
        padding: 1rem;
    }
}
/* Team Section Styles */
.team {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.team__container {
    max-width: 1200px;
    margin: 0 auto;
}

.team__header {
    text-align: center;
    margin-bottom: 4rem;
}

.team__title {
    font-size: 2.5rem;
    color: #0f4BB9;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team__subtitle {
    font-size: 1.1rem;
    color: #666;
    opacity: 0.8;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.team__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team__member:hover {
    transform: translateY(-10px);
}

.team__member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid #0f4BB9;
    padding: 4px;
}

.team__member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.team__member:hover .team__member-image img {
    transform: scale(1.1);
}

.team__member-info {
    width: 100%;
}

.team__member-name {
    font-size: 1.25rem;
    color: #0f4BB9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team__member-position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.team__social-link {
    color: #0f4BB9;
    transition: color 0.3s ease;
}

.team__social-link:hover {
    color: #0d3d94;
}

.team__social-link svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .team__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 4rem 1rem;
    }

    .team__title {
        font-size: 2rem;
    }

    .team__member-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .team__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}