/* Contact Section */
.contact-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 80px 0px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #eaeaea; /* Subtle divider */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
    margin-top: 0px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #ff5a5f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-button:hover {
    background-color: #e94c4f;
    transform: translateY(-2px);
}

.contact-button:active {
    transform: translateY(1px);
}









/* Adjusted Talent and Partnerships Section */
.talent-partnership-section {
    width: 100%;
    background-color: transparent; /* Slight contrast to the cards section above */
    padding: 80px 0px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    margin-top: 40px; /* Space from the service cards above */
    border-top: 1px solid #eaeaea; /* Subtle divider */
}

.talent-partnership-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* More space between elements */
}

.talent-partnership-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Slightly darker for emphasis */
    margin-bottom: 10px;
    text-transform: capitalize;
}

.talent-partnership-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px; /* Slightly wider for balance */
    margin: 0 auto;
}

.talent-partnership-grid {
    display: flex;
    gap: 30px; /* Reduced gap for tighter alignment */
    justify-content: center;
    flex-wrap: wrap;
}

.talent-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 15px; /* Narrower padding */
    text-align: center;
    width: 280px; /* Matches the service cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.talent-image {
    width: 40px;
    height: 40px;
    margin-bottom: 10px; /* Align with feature cards */
    object-fit: contain;
}

.talent-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0px;
}

.talent-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Extra Divider for Bottom Padding */
.talent-partnership-section::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #eaeaea;
    margin: 40px auto 0;
    border-radius: 5px;
}








/* Tech Stack Section */
.tech-stack-section {
    width: 100%;
    background-color: transparent; /* Clean white background */
    padding: 80px 0px;
    padding-top: 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.tech-stack-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.tech-stack-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}

.tech-stack-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-logo:hover {
    transform: scale(1.1);
}

.tech-name {
    font-size: 1rem;
    font-weight: bold;
    color: #444;
}


.gradient-wrapper{
    background: linear-gradient(to bottom, #ffffff, #d12727);
    width: 100vw;
    
}







.product-wrap{

    background: linear-gradient(to bottom, #ffffff, #f0f0f0); /* White to Grey */
    width: 100%;
    box-sizing: border-box;
}







@media screen and (min-width: 11in) and (max-width: 15in) {

    /* Contact Section */
.contact-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 60px 0px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #eaeaea; /* Subtle divider */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
    margin-top: 0px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #ff5a5f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-button:hover {
    background-color: #e94c4f;
    transform: translateY(-2px);
}

.contact-button:active {
    transform: translateY(1px);
}









/* Adjusted Talent and Partnerships Section */
.talent-partnership-section {
    width: 100%;
    background-color: transparent; /* Slight contrast to the cards section above */
    padding: 80px 0px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    margin-top: 40px; /* Space from the service cards above */
    border-top: 1px solid #eaeaea; /* Subtle divider */
}

.talent-partnership-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* More space between elements */
}

.talent-partnership-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Slightly darker for emphasis */
    margin-bottom: 10px;
    text-transform: capitalize;
}

.talent-partnership-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px; /* Slightly wider for balance */
    margin: 0 auto;
}

.talent-partnership-grid {
    display: flex;
    gap: 30px; /* Reduced gap for tighter alignment */
    justify-content: center;
    flex-wrap: wrap;
}

.talent-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 15px; /* Narrower padding */
    text-align: center;
    width: 280px; /* Matches the service cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.talent-image {
    width: 40px;
    height: 40px;
    margin-bottom: 10px; /* Align with feature cards */
    object-fit: contain;
}

.talent-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0px;
}

.talent-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Extra Divider for Bottom Padding */
.talent-partnership-section::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #eaeaea;
    margin: 40px auto 0;
    border-radius: 5px;
}








/* Tech Stack Section */
.tech-stack-section {
    width: 100%;
    background-color: transparent; /* Clean white background */
    padding: 80px 0px;
    padding-top: 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.tech-stack-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.tech-stack-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}

.tech-stack-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-logo:hover {
    transform: scale(1.1);
}

.tech-name {
    font-size: 1rem;
    font-weight: bold;
    color: #444;
}


.gradient-wrapper{
    background: linear-gradient(to bottom, #ffffff, #d12727);
    width: 100vw;
    
}







.product-wrap{

    background: linear-gradient(to bottom, #ffffff, #f0f0f0); /* White to Grey */
    width: 100%;
    box-sizing: border-box;
}
}
