
body {
    font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

p, li, span, a {
    font-weight: 400;
    color: #fff;
}

.services-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* SERVICE CARD */
.service-card {
    min-width: 250px;
    background: #f8fbfe;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0d2e4a;
    margin-bottom: 12px;
    text-align: center;
}

.service-card p {
    font-size: 14px;
    color: #5a6f84;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

/* BUTTON */
.btn {
    align-self: center;
    margin-top: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #0d2e4a;
    color: #0d2e4a;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background: #0d2e4a;
    color: #fff;
}

/* ARROWS */
.nav {
    background: #0d2e4a;
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav.prev {
    margin-right: 10px;
}

.nav.next {
    margin-left: 10px;
}

.nav:hover {
    background: #06325c;
}

.faq-wrapper {
    background: radial-gradient(circle at top right, #e9f5ff, #ffffff);
    padding: 70px 20px;
}

.faq-inner {
    max-width: 1200px;
    margin: auto;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b5cab;
    margin-bottom: 30px;
}

/* Layout */
.faq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* FAQ BOX */
.faq-list {
    flex: 1;
    border: 1px solid #8fc4e8;
}

.faq-item {
    border-bottom: 1px solid #8fc4e8;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question */
.faq-question {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Highlight word */
.highlight {
    background: #1e7ad6;
    color: #fff;
    padding: 2px 6px;
    margin-right: 4px;
}

/* Icon */
.icon {
    width: 20px;
    height: 20px;
    background: #555;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* Answer */
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    content: "-";
}

/* Image */
.faq-image img {
    max-width: 320px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-image {
        text-align: center;
        margin-top: 30px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    background: #6a2c91;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #2ea915;
    transform: translateY(-2px);
}

.compliance-banner {
    background: linear-gradient(135deg, #ddcfcf, #88a5f2);
    padding: 60px 10px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
}

.banner-content {
    flex: 1;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content h1 span {
    color: #2b5cff;
}

.banner-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2b5cff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.banner-btn:hover {
    background-color: #1f45cc;
}

.banner-image {
    flex: 1;
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 32px;
    }
}

.compliance-audit-section {
    padding: 70px 20px;
    background-color: #f9fbff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #1a1a1a;
}

.section-title span {
    padding-right: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background-color: #2b5cff;
}

.section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.audit-list {
    list-style: none;
    padding: 0;
}

.audit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.audit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #2b5cff;
    border-radius: 50%;
}

/* body {
    font-family: Arial, sans-serif;
    background: #f4f7ff;
    padding: 60px 20px;
} */

/* Section */
.services-section {
    max-width: 1500px;
    /* margin: auto; */
}
.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #506fd5;
    display: block;
    margin: 15px auto 0;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 280px;
}

/* Front Content */
.service-front {
    text-align: center;
    transition: 0.4s ease;
}

.service-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-front h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Hover Content */
.service-content {
    position: absolute;
    inset: 0;
    background: #2b5cff;
    color: #ffffff;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.4s ease;
    display: flex;
    align-items: center;
}

.service-content ul {
    padding-left: 18px;
}

.service-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-front {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .service-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
}


.book-demo {
    text-align: center;
    margin-top: 40px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #2b5cff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #1f45cc;
    transform: translateY(-3px);
}

.btn-icon {
    transition: 0.3s ease;
}

.quote-btn:hover .btn-icon {
    transform: translateX(5px);
}



.why-audit-section {
    padding: 80px 20px;
    background: #eef6fc;
}

.why-audit-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Icon */
.why-audit-icon img {
    width: 80px;
    height: auto;
}

/* Content */
.why-audit-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.why-audit-content h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #2b5cff;
    display: block;
    margin-top: 12px;
}

/* List */
.why-audit-list {
    list-style: none;
    padding: 0;
}

.why-audit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.why-audit-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #2b5cff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .why-audit-container {
        flex-direction: column;
        text-align: center;
    }

    .why-audit-list li {
        padding-left: 0;
    }

    .why-audit-list li::before {
        position: static;
        margin-right: 8px;
    }
}




.other-services {
    padding: 80px 20px;
    background: #f8fbff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.services-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.service-card {
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    color: #2b5cff;
}

.btn:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.nav {
    background: #2b5cff;
    color: #fff;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.nav:hover {
    background: #1f45cc;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: #2b5cff;
    color: #fff;
}

.btn-primary:hover {
    background: #1f45cc;
    transform: translateY(-3px);
}





.grc-section {
    padding: 30px 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.grc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(49, 16, 62, 0.6);
}

.container {
    max-width: 100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    opacity: 0.9;
}

.grc-content {
    display: flex;
    align-items: flex-start;   /* correct value */
    justify-content: space-between;
    gap: 50px;                 /* reasonable spacing */
    flex-wrap: wrap;
}

.features {
    flex: 3;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #6A9AAA;
    border-radius: 50%;
    margin-right: 15px;
}

.grc-image {
    flex: 1;
    text-align: center;
}

.grc-image img {
    width: 120px;
    height: 220px;
    object-fit: cover;
    border-radius: 10%; /* circle */
}

.section-bottom-text {
    text-align: center;
    margin: 40px 0;
    font-size: 15px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #6A9AAA;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #4e7f7f;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .grc-content {
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}

.cta-btn {
    display: inline-block;
    background-color: #180660;   /* primary brand color */
    color: #fff;                 /* text color */
    padding: 14px 32px;          /* size of button */
    border-radius: 8px;          /* rounded corners */
    font-size: 18px;             /* readable font */
    font-weight: 600;            /* semi-bold */
    text-decoration: none;       /* remove underline */
    transition: all 0.3s ease;   /* smooth hover effect */
}

.cta-btn:hover {
    background-color: #005f86;  /* darker shade on hover */
    transform: translateY(-2px); /* subtle lift effect */
    text-decoration: none;
}

