/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #4A4A4A;
    background-color: #FFFFFF;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.main-header {
    background-color: #1F2F6B;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger Button - Simple & Clean */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* Show hamburger on mobile only, positioned on right */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
}

.logo img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
}

.main-nav a:hover {
    color: #F2C200;
}

/* HERO */
.hero {
    background-color: #F5F7FA;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    color: #1F2F6B;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

/* BUTTONS */
.btn {
    padding: 12px 30px;
    background: #1F8F4A;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
    margin: 0 10px;
    display: inline-block;
}

.btn:hover {
    background: #166534;
}

.btn-primary {
    background-color: #1F8F4A;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #1F2F6B;
    color: #1F2F6B;
}

/* SERVICES */
.services {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-box {
    background: #FFFFFF;
    padding: 20px;
    border: 1px solid #E0E0E0;
}

/* FOOTER */
.main-footer {
    background-color: #1F2F6B;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
}

.site-footer {
    background: #1F2F6B;
    color: #FFFFFF;
    margin-top: 50px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 5%;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p {
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1F2F6B;
    color: white;
    font-size: 18px;
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #1F8F4A;
    transform: translateY(-3px);
}

.social-icons a:last-child {
    margin-right: 0;
}

/* PAGE BANNER */
.page-banner {
    background-color: #1F2F6B;
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 60px 0;
}

.light-bg {
    background-color: #F5F7FA;
}

.content-section h2 {
    color: #1F2F6B;
    margin-bottom: 20px;
}

/* STANDARDS LIST */
.standards-list {
    list-style: disc;
    padding-left: 20px;
}

/* CORE VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-box {
    background: #FFFFFF;
    padding: 20px;
    border-left: 4px solid #1F8F4A;
}

/* NOTICE BOX */
.notice {
    margin-top: 20px;
    padding: 15px 18px;
    background-color: #FFF8E1;
    border-left: 5px solid #F2C200;
    color: #5F4B00;
    font-size: 0.95rem;
}

.notice strong {
    color: #1F2F6B;
}

/* PROCESS LIST */
.process-list {
    list-style: square;
    padding-left: 20px;
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    background: #FFFFFF;
    padding: 25px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    text-align: center;
}

.process-step img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.process-step span {
    display: inline-block;
    background-color: #1F8F4A;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.process-step h3 {
    color: #1F2F6B;
    margin-bottom: 10px;
}

/* SCHEMES GRID */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.scheme-card {
    background-color: #FFFFFF;
    padding: 25px;
    border: 1px solid #E0E0E0;
    border-top: 5px solid #1F8F4A;
}

.scheme-card h3 {
    color: #1F2F6B;
    margin-bottom: 5px;
}

.scheme-standard {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.scheme-card ul {
    padding-left: 18px;
}

.scheme-card .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 15px;
}

/* FORM */
.apply-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 3px;
}

.form-note {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #E8F5E9;
    border-left: 5px solid #1F8F4A;
}

/* DIRECTORY SEARCH */
.directory-search {
    margin-bottom: 20px;
}

.directory-search input {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 3px;
}

/* DIRECTORY TABLE */
.directory-table-wrapper {
    overflow-x: auto;
}

.directory-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
}

.directory-table th,
.directory-table td {
    padding: 12px;
    border: 1px solid #E0E0E0;
    text-align: left;
    font-size: 0.9em;
}

.directory-table th {
    background-color: #F5F7FA;
    color: #1F2F6B;
}

/* STATUS COLORS */
.status-active {
    color: #1F8F4A;
    font-weight: bold;
}

.status-suspended {
    color: #D32F2F;
    font-weight: bold;
}

.status-certified {
    color: green;
    font-weight: bold;
}

.status-withdrawn {
    color: red;
    font-weight: bold;
}

/* SERVICE PROMISES */
.promises-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.promise-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.promise-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    box-shadow: 0 4px 15px rgba(31, 47, 107, 0.1);
}

.promise-card h3 {
    font-size: 1.4rem;
    color: #1F2F6B;
    margin-bottom: 15px;
}

.promise-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promises-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-icon {
        width: 100px;
        height: 100px;
        font-size: 55px;
    }
}