/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e69d30;
    --dark-color: #2c3e50;
    --text-color: #444;
    --light-bg: #f9f9f9;
    --footer-bg: #2d2d2d;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.main-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: 1px solid #ddd;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 25px;
    color: #000;
    /* Soft blue color from image */
    font-weight: 400;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 16px;
    color: #888;
    /* font-style: italic; */
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

.close-menu {
    display: none;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    /* max-width: 480px; */
    color: #fff;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-content-box h2 {
    font-size: 25px;
    /* margin-bottom: 15px; */
    color: #fff;
    font-weight: 400;
}

.hero-content-box p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 2px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d88a10;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 157, 48, 0.4);
}

.btn-secondary:hover {
    background-color: #d88a10;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 157, 48, 0.4);
}

.read-more:hover {
    color: #d88a10;
    text-decoration: underline;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: #e69d30;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.client-logo {
    width: 120px;
    opacity: 1;
    transition: 0.3s;
}

.client-logo:hover {
    /* opacity: 1; */
}

/* Features/Services Section */
.services-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 20px;
}

.feature-icon {
    font-size: 80px;
    color: #111;
    margin-bottom: 30px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

.read-more {
    color: #e69d30;
    font-size: 14px;
    font-weight: 600;
}

/* CTA Section */
.cta-quote {
    padding: 40px 0;
    background: #f9f9f9;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
    padding: 30px 45px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.cta-text {
    flex: 1;
    margin-right: 40px;
}

.cta-text h3 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

.cta-text p {
    font-size: 14px;
    color: #000;
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: center;
}

.info-item {
    padding: 10px;
}

.info-icon {
    /* font-size: 80px; */
    color: #000;
    /* margin-bottom: 25px; */
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

.founder-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 2px;
    margin: 0 auto 25px;
    display: block;
}

/* Certification Section */
.cert-short {
    padding: 60px 0;
    text-align: left;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.cert-short h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cert-short p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

/* Footer Styles */
.main-footer {
    background: #2d2d2d;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e69d30;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 15px;
    border-bottom: 1px solid dimgrey;
}

.footer-col ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid dimgrey;
}

.footer-col ul li a {
    font-size: 14px;
    color: #ccc;
    display: block;
}

.footer-col ul li a:hover {
    color: #e69d30;
    padding-left: 5px;
}

.bottom-bar {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #3d3d3d;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Page Title Section */
.page-title-section {
    padding: 30px 0;
    border-bottom: 2px solid #f4f4f4;
    margin-bottom: 40px;
}

.page-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

/* About Content Section */
.about-content-section {
    padding-bottom: 40px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 14.5px;
    color: #000;
    /* Slightly lighter as per screenshot */
    line-height: 1.8;
}

.section-subtitle {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.contact-prompt {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000;
}

/* Services Page Specific Styles */
.services-detail-section {
    /* padding-bottom: 80px; */
}

.service-item {
    margin-bottom: 50px;
    text-align: left;
}

.service-title-center {
    font-size: 24px;
    /* text-align: center; */
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.service-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    /* text-align: center; */
}

.service-subtitle-center {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    /* text-align: center; */
}

.service-item p {
    /* text-align: center; */
    /* max-width: 900px; */
    margin: 0 auto 25px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #000;
}

.service-image-box {
    text-align: center;
    margin: 20px auto;
}

.service-image-box img {
    border: 1px solid #eee;
    padding: 5px;
    max-width: 100%;
}

.service-break {
    height: 1px;
    background: #f0f0f0;
    margin: 40px auto;
    width: 80%;
}

.inner-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.bullet-list {
    /* max-width: 400px; */
    margin: 0 auto 30px;
    text-align: left;
}

.bullet-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #000;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 15px;
}

.map-placeholder {
    text-align: center;
    margin: 30px 0;
}

.awards-container {
    margin-top: 60px;
    border-top: 2px solid #f4f4f4;
    padding-top: 40px;
}

.award-item {
    /* text-align: center; */
    margin-bottom: 40px;
}

.award-item p {
    /* font-style: italic; */
    color: #555;
    margin-bottom: 20px;
}

.award-image img {
    /* max-width: 250px; */
    border: 1px solid #ddd;
}

.award-break {
    height: 1px;
    background: #eee;
    margin: 30px auto;
    width: 60%;
}

.services-cta {
    /* text-align: center; */
    margin: 80px 0 40px;
    padding: 40px;
    background: #fff;
}

.services-cta h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-cta h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Training Page Specific Styles */
.training-content-section {
    /* padding-bottom: 80px; */
}

.text-center {
    /* text-align: center; */
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 14.5px;
    color: #000;
    line-height: 1.8;
    /* max-width: 1000px; */
    /* margin-left: auto; */
    margin-right: auto;
}

.training-image-main {
    margin: 40px 0;
    text-align: center;
}

.module-item {
    margin-bottom: 60px;
}

.module-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    /* padding-bottom: 10px; */
    display: inline-block;
}

/* .module-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: var(--primary-color);
} */

.module-item p {
    font-size: 14.5px;
    color: #333;
    margin-bottom: 25px;
}

.module-image {
    margin-top: 20px;
    text-align: center;
}

.module-image img {
    border: 1px solid #ddd;
    padding: 5px;
    max-width: 100%;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.row-image {
    flex: 0 1 400px;
    text-align: center;
}

.row-image img {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo-img {
        height: 80px;
        width: 80px;
    }

    .hero-content-box h2 {
        font-size: 18px;
        margin-bottom: 9px;
        color: #fff;
    }

    .hero-content-box p {
        font-size: 12px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .logo-text h1 {
        font-size: 15px;
    }

    .logo-text p {
        font-size: 13px;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 40px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav ul.active {
        right: 0;
    }

    .close-menu {
        display: block;
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 30px;
        color: #333;
        cursor: pointer;
        margin-bottom: 20px;
        padding: 10px;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-content-box {
        /* margin: 0 20px; */
    }

    .clients-grid {
        flex-direction: column;
        /* gap: 40px; */
    }

    .client-logo {
        width: 150px;
    }
}

.bottom-content p {
    color: #000;
}

.bottom-bar a {
    color: #000;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-bottom: 80px;
}

.contact-form-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-section .subtitle {
    font-size: 15px;
    color: #000;
    margin-bottom: 30px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label span {
    color: red;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #444;
}

.checkbox-item input {
    width: 16px;
    height: 16px;
}

.contact-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    margin-bottom: 50px;
}

.sidebar-widget h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info-list p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.8;
}

.alert-warning {
    background-color: #fef8e5;
    border: 1px solid #fbe7a4;
    padding: 15px;
    font-size: 13px;
    color: #856404;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}