/* ================= GENERAL ================= */
.services-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ================= HERO ================= */
.services-hero {
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding: 6rem 2rem;
    position: relative;
}

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p.lead {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
    }

/* Hero Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}

    .hero-shape.shape1 {
        width: 200px;
        height: 200px;
        top: 50px;
        left: 30px;
    }

    .hero-shape.shape2 {
        width: 150px;
        height: 150px;
        bottom: 30px;
        right: 50px;
    }

 
/* ================= SERVICE CARDS ================= */
.service-card {
    border-radius: 70px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff; /* keep text readable on dark gradient */
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    padding: 2rem 1.5rem;
    /* Flex layout to organize content */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.service-image-wrapper {
  width: 100%;
  height: 200px; /* same height for all images */
  overflow: hidden;
  border-radius: 8px; /* optional rounding */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* optional shadow */
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container without distortion */
}

    /* Hover effect: lift card slightly */
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    }

    /* Icon styling */
    .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: rgba(255,255,255,0.9);
        transition: transform 0.3s ease;
    }

    /* Icon animation on hover */
    .service-card:hover i {
        transform: rotate(10deg) scale(1.1);
    }

    /* Card title */
    .service-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    /* Middle content */
    .service-card p {
        margin-bottom: 0.5rem;
    }

    /* "Find Out More" at the bottom */
    .service-card .p-bottom {
        margin-top: auto; /* pushes it to bottom */
        font-weight: 700;
        color: #ffffff;
         letter-spacing: 0.5px;
    } */

    
    /* Optional: subtle hover color change for bottom text */
    .service-card:hover .p-bottom {
        color: #c0e0ff;
    }

     .card-bg {
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease, box-shadow 0.3s ease;
        }

        .card-bg:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
        }

        .glass-overlay {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%);
            backdrop-filter: blur(8px);
        }

        .gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .check-icon {
            color: #34d399;
        }

/* ================= CTA SECTION ================= */



.cta {
    max-width: 100%;
    margin: 0;
    color: white;
}


section.bg-primary {
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding: 4rem 2rem;
}

.bottom-question h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: lightgray;
}

.btn-primary {
    padding: 16px 38px;
  background: linear-gradient(135deg, #1cc88a, #17a673);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(28, 200, 138, 0.4);
  transition: all 0.35s ease;
}

    .btn-primary:hover {
        background: #14ab30;
        transform: translateY(-2px);
    }

.btn-outline-secondary {
    border: 2px solid #2c5364;
    color: #2c5364;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-outline-secondary:hover {
        background: #2c5364;
        color: #ffffff;
        transform: translateY(-2px);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p.lead {
        font-size: 1rem;
    }
}


/* Footer */

.footer-names {
    color: white;
}
.p,footer {
    font-size: 1rem;
    color: white;

}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-cta {
    background: linear-gradient(135deg, #203a43, #2c5364);
    text-align: center;
    padding: 3rem 1rem;
}

.footer-cta h3 {
    color: lightgray;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-social {
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: #cbd5f5;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            color: #0a66c2;
        }

    .footer-year {
        color: white;
        text-align: center;
        padding: 15px;
    }


.linkedin-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}
