@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* --- Wave IT Services Styling - Modern Grid Design (Final Optimized) --- */
:root {
    --wave-primary: #004d99;   /* Darker Main Brand Blue */
    --wave-secondary: #008cba; /* Teal/Cyan Accent */
    --wave-light-bg: #f8f8f8;  /* Light Gray Background */
    --wave-text-dark: #1f2937; /* Dark Headings */
    --wave-text-body: #4b5563; /* Body Text */
    --wave-shadow-box: 0 4px 15px rgba(0, 0, 0, 0.08);
    --wave-shadow-hover: 0 8px 25px rgba(0, 119, 182, 0.2);
}

div[itemprop="articleBody"] {

    /* Now uses the loaded Poppins font */
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--wave-text-body);
    line-height: 1.6;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
}

.wave-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3em;
    color: var(--wave-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: var(--wave-text-body);
    max-width: 800px;
    margin: 0 auto;
}

/* HERO SECTION - MODIFIED FOR BACKGROUND IMAGE */
.wave-hero {
  margin-top: -5.5vh;
    z-index: 0;
    /* ** REPLACE THIS URL WITH YOUR IMAGE PATH ** */
    background-image: url('../../../images/I_T_SERVICES.png'); 
    background-color: #004d99; /* Fallback color */
    
    /* Background Image Properties */
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    
    color: white;
    padding: 150px 25px 120px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Overlay for better text readability on top of the image */
.wave-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures text and buttons are above the overlay */
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-content h3 {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: #b3e5fc;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.primary-cta {
    background-color: var(--wave-secondary);
    color: white;
    border: 2px solid var(--wave-secondary);
    box-shadow: 0 4px 10px rgba(0, 140, 186, 0.5);
}

.primary-cta:hover {
    background-color: #007799;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 140, 186, 0.7);
}

/* SERVICES GRID */
.services-section {
    background-color: white;
}

.service-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: var(--wave-light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--wave-shadow-box);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid var(--wave-secondary);
    height: 100%;
    box-sizing: border-box;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--wave-shadow-hover);
}

.service-box i {
    font-size: 3em;
    color: var(--wave-primary);
    margin-bottom: 20px;
    display: block;
}

.service-box h4 {
    font-size: 1.6em;
    color: var(--wave-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

/* VALUE PROPOSITION BLOCK (Strip Section) */
.value-prop-section {
    background-color: var(--wave-primary);
    color: white;
    padding: 50px 25px;
    text-align: center;
}

.value-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 250px;
    padding: 10px;
}

.value-item i {
    font-size: 3.5em;
    color: white; 
    margin-bottom: 15px;
}

.value-item h5 {
    font-size: 1.4em;
    margin-bottom: 5px;
    font-weight: 700;
}

.value-item p {
    font-size: 1em;
    color: #cce0f0; 
}

/* CONTACT SECTION */
.contact-section {
    background-color: var(--wave-light-bg);
    text-align: center;
    padding: 90px 25px;
}

.contact-box {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 8px solid var(--wave-secondary);
}

.contact-box h2 {
    color: var(--wave-primary);
    font-size: 3em;
    margin-bottom: 15px;
}

/* Disclaimer placeholder (kept for spacing) */
.contact-box .disclaimer-placeholder {
    margin-bottom: 40px; 
    height: 1.3em;
    display: block;
}

.contact-cta-final {
    background-color: var(--wave-secondary);
    color: white;
    padding: 20px 50px;
    border-radius: 6px;
    font-size: 1.4em;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.contact-cta-final:hover {
    background-color: #007799;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 140, 186, 0.5);
}

/* Style for the final disclaimer and phone number line */
.contact-box .final-details {
    margin-top: 0; 
    color: var(--wave-text-body); 
    font-size: 1em;
    line-height: 1.5;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .wave-hero { padding: 100px 20px 60px 20px; }
    .hero-content h1 { font-size: 3em; }
    .hero-content h3 { font-size: 1.3em; }
    .section-header h2 { font-size: 2.5em; }
    .service-grid-boxes { grid-template-columns: 1fr; }
    .contact-box { padding: 40px 25px; }
    .contact-box h2 { font-size: 2.5em; }
    .value-grid { flex-direction: column; }
}