* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* ================= CLIENT HERO SECTION ================= */
.client-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('./Assets/Client-Page/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* Light black overlay covering entire section */
.client-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); /* Light black */
    z-index: 1;
}

/* Content */
.client-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 30px;
    background: rgba(0,0,0,0.45);  /* Light black box behind text */
    border-radius: 15px;
    backdrop-filter: blur(3px);
}

/* Heading */
.client-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraph */
.client-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Button */
.client-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;   /* Blue */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.client-btn:hover {
    background: #0056b3;   /* Darker blue on hover */
}


/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    .client-hero {
        height: 70vh;
    }

    .client-hero-content {
        padding: 30px 25px;
    }

    .client-hero-content h1 {
        font-size: 2.5rem;
    }

    .client-hero-content p {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .client-hero {
        height: 65vh;
        padding: 0 15px;
    }

    .client-hero-content {
        padding: 25px 20px;
    }

    .client-hero-content h1 {
        font-size: 2rem;
    }

    .client-hero-content p {
        font-size: 1rem;
    }

    .client-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .client-hero-content {
        padding: 20px 15px;
    }

    .client-hero-content h1 {
        font-size: 1.7rem;
    }
}



/* ================= INDUSTRIES SECTION ================= */
.industries-section {
    padding: 80px 5%;
    background: #f7f9fc;
    text-align: center;
}

/* Heading */
.industries-title {
    font-size: 36px;
    font-weight: 700;
    color: #0657A3; /* blue heading */
    margin-bottom: 20px;
}

/* Subtext */
.industries-subtext {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #333;
    line-height: 1.6;
}

/* Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Grid Item */
.industry-item {
    background: white;
    padding: 25px 20px;
    font-size: 17px;
    border-radius: 10px;
    border: 2px solid #0657A3; /* Blue border */
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Icon Style */
.industry-icon {
    font-size: 40px;
    color: #0657A3;
}

/* ================= HOVER EFFECT ================= */
.industry-item:hover {
    transform: translateY(-5px);
    background: #0657A3;             /* FULL BLUE */
    border-color: #0657A3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Change icon + text color to white on hover */
.industry-item:hover .industry-icon,
.industry-item:hover p,
.industry-item:hover h4 {
    color: #ffffff !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-item {
        font-size: 16px;
        padding: 20px 15px;
    }

    .industry-icon {
        font-size: 35px;
    }
}


/* ================= DEVELOPMENT PROCESS SECTION ================= */
.dev-process {
    padding: 20px 6%;
    background: #ffffff;
}

.dev-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0657A3;
    margin-bottom: 50px;
}

/* Grid Layout */
.dev-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* Each Card */
.dev-row {
    background: #f7f9fc;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.dev-row:hover {
    transform: translateY(-5px);
}

/* STEP NUMBER ICON */
/* STEP NUMBER ICON – now touching the card + image */
.dev-step {
    position: absolute;
    top: 8px;      /* moves icon upward to touch image */
    left: 5px;      /* moves icon slightly inside the card */
    background: #0657A3;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 5;       /* ensures icon stays above image */
}


/* Image */
.dev-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Text */
.dev-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0657A3;
    margin-bottom: 8px;
}

.dev-text p {
    color: #444;
    font-size: 15px;
    line-height: 22px;
}

/* ================= RESPONSIVE ================= */

/* Tablets : 2 Cards Per Row */
@media (max-width: 992px) {
    .dev-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile : 1 Card Per Row */
@media (max-width: 600px) {
    .dev-wrapper {
        grid-template-columns: 1fr;
    }

    .dev-title {
        font-size: 28px;
    }

    .dev-img img {
        height: 150px;
    }
}




/* ================ NEW CLIENT LOGOS SECTION ================ */
.client-strip-section {
    padding: 80px 5%;
    background: #f4f8ff;
    text-align: center;
}

/* Title */
.client-strip-title {
    font-size: 36px;
    font-weight: 700;
    color: #0657A3;
    margin-bottom: 15px;
}

/* Subtitle */
.client-strip-subtext {
    font-size: 18px;
    color: #333;
    margin-bottom: 45px;
}

/* Logo strip wrapper */
.client-strip-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

/* Each logo item */
.client-strip-item {
    width: 150px;
    height: 70px;
    border-radius: 50px; /* pill shape */
    background: white;
    border: 2px solid #d6e6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Logo images */
.client-strip-item img {
    width: 70%;
    filter: grayscale(100%);
    transition: 0.3s;
}

/* Hover effects */
.client-strip-item:hover {
    border-color: #0657A3;
    box-shadow: 0 0 15px rgba(0, 87, 163, 0.3);
    transform: translateY(-4px);
    background: #ffffff;
}

.client-strip-item:hover img {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 600px) {
    .client-strip-item {
        width: 130px;
        height: 60px;
    }
}
