 
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;  
}


/* NAVBAR ABOVE HERO */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1050;
    background: #fff;
}

.logo-img {
    height: 50px;  
    transition: height 0.3s;  
}
 
@media (max-width: 768px) {
    .logo-img {
        height: 30px;  
    }
}

@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        position: absolute;
        top: 70px; /* same as navbar height */
        left: 0;
        width: 100vw; /* FULL mobile width */
        background: #682ca8;
        padding: 15px 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .main-navbar .navbar-nav {
        width: 100%; 
    }

    .main-navbar .nav-link {
        color: #fff !important;
        padding: 12px 0;
        font-weight: 500;
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: #f1e8ff !important;
    }
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        transition: all 0.3s ease;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        margin: 4px 0;
    }
}


/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */

    padding-top: 70px; /* space for navbar */
    background: #000;

    /* IMPORTANT */
    overflow: visible;  /* DO NOT BLOCK SCROLL */
}


/* BACKGROUND */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}
 
 
.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 20px 160px; /* bottom padding allows scroll */
}

/* OVERLAP CONTAINER */
.hero-overlap {
    position: relative;
    margin-top: 80px;
    height: 420px;           
    max-width: 100%;
}

/* IMAGE (RIGHT SIDE) */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 
 
    clip-path: polygon(
        0 0,        
        100% 0,     /* top-right */
        100% 100%,  /* bottom-right */
        40% 100%    /* bottom-left */
    );
}

/* PURPLE OVERLAY */
.hero-purple {
    position: absolute;
    left: 0;
    top: 0;
    width: 85%;
    height: 100%;
    background: rgba(104, 44, 168, 0.9);
    color: #fff;
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* OVERLAY CURVE */
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;

    z-index: 2;

    clip-path: polygon(
        0 0,          
        60% 0,        
        75% 100%,      
        0 100%        
    );
}

/* TEXT */
.hero-purple h2 {
    font-size: 2.6rem;
    font-weight: bold;
}

.hero-purple p {
    margin-top: 15px;
    max-width: 390px;
    font-size: 1.6rem;
    font-weight: bold;
}

/* ========================Breathe in text on hero ============================ */
.breathe-text span {
    opacity: 0;
    display: inline-block;
    animation: breatheIn 0.6s ease forwards;
}

@keyframes breatheIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hero-overlap {
        height: auto;
    }

    .hero-image,
    .hero-purple {
        position: relative;
        width: 100%;
        height: 260px;
        border-radius: 0;
    }

    .hero-purple {
        padding: 30px;
    }
}

/* MOBILE override */
@media (max-width: 768px) {
    .hero-purple {
        width: 90%;           /* wider for mobile */
        padding: 20px;        /* smaller padding */
        clip-path: polygon(
            0 0,            /* top-left */
            85% 0,          /* top-right */
            100% 100%,      /* bottom-right */
            0 100%          /* bottom-left */
        );
    }

    .hero-purple h2 {
        font-size: 1.4rem;   /* smaller heading */
        line-height: 1.2;
    }

    .hero-purple p {
        font-size: 1rem;     /* smaller paragraph */
        line-height: 1.5;
    }
}
 
.cta-button {
    display: inline-block;
    background-color: #682ca8; /* Purple color */
    color: #fff; /* White text */
    padding: 15px 30px;
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(104, 44, 168, 0.4);
}

.cta-button:hover {
    background-color: #7f3fd6; /* lighter purple on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(104, 44, 168, 0.5);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


.training-services {
    padding: 30px 0;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    max-width: 700px;
}

.title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-wrap h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #5b2d8b;
}

.title-wrap span {
    color: #8e44ad;
}

.text-section{
    margin: 20px 0;
    color: #000000; 
    line-height: 1.6;
}

.divider {
    width: 140px;
    height: 3px;
    background: #8e44ad;
    display: inline-block;
}

@media (max-width: 768px) {

    .training-services {
        padding: 60px 0;
    }

    .section-header {
        text-align: left;
        margin-bottom: 40px;
    }

    .title-wrap {
        gap: 10px;
    }

    .title-wrap h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


/* Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    background: #6a2dbf; /* your purple */
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(106, 45, 191, 0.25);
}

