/* Global Reset & Basic Body Styles */
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e6e6e6;
}

.ItProduct-page-wrapper {
    overflow-x: hidden;

}

.header-it {
    width: 100%;
    text-align: center;
}


/* .image-item {
    margin-bottom: 20px;
} */

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.image-item p {
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
}

/* Services Grid Styles */
.services-grid-it {
    
    width: 94%; /* Adds 3% margin left/right */
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.container-it {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

/* Service Card */
.service-card-it {
    box-sizing: border-box;
    background-color: #f4f7f6;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    height: 500px;
    transition: border 0.3s ease;
    width: 100%;
    box-shadow: none;
}

.service-card-it:hover {
    border: 4px solid #008acf;
}

.service-card-icon-img {
    margin-top: 10px;
    max-width: 200px;
    height: auto;
}

.service-icon-it {
    font-size: 2rem;
    color: #008acf;
    margin-bottom: 15px;
}

.service-name-it {
    font-size: 26px;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

.service-card-description {
    font-size: 22px;
    color: #000;
    margin: 15px 0;
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button */
.service-card-button {
    display: inline-block;
    background: linear-gradient(90deg, rgba(36, 96, 145, 1) 0%, rgba(0, 138, 207, 1) 100%);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    width: 80%;
    max-width: 300px;
    margin-bottom: 10px;

    text-align: center;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .container-it {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-it {
        grid-template-columns: 1fr;
    }

    .service-name-it {
        font-size: 25px;
    }

    .service-card-description {
        font-size: 18px;
    }
}


.bottom-cta-it {

    background: linear-gradient(90deg, rgba(36, 96, 145, 1) 0%, rgba(0, 138, 207, 1) 100%);
    color: #fff;
    /* CHANGE: Make border transparent in normal state, but keep width for smooth transition */
    border: 4px solid transparent;
    border-radius: 12px;
    /* color: #008acf; */
    text-align: center;
    padding: 60px 40px;
    width: 94%;
    margin: 0px auto;
    box-sizing: border-box;

    /* ADD: Transition for border-color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    /* Start with no shadow */
}

/* ADD: Hover state for the entire .bottom-cta-it box */
.bottom-cta-it:hover {
    border-color: #008acf;
    /* Blue border appears on hover */
    box-shadow: 0 8px 20px rgba(0, 138, 207, 0.2);
    /* Add a subtle shadow on hover */
}


.bottom-cta-it h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 auto 30px auto;
    line-height: 1.4;
    color: #fff;
}

/* --- Container for the two buttons (ADD/CONFIRM THIS) --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* --- Button Styling (No change in common-button itself as requested) --- */
.common-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.get-in-touch-button {
    background: #fff;
    color: #008acf;
    border: 2px solid rgba(0, 138, 207, 1);
}

.get-in-touch-button:hover {
    background: linear-gradient(90deg, rgba(20, 50, 80, 1) 0%, rgba(0, 100, 150, 1) 100%);
    border-color: rgba(0, 100, 150, 1);
    color: #ffffff;
}

.outline-button {
    background: #fff;
    color: #008acf;
    border: 2px solid rgba(0, 138, 207, 1);
}

.outline-button:hover {
    background: linear-gradient(90deg, rgba(20, 50, 80, 1) 0%, rgba(0, 100, 150, 1) 100%);
    border-color: rgba(0, 100, 150, 1);
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .bottom-cta-it {
        padding: 50px 30px;
        width: 94%;
    }

    .bottom-cta-it h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .common-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .bottom-cta-it {
        padding: 40px 20px;
        width: 94%;
        margin: 40px auto;
    }

    .bottom-cta-it h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .common-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bottom-cta-it {
        padding: 30px 15px;
        margin: 30px auto;
    }

    .bottom-cta-it h2 {
        font-size: 1.3rem;
    }

    .common-button {
        padding: 12px 15px;
        font-size: 0.95rem;
         text-align: center;
    }
}
@media (max-width: 1200px) {
    .container-it {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-it {
        grid-template-columns: 1fr;
    }

    .service-name-it {
        font-size: 25px;
    }

    .service-card-description {
        font-size: 18px;
    }
}

/* Bottom Call to Action */
.bottom-cta-it {
    background: linear-gradient(90deg, rgba(36, 96, 145, 1) 0%, rgba(0, 138, 207, 1) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin: 60px auto;
    max-width: 90%;
    border-radius: 8px;
}

.bottom-cta-it h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.5;
}