/* Codebel - Modern Creative Design Inspired by Memto & ConsultMinds */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.1);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    color: #2ECC71;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2ECC71;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.btn-nav {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2ECC71;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    align-items: center;
    padding: 4rem 0;
}

.flex-container {
    flex: 1;
    display: flex;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2C3E50;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2ECC71;
    border: 2px solid #2ECC71;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #2ECC71;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Hero Visual - Creative Design */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    z-index: 2;
}

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

.main-image:hover img {
    transform: scale(1.05);
}

/* Floating Stats Cards */
.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    animation: floatCard 6s ease-in-out infinite;
}

.feature-card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.feature-card-2 {
    bottom: 50px;
    left: -40px;
    animation-delay: 2s;
}

.feature-card-3 {
    top: 50%;
    right: -50px;
    animation-delay: 4s;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: #7F8C8D;
    font-weight: 500;
}


/* Animations */
@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

/* Hover Effects */
.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.25);
    pointer-events: auto;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FFFFFF;
    font-size: 1.8rem;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #7F8C8D;
    margin: 0;
}

.hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    animation: floatElement 4s ease-in-out infinite;
}

.element-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30px;
    left: 20px;
    animation-delay: 1.5s;
}

.element-3 {
    top: 50%;
    right: 10px;
    animation-delay: 3s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Trusted Partners */
.trusted-partners {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(46, 204, 113, 0.1);
    padding: 3rem 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3E50;
    margin-top: 1rem;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.15);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* About Section */
.about {
    padding: 2rem 0;
    background: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 4rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-item .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.feature-item .feature-text p {
    font-size: 0.95rem;
    color: #7F8C8D;
    line-height: 1.5;
    margin: 0;
}

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

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.15);
}

.about-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #2ECC71;
    margin-bottom: 0.5rem;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #7F8C8D;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7F8C8D;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(46, 204, 113, 0.2);
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #2ECC71;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

/* Marketing Services Section */
.marketing-services {
    padding: 5rem 0;
    background: #F8F9FA;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.marketing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.marketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.marketing-card:hover::before {
    transform: scaleX(1);
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.marketing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.marketing-card:hover .marketing-icon {
    transform: scale(1.1);
}

.marketing-icon i {
    font-size: 1.8rem;
    color: white;
}

.marketing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.marketing-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 0.95rem;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stats-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.stats-text p {
    font-size: 1.2rem;
    color: #7F8C8D;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2ECC71;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
}

.process-timeline {
    margin-top: 4rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

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

.process-step:nth-child(even) .step-content {
    margin-right: 3rem;
    margin-left: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    flex-shrink: 0;
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    margin-left: 3rem;
    flex: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.step-content p {
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.step-features li {
    color: #2C3E50;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: bold;
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.team-image {
    margin-bottom: 2rem;
}

.team-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2ECC71;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.team-info span {
    font-size: 1.1rem;
    color: #2ECC71;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta .btn-primary {
    background: #FFFFFF;
    color: #2ECC71;
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta .btn-secondary:hover {
    background: #FFFFFF;
    color: #2ECC71;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: #FFFFFF;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #2ECC71;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ECC71;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #2ECC71;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-section h4 {
    color: #2ECC71;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: #2ECC71;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #2ECC71;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #2ECC71;
    font-size: 1rem;
    width: 16px;
}

.contact-item span {
    color: #BDC3C7;
    font-size: 0.95rem;
}

.contact-info p {
    color: #BDC3C7;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.contact-info i {
    color: #2ECC71;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #BDC3C7;
    font-size: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2ECC71;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .stat-divider {
        display: none;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-main-visual {
        max-width: 100%;
        height: 400px;
    }

    .main-image {
        height: 300px;
    }

    .stat-card {
        min-width: 150px;
        padding: 1rem;
    }

    .stat-card-1 {
        top: -10px;
        right: -20px;
    }

    .stat-card-2 {
        bottom: 30px;
        left: -25px;
    }

    .stat-card-3 {
        top: 40%;
        right: -30px;
    }

    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

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

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

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

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

    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .services-text h2 {
        font-size: 2.5rem;
    }

    .stats-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-cards {
        gap: 1rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #7F8C8D;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact {
    padding: 6rem 0;
    background: #FFFFFF;
}

.modern-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ECC71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27AE60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: #7F8C8D;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Styles */
.faq {
    padding: 5rem 0;
    background: #F8F9FA;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.15);
}

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

.faq-question:hover {
    background: rgba(46, 204, 113, 0.05);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #7F8C8D;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-question i {
    color: #2ECC71;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column !important;
    }
    
    .process-step:nth-child(even) .step-content {
        margin-right: 0;
        margin-left: 0;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .modern-form {
        padding: 2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-card, .mission-card {
        padding: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .solution-content, .tailored-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solution-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .solution-types {
        gap: 1rem;
    }
    
    .solution-type {
        padding: 1rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for New Sections */
.about-hero, .services-hero, .solutions-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    text-align: center;
}

.about-hero-content h1, .services-hero-content h1, .solutions-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.about-hero-content p, .services-hero-content p, .solutions-hero-content p {
    font-size: 1.2rem;
    color: #7F8C8D;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: #F8F9FA;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.vision-card, .mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-card:hover::before, .mission-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.vision-icon, .mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-icon, .mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.vision-icon i, .mission-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.vision-card p, .mission-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 1rem;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 5rem 0;
    background: #FFFFFF;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.solution-description {
    margin-bottom: 3rem;
}

.solution-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7F8C8D;
}

.solution-frameworks h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 2rem;
}

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

.framework-item {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.framework-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.framework-icon i {
    font-size: 1.2rem;
    color: white;
}

.framework-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.framework-item p {
    font-size: 0.9rem;
    color: #7F8C8D;
    line-height: 1.5;
    margin: 0;
}

.solution-visual {
    position: relative;
}

.solution-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.solution-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
    display: flex;
    gap: 2rem;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #2ECC71;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #7F8C8D;
    font-weight: 500;
}

/* Tailored Solutions Section */
.tailored-solutions {
    padding: 5rem 0;
    background: #F8F9FA;
}

.tailored-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.tailored-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.tailored-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tailored-description {
    margin-bottom: 3rem;
}

.tailored-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7F8C8D;
}

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

.solution-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.solution-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-icon i {
    font-size: 1.2rem;
    color: white;
}

.type-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.type-content p {
    font-size: 0.95rem;
    color: #7F8C8D;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #FFFFFF;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.why-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 0.95rem;
}

.values {
    padding: 6rem 0;
    background: #F8F9FA;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.value-card p {
    color: #7F8C8D;
    line-height: 1.6;
}

.tech-stack {
    padding: 6rem 0;
    background: #FFFFFF;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-item {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E50;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #2ECC71;
    color: white;
    transform: translateY(-2px);
}

.capability-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2ECC71;
    color: #2ECC71;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #2ECC71;
    color: white;
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #7F8C8D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-form {
        padding: 2rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
}

.service-features{
    padding-left: 15px;
}