.service-card:hover h3,
.service-card:hover h5,
.service-card:hover p {
    color: #ffffff;
}

.service-card svg {
    width: 28px;
    height: 28px;
    fill: #6a2dbf;
    transition: fill 0.3s ease;
}

.service-card:hover svg {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
}

.card-icon {
    font-size: 28px;
    color: #8e44ad;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;    
    font-weight: 800;
    margin-bottom: 6px;
}

.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #000 !important;
}
 


@media (max-width: 768px) {

    .service-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .service-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .service-card h3 {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    .service-card h5 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}


/* Images */
.service-images {
    width: 100%;
    margin-top: 30px;
}

/* Image wrapper controls size */
.img-box {
    width: 100%;
    height: 100%;
    min-height: 340px;       
    border-radius: 12px;
    border: 5px solid #6a2dbf; 
    overflow: hidden;
}
.box-img {
    height: 50%;
    width: 100%;
    object-fit: cover;
}
 
/* Image fills the column */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop enhancement */
@media (min-width: 768px) {
    .img-box {
        min-height: 420px;
    }
}


/* For Icons */
:root {
    --primary-purple: #6a2dbf;
}

.icon-svg svg,
.card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--primary-purple);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-icon {
    margin-bottom: 15px;
}

.service-images {
    margin-top: 40px;
}

.img-box {
    width: 100%;
    height: 100%;
    min-height: 300px;      
    border-radius: 14px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Iso Section */

.iso-programs {
    background: #fff;
    padding: 40px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .iso-programs {
        padding: 20px 0;
    }
}

.iso-programs .container {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
}


.iso-header {
    display: flex;
    align-items: center;
    gap: 10px;
} 

.iso-icon svg {
    width: 28px;
    height: 28px;
    fill: #6a2dbf;  
}

.iso-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4b1f7a;
}

.iso-icon {
    font-size: 22px;
    color: #8e44ad;
}

.iso-text {
    max-width: 700px;
    margin: 20px 0 40px;
    color: #444;
}

/* Grid */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.iso-grid ul {
    list-style: none;
    padding: 0;
}

.iso-grid li {
    background: #ffffff;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 6px 14px rgba(106, 45, 191, 0.08);
}

.iso-grid li::before {
    content: "✔";
    color: #6a2dbf;
    font-weight: bold;
    margin-top: 2px;
}


/* Mobile */
@media (max-width: 768px) {
    .iso-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .iso-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .iso-header h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .iso-icon svg {
        width: 24px;
        height: 24px;
    }
}

.iso-column {
    background: #faf8fd;
    padding: 20px;
    border-radius: 14px;
}
.iso-column p,
.iso-column li {
    color: #000;
}

@media (max-width: 768px) {
    .iso-column {
        padding: 18px;
    }
}

/* About, who we are */

.section-title {
    color: #5a2ca0;
    font-weight: 700;
    font-size: 1.8rem;
}

.section-text {
    max-width: 700px;
    color: #555;
}
 
.section-logo {
    max-width: 320px;
    border-radius: 14px;
}


.qa-card {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
}

.purple-card {
    background: #6a2dbf;
    color: #fff;
}

.icon-circle {
    background: #6a2dbf;
    color: #fff;
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 8px;
}

.qa-item {
    background: #f6f1fb;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.qa-list {
    padding-left: 0;
    list-style: none;
}

.qa-list li {
    padding: 8px 0;
    font-size: 0.9rem;
}

.text-light-purple {
    color: #8e6ccf; 
 
}
/* 

/* Section */
.consultancy-auditing {
    background: #6a2dbf;
     margin: 0 auto;
}

/* Section Header */
.title-section {
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.section-text {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto;
}

/* Service Cards */
.service-box {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
}

/* Icon */
.service-icon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 14px;
    transition: all 0.35s ease;
}

/* Card Text */
.service-box h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.35s ease;
}

.service-box p {
    color: rgba(255,255,255,0.9);
    font-size: 14.5px;
    transition: color 0.35s ease;
}

/* Hover Effect */
.service-box:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.service-box:hover h6,
.service-box:hover p {
    color: #6a2dbf;
}

