﻿
/* ===============================
           Global Reset & Base
        ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

/* ===============================
           Common Utilities
        ================================ */
.page-section {
    padding: 20px;
}

    .page-section h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-section p {
        font-size: 16px;
        line-height: 1.6;
    }

.service-type {
    color: #2aa3db;
}

.hbg {
    background-color: #2aa3db;
    color: #ffffff;
}

/* ===============================
           Main Heading & Text
        ================================ */
.main-title {
    font-size: 42px;
    color: #2aa3db;
    text-align: center;
}

.main-para {
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
    font-size: 16px;
}

/* ===============================
           USP Section
        ================================ */
.usp-section {
    width: 100%;
    padding: 60px 20px;
    background: #fafafa;
}

.usp-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #007bff;
    margin-bottom: 10px;
}

.usp-sub {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===============================
           USP Icons
        ================================ */
.icon-wrap {
    min-width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.c1 {
    background: linear-gradient(135deg,#7b61ff,#00c2ff);
}

.c2 {
    background: linear-gradient(135deg,#ff7bac,#ffb86b);
}

.c3 {
    background: linear-gradient(135deg,#6ee7b7,#3b82f6);
}

.c4 {
    background: linear-gradient(135deg,#ff9f7c,#ff5fa2);
}

.c5 {
    background: linear-gradient(135deg,#ffc107,#ff5722);
}

.c6 {
    background: linear-gradient(135deg,#20e3b2,#00aaff);
}

/* ===============================
           Card Content
        ================================ */
.usp-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #324361;
}

.usp-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ===============================
           Buttons (Static)
        ================================ */
.btn-animated {
    background: #2aa3db;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

/* ===============================
           Cards (Static)
        ================================ */
.training-card,
.process-card,
.case-card {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-body {
    background: #ffffff;
}

/* ===============================
           Responsive
        ================================ */
@media (max-width: 920px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 30px;
        text-align: left;
        padding: 0 15px;
    }

    .page-section h1 {
        font-size: 20px;
    }

    .main-para {
        font-size: 14px;
        padding: 0 15px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .btn-animated {
        font-size: 14px;
        padding: 10px 20px;
    }
}


