body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: white;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.home-btn {
    text-decoration: none;
    color: #2563eb;
}

/* SECTION */
.solution-section {
    padding: 80px 10%;
}

.container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.reverse .container {
    flex-direction: row-reverse;
}

/* TEXT */
.text h2 {
    font-size: 34px;
    color: #1e3a8a;
}

.text p {
    color: #555;
}

/* ICON */
.icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

/* LIST */
ul {
    padding: 0;
    margin-top: 20px;
}

ul li {
    list-style: none;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* IMAGE */
.image img {
    width: 100%;
    border-radius: 20px;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .reverse .container {
        flex-direction: column;
    }

    .text h2 {
        font-size: 26px;
    }
}
/* AI SECTION */
.ai-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    text-align: center;
    padding: 80px 10%;
}

.ai-section h4 {
    color: #c7d2fe;
    margin-bottom: 10px;
}

.ai-section h2 {
    font-size: 36px;
}

.ai-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* AI CARD */
.ai-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.ai-card:hover {
    transform: translateY(-10px);
}

/* INDUSTRIES */
.industries {
    text-align: center;
    padding: 80px 10%;
}

.industry-list {
    margin-top: 30px;
}

.industry-list span {
    display: inline-block;
    background: white;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .ai-cards {
        flex-direction: column;
    }
}
/* Smooth global feel */
body {
    scroll-behavior: smooth;
}

/* Better spacing */
.solution-section {
    padding: 100px 10%;
}

/* Image polish */
.image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.image img {
    width: 80%;          /* 👈 reduce size */
    max-width: 420px;   /* 👈 control max size */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.image img:hover {
    transform: scale(1.03);
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.text {
    flex: 1;
}

.image {
    flex: 1;
    text-align: center;
}

/* Card hover polish */
.ai-card {
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255,255,255,0.12);
}

/* Better text */
.text p {
    font-size: 16px;
    line-height: 1.7;
}

/* Heading polish */
.text h2 {
    margin-bottom: 10px;
}

/* Industry chips hover */
.industry-list span {
    transition: 0.3s;
}

.industry-list span:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* NAVBAR polish */
.navbar {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* BUTTON (if you add later) */
.btn {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
}
.cta {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #1e3a8a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}
/*images don’t look weird on mobile:*/
@media(max-width: 900px) {
    .image img {
        width: 100%;
        max-width: 300px;
    }
}