.service-box:hover .service-icon {
    color: #6a2dbf;
}


.image-cover {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Image fills container with border */
.img-cover {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.rounded-img {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop enhancement */
@media (min-width: 768px) {
    .image-cover {
        min-height: 320px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .image-cover {
        min-height: 220px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
    }

    .section-logo {
        margin-top: 10px;
    }
}


/*For Services Only  */
:root {
    --purple:#6b2fa5;
    --light-purple:#f3eaff;
}

/* General */
.section-title { color: var(--purple); font-weight:700; }
.section-subtitle { max-width:600px; }

/* Services */
.service-card {
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.06);
}
.service-icon {
    width:50px;
    height:50px;
    background:var(--purple);
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}
.service-card ul {
    padding-left:18px;
}
.service-card li {
    font-size:14px;
}

/* Commitment */
.service-commitment {
    background:var(--purple);
    color:#fff;
    padding:30px;
    border-radius:18px;
}

/* Training */
.training-section { background:#faf7ff; }
.check-item {
    display:block;
    background:#fff;
    padding:10px 15px;
    border-radius:10px;
    font-size:14px;
}
.training-commitment {
    background:var(--purple);
    color:#fff;
    padding:30px;
    border-radius:18px;
}

/* Quality */
.qa-box {
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 6px 20px rgba(0,0,0,.05);
}
.qa-box ul {
    padding-left:18px;
}
.qa-mini-box {
    background:#fff;
    padding:20px;
    border-radius:16px;
}
.bg-purple {
    background:var(--purple)!important;
}


/* Footer Style */

.site-footer {
    background: linear-gradient(135deg, #5b1fa6, #6a2dbf);
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
}

/* Logo */
.footer-logo {
    max-width: 180px;
}

/* Text */
.footer-text {
    font-size: 14.5px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Social */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #6a2dbf;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 8px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.footer-newsletter button {
    background: #fff;
    color: #6a2dbf;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background: #f1e8ff;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
}

/* Back To Top */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6a2dbf;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.footer-services {
    max-width: 260px;
}

.footer-logo {
    max-width: 180px;
    border-radius: 30%;
    /* background: #fff;          */
    padding: 6px;            
}

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6a2dbf;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-newsletter {
        flex-direction: column;
    }
}



.qa-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.qa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qa-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .qa-image {
        height: 220px;
    }
}



/*================================= About hero section =====================================*/
.about-section {
    position: relative;
    height: 50vh;          /* 👈 50% of viewport height */
    min-height: 300px;     /* prevents it from being too small on mobile */
    overflow: hidden;
}

/* Background Image */
.about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(90, 30, 160, 0.6),
        rgba(90, 30, 160, 0.6)
    );
    z-index: 2;
}

/* Content Centering */
.about-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    text-align: center;
    color: #fff;
}

.about-content h1 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}


/* ============================   Contact     ================================= */
:root {
    --light-bg: #f7f4fb;
}

.contact-section {
    background: #fff;
}

/* Header */
.contact-title {
    color: var(--purple);
    font-weight: 700;
}

.contact-subtitle {
    color: #666;
    font-size: 15px;
}

.contact-logo {
    max-width: 130px;
}

/* Cards */
.contact-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(106,45,191,0.08);
}

/* Titles */
.card-title {
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Locations */
.location-block {
    margin-bottom: 15px;
}

.location-block p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Info rows */
.info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.info-row i {
    color: var(--purple);
    font-size: 18px;
    margin-top: 4px;
}

/* Key Contacts */
.contact-person {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.person-icon {
    width: 45px;
    height: 45px;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.contact-person span {
    display: block;
    font-size: 13px;
    color: #777;
}

/* Office Hours */
.hours-row {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}


/* ========================     Modals       ============================= */
.bg-purple {
    background: #6a2dbf;
}

.btn-purple {
    background: #6a2dbf;
    color: #fff;
    border: none;
}

.btn-purple:hover {
    background: #5b1fa6;
    color: #bf9bea;
}

.form-section {
    font-weight: 600;
    color: #6a2dbf;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
    margin-bottom: 12px;
}
