:root {
    --primary-green: #2d5a27;
    --accent-gold: #c5a059;
    --dark-green: #1a3c17;
    --light-green: #e9f5e8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --premium-gradient: linear-gradient(135deg, #2d5a27 0%, #1a3c17 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cambria Math', 'Cambria', 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
.main-header {
    background: var(--primary-green);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 2%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.02);
}

.logo img {
    height: 55px;
    display: block;
}

.brand-name {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.lang-dropdown a {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 5px 12px !important;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-dropdown .dropdown-menu {
    min-width: 160px !important;
}

.login-nav-item a {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-nav-item a:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
}

.nav-list li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-list li a:hover {
    opacity: 0.8;
}

.nav-list li i {
    font-size: 1.1rem;
}

/* Marquee Styles */
.updates-marquee {
    background: var(--accent-gold);
    color: var(--dark-green);
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.updates-marquee marquee span {
    margin-right: 50px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    border-top: 3px solid var(--accent-gold);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    flex-direction: row !important;
    gap: 10px !important;
    display: block !important;
}

.dropdown-menu li a:hover {
    background: var(--light-green);
    color: var(--primary-green) !important;
}

/* Nested flyout dropdown (e.g. Services > Certification) */
.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown .dropdown-menu {
    top: 0;
    left: 100%;
    border-top: 3px solid var(--accent-gold);
    transform: translateX(10px);
    visibility: hidden;
    opacity: 0;
}

.dropdown-menu .dropdown:hover>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Schemes Grid */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.scheme-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.scheme-card:hover {
    transform: translateY(-5px);
}

.scheme-header {
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #eef7ee;
}

.scheme-header img {
    height: 100px;
    margin-bottom: 15px;
}

.scheme-header h3 {
    margin: 0;
}

.scheme-body {
    padding: 25px;
    flex-grow: 1;
}

.scheme-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    width: 500px;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px auto;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: url('/static/images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: var(--white);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--dark-green);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-gold:hover,
.btn-outline:hover {
    transform: translateY(-3px);
}

.program-logos img,
.accred-logos img {
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.program-logos img:hover,
.accred-logos img:hover,
.cert-card-refined div:first-child:hover {
    transform: translateY(-5px);
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

/* Flash Messages */
.flash-messages {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.flash-item {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.flash-item.error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.flash-item.success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Contact Styles */
.contact-info-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .contact-info-card {
        padding: 20px;
    }

    .login-card {
        padding: 30px 20px !important;
    }
}

/* Login Styles */
.login-wrapper {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border-top: 5px solid var(--accent-gold);
}

/* Dashboard Styles */
.dashboard-wrapper {
    display: flex;
    min-height: 80vh;
    background: #f4f7f4;
}

.sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid #e0e0e0;
    padding: 30px 20px;
}

.user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
    border-radius: 5px;
}

.sidebar-nav a.active {
    color: var(--primary-green);
    background: #e9f5e8;
    font-weight: 600;
}

.sidebar-nav a:hover:not(.active) {
    background: #f9f9f9;
}

.sidebar-nav .logout-link {
    color: #d9534f;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Dashboard Card */
.db-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.db-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.db-grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.badge.warning {
    background: #fff3cd;
    color: #856404;
}

.badge.success {
    background: #e9f5e8;
    color: #2d5a27;
}

.badge.info {
    background: #fff4e5;
    color: #d4a017;
}

@media (max-width: 1024px) {

    .db-grid-2-1,
    .db-grid-1-1 {
        grid-template-columns: 1fr;
    }
}

.dashboard-main {
    flex: 1;
    padding: 40px;
    min-width: 0;
    overflow-x: hidden;
}

/* Progress Tracker */
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-line-fill {
    height: 100%;
    background: var(--primary-green);
    transition: width 0.8s ease;
}

.progress-step {
    text-align: center;
    width: 20%;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-label {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.step-circle.completed {
    background: #2d5a27;
    color: white;
}

.step-circle.active {
    background: #c4a006;
    color: white;
}

.step-circle.upcoming {
    background: #f5f5f5;
    color: #999;
}

.step-status.completed {
    color: #2d5a27;
}

.step-status.active {
    color: #c4a006;
}

.step-status.upcoming {
    color: #bbb;
}

@media (max-width: 1024px) {
    .dashboard-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
    }

    .sidebar-nav ul {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .sidebar-nav li {
        flex-shrink: 0;
    }

    .dashboard-main {
        padding: 20px;
    }

    .progress-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding-left: 30px;
    }

    .progress-line {
        left: 55px;
        top: 0;
        width: 4px;
        height: 100%;
    }

    .progress-line-fill {
        width: 100% !important;
        height: 0;
    }

    .progress-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .step-circle {
        margin: 0;
        flex-shrink: 0;
    }
}

/* Sections */
.section-container {
    padding: 40px 10%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gold);
}

/* Footer */
footer {
    background: var(--light-green);
    padding: 40px 10% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
        padding: 10px 5%;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-green);
        display: none;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        padding: 15px 5%;
        flex-direction: row;
        gap: 15px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: flex-start;
    }

    .nav-list li i {
        width: 25px;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        transform: none;
        background: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        width: 100%;
        padding: 0;
        border-top: none;
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 15% !important;
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .login-nav-item a {
        margin: 10px 5%;
        justify-content: center !important;
    }
}

/* Home Page Grid Classes */
.program-logos,
.accred-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 25px;
    gap: 30px;
    flex-wrap: wrap;
}

.accred-logos a {
    display: flex;
    align-items: center;
}

.accred-logos img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.accred-logos img:hover {
    transform: scale(1.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    position: relative;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.cert-card-refined {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cert-card-refined .card-bg {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cert-card-refined .img-container {
    height: 180px;
    overflow: hidden;
    border-radius: 3px;
}

.cert-card-refined .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-card-refined .label-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
}

.cert-card-refined .label-text {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}

.cert-card-refined .main-label {
    font-weight: 700;
    color: #333;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
}

.cert-card-refined .sub-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
    line-height: 1;
}

.divider {
    flex: 1;
    height: 1px;
    background: #eee;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 400px;
        padding: 60px 5%;
        text-align: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-p {
        font-size: 1.1rem !important;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn-gold,
    .hero-btns .btn-outline {
        width: 100%;
        text-align: center;
    }

    .section-container {
        padding: 40px 5%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 25px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .schemes-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
}

/* Portal Dashboard Styles */
.portal-header {
    background: #005a8d;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px 4px 0 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    width: 100%;
}

.audit-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.audit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.82rem;
    background: white;
}

.audit-table th {
    background: #0072bc;
    color: white;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    padding: 16px 12px;
    border: 1px solid #005a8d;
    white-space: nowrap;
}

.audit-table td {
    padding: 14px 12px;
    border: 1px solid #ddd;
    color: #333;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
}

.audit-table tr:hover {
    background-color: #f8faff;
}

.audit-table .text-center {
    text-align: center;
}

.audit-table .text-right {
    text-align: right;
}

.audit-table .font-bold {
    font-weight: 700;
}

/* Tabs System */
.tabs-container {
    margin-top: 20px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #0072bc;
    gap: 2px;
}

.tab-btn {
    padding: 10px 25px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #0072bc;
    color: white;
}

.tab-content {
    display: none;
    padding: 30px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-value {
    font-weight: 600;
    color: #333;
}

/* Folder View */
.folder-view {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.folder-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.folder-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.folder-icon {
    font-size: 1.2rem;
    color: #dfb100;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 30px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

@media (min-width: 769px) and (max-width: 1024px) {

    .features-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}