/* Enhanced Get in Touch section - wider and shorter */
.contact {
    padding: 100px 0;
    background-color: #111;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 70%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    max-width: 1600px; /* Increased width */
}

.contact-heading {
    font-size: 4rem;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
}

.contact-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px; /* Reduced padding for less height */
    display: flex;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

.contact-info h3 {
    color: #000;
    font-size: 2.2rem; /* Slightly smaller */
    margin-bottom: 30px; /* Reduced margin */
    font-weight: 700;
}

.company-info {
    margin-top: 20px; /* Reduced margin */
}

.company-info h4 {
    color: #000;
    font-size: 1.6rem; /* Slightly smaller */
    margin-bottom: 10px; /* Reduced margin */
    font-weight: 600;
}

.contact-email {
    color: #A5D6A7;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: #000;
    border-bottom: 2px solid #A5D6A7;
}

.contact-social {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 60px;
}

.contact-social h3 {
    color: #000;
    font-size: 2.2rem; /* Slightly smaller */
    margin-bottom: 30px; /* Reduced margin */
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced gap */
}

.social-link {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px 0; /* Reduced padding */
}

.social-link i {
    width: 45px; /* Slightly smaller */
    height: 45px; /* Slightly smaller */
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-link:hover {
    color: #A5D6A7;
    transform: translateX(10px);
}

.social-link:hover i {
    background-color: #A5D6A7;
    color: white;
    transform: scale(1.1);
}

/* Updated In the Numbers section with more metrics */
.numbers-section {
    padding: 100px 0;
    background-color: #111;
    position: relative;
}

.numbers-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 70%);
    z-index: 1;
}

.numbers-section .container {
    position: relative;
    z-index: 2;
}

.numbers-heading {
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.numbers-description {
    max-width: 600px;
    margin-left: auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.numbers-grid-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.number-card {
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pastel colors for number cards */
.number-card:nth-child(1) {
    background-color: #D1C4E9; /* Purple */
}

.number-card:nth-child(2) {
    background-color: #A5D6A7; /* Green */
}

.number-card:nth-child(3) {
    background-color: #FFE082; /* Gold */
}

.number-card:nth-child(4) {
    background-color: #90CAF9; /* Blue */
}

.number-card:nth-child(5) {
    background-color: #EF9A9A; /* Red */
}

.number-value {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.number-label {
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
}

/* Updated hero section with green AI-POWERED SOLUTIONS */
.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #A5D6A7; /* Green */
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .numbers-grid, .numbers-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .numbers-grid, .numbers-grid-row2 {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .contact-social {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 30px;
    }
}
