* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: rgb(255, 244, 255);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}
.logo {
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.estimate-btn {
    background: RGB(41, 170, 243);
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
}

.menu-icon {
    font-size: 26px;
    cursor: pointer;
}

.menu-icon a{
    color: black;
    text-decoration: none;
}

.estimate-btn:hover{
    background: #7a2f7a;
    color: #ffffff;
    transform: translateY(-3px);
}

/* HERO */

.hero-slider {
    position: relative;
    width: 300px;
    margin: 40px auto 0;
}

.hero-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-img.active {
    opacity: 1;
    position: relative;
}


.hero {
    background: linear-gradient(90deg, #3a8dde, #6a3c78, #d28b2f);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
}

.highlight {
    color: #f5b400;
}

.hero-img {
    margin-top: 30px;
    max-width: 300px;
}

/*STAT*/
.stats {
    margin-top: -80px;
    display: flex;
    justify-content: center;
}

.stat-box {
    background: #fbf6fb;
    border-radius: 30px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat img {
    height: 80px;
}

.stat h2 {
    color: #6a2c70;
    font-size: 36px;
    margin: 0;
}

.stat p {
    margin: 5px 0 0;
}

.divider {
    width: 1px;
    height: 60px;
    background: #ccc;
}

/*INDUSTRIES*/
.industries {
    padding: 80px 20px;
    text-align: center;
}

.industries h2 {
    font-size: 36px;
    color: #6a2c70;
    margin-bottom: 50px;
}

.industry-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.industry-card {
    width: 200px;
    padding: 30px 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 0 0 1px #eee;
    transition: 0.3s;
}

.industry-card img {
    height: 50px;
    margin-bottom: 15px;
}

.industry-card p {
    font-weight: 600;
    color: #6b7280;
}

/*HEALTHCARE*/
.healthcare-section {
    background-image: url("images/healthcare-bg.png"); /* your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
}

.healthcare-container {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 40px;
}

/* LEFT CONTENT */
.healthcare-content {
    flex: 1;
}

.healthcare-content h2 {
    margin-bottom: 15px;
}

.healthcare-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.healthcare-list li {
    background: #f3fbff;
    border-left: 4px solid #2ea3f2;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
}

/* RIGHT IMAGE */
.healthcare-image img {
    width: 100%;
    border-radius: 15px;
}

/*CLIENTS*/
.clients {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.clients h2 {
    font-size: 42px;
    color: #6a2c70;
    margin-bottom: 50px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logos img {
    max-height: 45px;
    opacity: 0.6;
    filter: grayscale(100%);
}

/*SERVICES*/
.services {
    padding: 80px 40px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    color: #6a2c70;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.service-card img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    color: #6a2c70;
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card p {
    line-height: 1.7;
    font-size: 16px;
}

/*CUSTOMERS*/
.customers-section {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.customers-section h2 {
    font-size: 42px;
    color: #7a2f7a;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-box {
    padding: 35px;
    border: 1px solid #cfd4df;
    transition: 0.3s;
}

.feature-box:hover {
    background: #7a2f7a;
    color: white;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}


/*TESTIMONIAL*/
.testimonial {
    background-image: url("../image/healthcare-bg.png"); /* your image */
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-overlay {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 60px;
}

.testimonial-card {
    background: #ffffff;
    max-width: 480px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-card h3 {
    color: #6a2c70;
    margin-bottom: 5px;
    transition: color 0.4s ease;
}

.testimonial-card .company {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #333;
    line-height: 1.7;
    font-size: 15px;
}

/* 🔥 HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.testimonial-card:hover h3 {
    color: #35b6ff;
}

/*AWARDS*/
.awards {
    display: flex;
    gap: 30px;
    padding: 60px;
    justify-content: center;
    background: #fff;
}

.award-card {
    width: 330px;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #ddd;
    transition: all 0.4s ease;
    cursor: pointer;
}

.award-card img {
    max-width: 180px;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.award-card h3 {
    color: #6a2c70;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.award-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* 🔥 HOVER EFFECT */
.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award-card:hover img {
    transform: scale(1.08);
}

.award-card:hover h3 {
    color: #35b6ff;
}

/*cta*/
.cta-section {
    background-color: #35b6ff;
    text-align: center;
    padding: 100px 20px;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-section p {
    max-width: 900px;
    margin: 50px auto 0;
    font-size: 22px;
    line-height: 1.6;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #7a2f7a;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
.cta-btn:hover {
    background: #7a2f7a;
    color: #ffffff;
    transform: translateY(-3px);
}


/*--FOOTER--*/
.footer {
    background: #75356f;
    color: #fff;
    padding: 60px 80px 30px;
}

/* Top section */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Divider */
.footer hr {
    margin: 40px 0 20px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.5);
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 16px;
}

/* Social icons */
.social-icons a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    background: #fff;
    color: #75356f;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/*COOKIE*/
.cookie-notice {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}
        
.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
        
.cookie-text {
    flex: 1;
    text-align: left;
    margin-right: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: #5d9cec;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}



/* ACTIVE CARD 
.industry-card.active {
    border: 2px solid black;
}

.industry-card.active p {
    color: #1e90ff;
}


@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
*/
