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

body {
    font-family: 'Cabin', sans-serif;
    line-height: 1.6;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
    min-width: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.75rem;
    color: #5e87eb;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.nav-logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-logo a:hover .logo-text {
    color: #4a75d9;
}

@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
        gap: 1.5rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
        gap: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #2c3e50;
}

.chevron {
    font-size: 0.6rem;
    color: #5a6c7d;
    transition: transform 0.3s ease;
    margin-left: 2px;
    display: inline-block;
}

.mobile-expand {
    display: none;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(94, 135, 235, 0.1);
    color: #5e87eb;
}

.cta-button {
    background-color: #5e87eb;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #4a75d9;
    transition: width 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-button:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        gap: 0;
        text-align: left;
        scrollbar-width: thin;
        scrollbar-color: #BBBBBB #EEEEEE;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #DDEEFF;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        justify-content: space-between;
        padding: 18px 24px;
        color: #333333;
        font-size: 1rem;
        font-weight: 500;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(94, 135, 235, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        color: #5e87eb;
    }

    .chevron {
        display: none;
    }

    .mobile-expand {
        display: inline-block;
        font-size: 1.2rem;
        color: #AAAAAA;
        font-weight: 300;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.expanded .mobile-expand {
        transform: rotate(45deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background-color: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown.expanded .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-link {
        padding: 1rem 1.5rem 1rem 3rem;
        color: #333333;
        font-size: 0.95rem;
    }

    .dropdown-link:hover {
        background-color: rgba(94, 135, 235, 0.1);
        color: #5e87eb;
    }

    /* Custom scrollbar styling */
    .nav-menu::-webkit-scrollbar {
        width: 12px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #EEEEEE;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: #BBBBBB;
        border-radius: 6px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: #999999;
    }

    /* Scrollbar arrows for webkit browsers */
    .nav-menu::-webkit-scrollbar-button:single-button {
        display: block;
        height: 12px;
        width: 12px;
        background-color: #EEEEEE;
        background-size: 8px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .nav-menu::-webkit-scrollbar-button:single-button:vertical:decrement {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23777777' d='M4 0L0 4h8z'/%3E%3C/svg%3E");
    }

    .nav-menu::-webkit-scrollbar-button:single-button:vertical:increment {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23777777' d='M4 8L0 4h8z'/%3E%3C/svg%3E");
    }
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    background-image: url('hero-bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333333;
    margin: 0;
}

.hero-heading .highlight {
    color: #5e87eb;
}

.hero-text {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-outline {
    background-color: #ffffff;
    border: none;
    color: #5e87eb;
    box-shadow: 0 4px 15px rgba(94, 135, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #4a75d9;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 135, 235, 0.4);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: #5e87eb;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #4a75d9;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .hero {
        padding: 100px 0;
    }

    .hero-container {
        padding: 0 40px;
        gap: 4rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 3rem;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
        gap: 1.5rem;
        order: 1;
    }

    .hero-heading {
        font-size: 1.9rem;
        text-align: center;
    }

    .hero-text {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }

    .hero-image {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .hero-buttons {
        max-width: 100%;
    }
}

/* Services Section */
.services {
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(94, 135, 235, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    padding: 140px 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .service-link {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon img,
.service-card:hover .service-icon svg {
    filter: brightness(0) invert(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: rgba(94, 135, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg,
.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.25rem;
}

.service-description {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-link {
    color: #5e87eb;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #4a75d9;
}

@media screen and (max-width: 1024px) {
    .services {
        padding: 120px 0;
    }

    .services-container {
        padding: 0 40px;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-grid {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 100px 0;
    }

    .services-container {
        padding: 0 30px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 1.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* What We Provide Section */
.what-provide {
    background-color: rgba(215, 215, 215, 0.17);
    padding: 100px 0 180px 0;
}

.what-provide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.what-provide-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.what-provide-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.what-provide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.75rem 0;
}

.what-provide-text {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

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

.what-provide-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.what-provide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #5e87eb 0%, #7B68EE 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.what-provide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: #ffffff;
}

.what-provide-card:hover::before {
    width: 100%;
}

.what-provide-card.active {
    background: linear-gradient(135deg, #5e87eb 0%, #7B68EE 100%);
    color: #ffffff;
}

.what-provide-card.active::before {
    width: 100%;
}

.what-provide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-provide-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .what-provide {
        padding: 80px 0 120px 0;
    }

    .what-provide-container {
        padding: 0 40px;
        gap: 3rem;
    }

    .what-provide-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .what-provide {
        padding: 60px 0 100px 0;
    }

    .what-provide-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 3rem;
    }

    .what-provide-content {
        gap: 1.5rem;
        order: 1;
    }

    .what-provide-title {
        font-size: 1.9rem;
    }

    .what-provide-grid {
        grid-template-columns: 1fr;
    }

    .what-provide-image {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .what-provide {
        padding: 50px 0 80px 0;
    }

    .what-provide-container {
        padding: 0 20px;
    }

    .what-provide-title {
        font-size: 1.6rem;
    }
}

/* Metrics Section */
.metrics {
    background-image: url('metrics-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    display: block;
    position: relative;
}

@media screen and (max-width: 768px) {
    .metrics {
        background-attachment: scroll;
    }
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.metrics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

@media screen and (max-width: 1024px) {
    .metrics {
        padding: 80px 0;
    }

    .metrics-container {
        padding: 0 40px;
    }

    .metric-number {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .metrics {
        padding: 60px 0;
    }

    .metrics-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 2rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .metric-label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .metrics {
        padding: 50px 0;
    }

    .metrics-container {
        padding: 0 20px;
        gap: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }
}

/* Team Section */
.team {
    background-color: rgba(215, 215, 215, 0.17);
    padding: 140px 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-photo:hover .team-social {
    opacity: 1;
    pointer-events: auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    color: #5e87eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #5e87eb;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #5e87eb;
    margin: 0 0 1rem 0;
}

.team-experience {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.team-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #333333;
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-read-more:hover {
    color: #5e87eb;
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .team {
        padding: 120px 0;
    }

    .team-container {
        padding: 0 40px;
    }

    .team-title {
        font-size: 2.2rem;
    }

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

@media screen and (max-width: 768px) {
    .team {
        padding: 100px 0;
    }

    .team-container {
        padding: 0 30px;
    }

    .team-header {
        margin-bottom: 60px;
    }

    .team-title {
        font-size: 1.9rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .team {
        padding: 80px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .team-title {
        font-size: 1.6rem;
    }

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

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 140px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #5e87eb;
}

.faq-icon {
    font-size: 0.7rem;
    color: #333333;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    color: #5e87eb;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    margin: 0;
    color: #333333;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media screen and (max-width: 1024px) {
    .faq {
        padding: 120px 0;
    }

    .faq-container {
        padding: 0 40px;
    }

    .faq-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 100px 0;
    }

    .faq-container {
        padding: 0 30px;
    }

    .faq-header {
        margin-bottom: 60px;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-question {
        padding: 1.25rem 0;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 0 1.25rem 0;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 1rem 0;
    }

    .faq-answer p {
        padding: 0 0 1rem 0;
        font-size: 0.9rem;
    }
}

/* Footer Section */
.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 80px 0 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

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

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #5e87eb;
    background-color: #5e87eb;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-services li {
    margin: 0;
}

.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #5e87eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5e87eb;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1024px) {
    .footer {
        padding: 60px 0 25px 0;
    }

    .footer-container {
        padding: 0 40px;
    }

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

@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 20px 0;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background-image: url('metrics-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .about-hero {
        background-attachment: scroll;
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.about-content {
    background-color: #ffffff;
    padding: 100px 0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.about-feature {
    padding: 2rem;
    background-color: rgba(94, 135, 235, 0.05);
    border-radius: 12px;
    border-left: 4px solid #5e87eb;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .about-hero {
        padding: 100px 0 60px 0;
    }

    .about-hero-container {
        padding: 0 40px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 40px;
    }

    .about-features {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 80px 0 50px 0;
    }

    .about-hero-container {
        padding: 0 30px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 30px;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

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

    .about-feature {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px 0;
    }

    .about-hero-container {
        padding: 0 20px;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-content {
        padding: 50px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-section-title {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Projects Section */
.projects {
    background-color: #ffffff;
    padding: 140px 0;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

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

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.project-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .project-overlay {
        transform: translateY(0);
        position: relative;
        background: rgba(0, 0, 0, 0.8);
        padding: 1.5rem;
    }
    
    .project-card:hover .project-overlay {
        transform: translateY(0);
    }
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .projects {
        padding: 120px 0;
    }

    .projects-container {
        padding: 0 40px;
    }

    .projects-title {
        font-size: 2.2rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .projects {
        padding: 100px 0;
    }

    .projects-container {
        padding: 0 30px;
    }

    .projects-header {
        margin-bottom: 60px;
    }

    .projects-title {
        font-size: 1.9rem;
    }

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

@media screen and (max-width: 480px) {
    .projects {
        padding: 80px 0;
    }

    .projects-container {
        padding: 0 20px;
    }

    .projects-title {
        font-size: 1.6rem;
    }
}

/* Who We Are Section */
.who-we-are {
    background-color: #ffffff;
    padding: 140px 0;
}

.who-we-are-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-we-are-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5e87eb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-we-are-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
}

.who-we-are-text {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .who-we-are {
        padding: 120px 0;
    }

    .who-we-are-container {
        padding: 0 60px;
        gap: 4rem;
    }

    .who-we-are-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .who-we-are {
        padding: 100px 0;
    }

    .who-we-are-container {
        grid-template-columns: 1fr;
        padding: 0 50px;
        gap: 3rem;
    }

    .who-we-are-image {
        order: 1;
    }

    .who-we-are-content {
        order: 2;
        gap: 1.25rem;
    }

    .who-we-are-title {
        font-size: 1.9rem;
    }
}

@media screen and (max-width: 480px) {
    .who-we-are {
        padding: 60px 0;
    }

    .who-we-are-container {
        padding: 0 30px;
    }

    .who-we-are-title {
        font-size: 1.6rem;
    }

    .who-we-are-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .services-container {
        padding: 0 20px;
    }

    .services-title {
        font-size: 1.6rem;
    }

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

