/* Color Variables */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --secondary-dark: #0D9F6E;
    --accent-color: #EC4899;
    --accent-dark: #DB2777;
    --dark-color: #111827;
    --gray-color: #6B7280;
    --light-gray: #F3F4F6;
    --white-color: #FFFFFF;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark-color);
}

.logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 100px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: var(--white-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 180px;
}

.floating-card.card-1 {
    bottom: -20px;
    left: -20px;
}

.floating-card.card-2 {
    top: 40px;
    right: -20px;
}

.floating-card h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.floating-card p {
    font-size: 12px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.icon-bg {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
}

.badge.bg-accent {
    background-color: rgba(236, 72, 153, 0.1);
    color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.stat-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.solution-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.solution-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.solution-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.solution-link:hover {
    color: var(--primary-dark);
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
}

.industry-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.industry-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.industry-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.industry-link:hover {
    color: var(--primary-dark);
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
}

.case-study-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.case-study-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.case-study-content {
    padding: 24px;
}

.case-study-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.case-study-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.results {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

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

.result-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.result-label {
    display: block;
    font-size: 12px;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}



.team-section {
    padding: 80px 0;
    background-color: #F8FAFC;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-section .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.team-section .section-heading h2 {
    color: #1F2937;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.team-section .section-heading p {
    color: #4B5563;
    max-width: 700px;
    font-size: 16px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card .card-body {
    padding: 30px;
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2563EB;
    margin: 0 auto 20px auto;
}

.team-card h3 {
    color: #1F2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card .position {
    color: #2563EB;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
    display: block;
}

.team-card .skills {
    margin-bottom: 20px;
}

.team-card .skills .badge {
    background-color: #F3F4F6;
    color: #1F2937;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 10px;
    margin: 0 5px 8px 0;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
}

.team-card .skills .badge:hover {
    background-color: #2563EB;
    color: white;
}

.team-card .bio {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card .social-links a {
    color: #6B7280;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    color: #2563EB;
    transform: translateY(-3px);
}


.partners-section {
    padding: 100px 0;
    background-color: #f9fafc;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.partner-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.partner-badge {
    font-size: 12px;
    color: #3a7bd5;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-item:hover .partner-badge {
    opacity: 1;
    color: #2c5fb3;
}

.awards-section {
    padding: 100px 0;
}

.award-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.award-icon {
    font-size: 40px;
    color: #3a7bd5;
    margin-bottom: 20px;
}

.award-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.award-org {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-desc {
    font-size: 14px;
    color: #495057;
}

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

    .award-card {
        padding: 20px;
    }
}


/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 100px 0 0;
}

.footer-logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
    display: inline-block;
    margin-bottom: 24px;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-heading {
    color: var(--white-color);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7)
}