﻿
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    background-color: #f8f9fc;
}

.text-content {
    flex: 1;
    min-width: 320px;
    padding-right: 40px;
}

    .text-content h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #000;
    }

    .text-content h3 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 20px;
        color: #0072bc;
    }

    .text-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .text-content ul {
        list-style-type: disc;
        padding-left: 20px;
    }

.image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .image-content img {
        width: 100%;
        max-width: 380px;
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

.exp-box {
    background-color: #17a2b8;
    color: #fff;
    padding: 10px 65px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
    }

    .image-content img {
        margin-top: 20px;
    }
}



:root {
    --accent: #0a66b2;
    --accent-light: #1e90ff;
    --muted: #6b7280;
    --bg: #ffffff;
    --container-max: 1100px;
    --ring: #2d9cff;
}

* {
    box-sizing: border-box
}

body {
    font-family: "Poppins",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
    margin: 0;
    color: #07203a;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* huge faded background word */
.hero-bg {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 140px;
    color: rgba(3,37,65,0.06);
    letter-spacing: 8px;
    pointer-events: none;
    z-index: 0;
}

/* main centered container */
.container {
    max-width: var(--container-max);
    margin: 80px auto;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* left decorative spine image */
.decor-spine {
    position: absolute;
    left: -60px;
    top: 120px;
    width: 170px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

/* header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 40px;
}

    .section-header .kicker {
        display: block;
        font-size: 12px;
        letter-spacing: 1px;
        color: var(--muted);
        margin-bottom: 8px;
    }

    .section-header h1 {
        margin: 0;
        font-size: 28px;
        letter-spacing: 1px;
        color: #08233b;
        font-weight: 700;
    }

.divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg,var(--accent),var(--accent-light));
    margin: 16px auto;
    border-radius: 4px;
}

.section-header .intro {
    font-size: 13px;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 1.6;
}

/* services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    margin-top: 36px;
    align-items: start;
    padding: 20px;
}

/* each service box */
.service-card {
    text-align: center;
    background: transparent;
}

/* round image with ring and shadow */
.service-thumb {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.9));
    box-shadow: 0 18px 40px rgba(7,32,58,0.08);
    position: relative;
    border: 3px solid rgba(42,140,255,0.12);
}

    /* thin blue ring */
    .service-thumb::after {
        content: "";
        position: absolute;
        inset: 6px;
        border-radius: 50%;
        pointer-events: none;
        box-shadow: 0 0 0 3px rgba(45,156,255,0.12);
    }

/* image itself */
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* title and read more */
.service-title {
    margin: 8px 0 10px;
    font-size: 15px;
    color: #073049;
    font-weight: 600;
}

.read-more {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.3px;
    font-weight: 600;
    display: inline-block;
    margin-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
}

    .read-more:hover {
        color: var(--accent-light);
        border-bottom-color: var(--accent-light);
    }

/* CTA button */
.cta-wrap {
    text-align: center;
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    background: #07243f;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(7,32,58,0.12);
}

/* RESPONSIVE */
@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 36px;
    }

    .decor-spine {
        left: -40px;
        width: 140px;
        top: 110px;
    }

    .hero-bg {
        font-size: 110px;
    }
}

@media (max-width:900px) {
    .services-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 28px;
    }

    .hero-bg {
        display: none;
    }

    .decor-spine {
        display: none;
    }

    .section-header h1 {
        font-size: 22px;
    }

    .container {
        margin-top: 50px;
        padding: 24px;
    }
}

@media (max-width:520px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-thumb {
        width: 130px;
        height: 130px;
    }

    .service-title {
        font-size: 14px;
    }
}





/* Section wrapper */
.conditions-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Heading */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 32px;
        color: #800000; /* red-ish as in your image */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Cards container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

/* Each card */
.condition-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

/* Content area */
.card-content {
    padding: 24px;
    flex: 1;
}

    .card-content h3 {
        font-size: 20px;
        color: #0b2c5c;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
        color: #4a4a4a;
    }

    .card-content .know-more {
        font-size: 14px;
        color: #0b2c5c;
        text-decoration: underline;
        font-weight: 600;
    }

/* Image area */
.card-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}



:root {
    --accent: #0b4f73;
    --accent-2: #1aa7ff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #fbfbfb;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.conditions-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 48px 20px;
    text-align: center;
}

.heading h2 {
    margin: 0;
    font-size: 34px;
    color: var(--accent);
    font-weight: 700;
}

.underline {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg,var(--accent),var(--accent-2));
    margin: 12px auto 20px;
    border-radius: 4px;
}

.heading p {
    max-width: 900px;
    margin: 0 auto 28px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* -------- SWIPER AREA -------- */
.swiper {
    width: 100%;
    padding-bottom: 28px;
}

/* ensure slides align horizontally */
.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Card style */
.card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(10,30,60,0.08);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 40px rgba(10,30,60,0.12);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

.card-content {
    padding: 18px 16px;
    display: flex;
    align-items: center;
}

    .card-content h3 {
        margin: 0;
        font-size: 18px;
        color: var(--accent);
        font-weight: 600;
        text-align: left;
        width: 100%;
    }

/* navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    /* background: #fff; */
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(10,30,60,0.12);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
        font-weight: 700;
    }

/* pagination dots */
.swiper-pagination-bullets {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: #bcdfea;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    transform: scale(1.05);
}

.see-more {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
}

    .btn:hover {
        background: #0e6b90;
    }

/* responsiveness */
@media (max-width:1024px) {
    .card img {
        height: 200px;
    }

    .heading h2 {
        font-size: 30px;
    }
}

@media (max-width:768px) {
    .conditions-section {
        padding: 36px 16px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width:520px) {
    .card {
        max-width: 92%;
    }

        .card img {
            height: 170px;
        }
    /* hide arrow buttons on very small screens to avoid overlap */
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}


.section .heading h2 {
    margin: 0 0 8px 0;
    font-size: 30px;
    color: var(--accent);
    font-weight: 700;
}

.underline {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg,var(--accent),var(--accent-2));
    margin: 12px auto 18px;
    border-radius: 4px;
}

.section p {
    max-width: 900px;
    margin: 0 auto 22px;
    color: #555;
    line-height: 1.65;
}

/* Shared Swiper styling */
.swiper {
    width: 100%;
    padding-bottom: 26px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(10,30,60,0.06);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 40px rgba(10,30,60,0.12);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

.card-content {
    padding: 18px 16px;
    display: flex;
    align-items: center;
}

    .card-content h3 {
        margin: 0;
        font-size: 18px;
        color: var(--accent);
        font-weight: 600;
        text-align: left;
        width: 100%;
    }

/* Navigation buttons style (shared) */
.swiper-button-next, .swiper-button-prev {
    /* background: #fff; */
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(10,30,60,0.12);
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 16px;
        font-weight: 700;
    }

/* Pagination bullets */
.swiper-pagination-bullet {
    background: #c9e9fb;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.see-more {
    margin-top: 18px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 700;
}

    .btn:hover {
        background: #0e6b90;
    }

/* responsive */
@media (max-width:1024px) {
    .card img {
        height: 200px;
    }
}

@media (max-width:768px) {
    .section {
        padding: 28px 10px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width:520px) {
    .card {
        max-width: 92%;
    }

        .card img {
            height: 170px;
        }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}
