/* Hero section with dynamic word changing */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #111;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.hero-title span {
    margin-right: 20px;
}

#changing-word {
    display: inline-block;
    padding: 0 15px;
    border-radius: 8px;
    transition: background-color 0.5s ease, opacity 0.5s ease;
    color: #000;
    font-weight: 800;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.8;
    max-width: 600px;
}

.hero-cta {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #A5D6A7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background-color: #A5D6A7;
    color: #000;
    transform: translateY(-3px);
}

/* In the numbers section */
.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;
}

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

.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-value {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

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

/* Enhanced Get in Touch section */
.contact {
    padding: 120px 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: 1400px;
}

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

.contact-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px;
    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.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.company-info {
    margin-top: 30px;
}

.company-info h4 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-email {
    color: #A5D6A7;
    font-size: 1.4rem;
    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.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.social-link i {
    width: 50px;
    height: 50px;
    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.4rem;
}

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

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

/* Responsive styles */
@media (max-width: 1200px) {
    .contact-card {
        padding: 40px;
    }
    
    .contact-info {
        padding-right: 40px;
    }
    
    .contact-social {
        padding-left: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .number-value {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .contact-social {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .numbers-heading {
        font-size: 3rem;
    }
    
    .number-value {
        font-size: 3.5rem;
    }
    
    .contact-heading {
        font-size: 3rem;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .contact-info h3, .contact-social h3 {
        font-size: 2rem;
    }
}
