:root {
    --primary-navy: #2d2a4a;
    --primary-green: #00a650;
    --primary-yellow: #ffd400;
    --dark-purple: #1a1832;
    --light-green: #e8f5e9;
    --light-yellow: #fffde7;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-gray: #718096;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif !important;
}

/* Navbar Styles */
.siteLogo {
    max-width: 200px;
    width: 100%;
}

.navbar {
    background-color: var(--white) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy) !important;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand i {
    color: var(--primary-green);
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--primary-yellow);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 212, 0, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 212, 0, 0.3);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* animation: float 4s ease-in-out infinite; */
    height: 580px;
    object-fit: cover;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.btn-hero-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
}

.btn-hero-primary:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.5);
    color: var(--primary-navy);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: var(--white);
    color: var(--primary-navy);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Trust Badges */
.trust-badges {
    background-color: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badges i {
    font-size: 3rem;
    color: var(--primary-green);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.feature-card {
    background: var(--white);
    text-align: center;
    padding: 45px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 166, 80, 0.15);
    border-color: var(--light-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 166, 80, 0.25);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Products Section */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(45, 42, 74, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 42, 74, 0.15);
    border-color: var(--primary-green);
}

.product-item-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-purple));
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-item-image img {
    transform: scale(1.1);
}

.product-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.product-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.4);
}

.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 166, 80, 0.95);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.8px;
}

.product-item-content {
    padding: 28px;
}

.product-item-category {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-item-category i {
    font-size: 1rem;
}

.product-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-item-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-item-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.product-item-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item-features li i {
    color: var(--primary-green);
    font-size: 1rem;
}

.product-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-product-details {
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.25);
}

.btn-product-details:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.35);
    color: var(--white);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-product-quick {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-product-quick:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: rotate(360deg);
}

/* Product Categories Filter */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 50px;
}

.category-filter {
    padding: 12px 28px;
    border: 2px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: var(--primary-navy);
    color: var(--white);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green), var(--light-yellow));
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Product Tabs */
.product-tabs {
    border: none;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tabs .nav-link {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    color: var(--primary-navy);
}

.product-tabs .nav-link.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
}

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-gray);
    display: flex;
    align-items: start;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-green);
    margin-top: 2px;
    font-size: 1.1rem;
}

.btn-read-more {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-read-more:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 80, 0.3);
}

/* Enhanced Modal Styling */
.modal-xl {
    max-width: 1100px;
}

.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-purple));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-purple));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-title i {
    font-size: 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modal-body {
    padding: 40px;
    background: var(--white);
}

.product-modal-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 35%;
}

/* Modal Tabs */
.modal-nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 30px;
}

.modal-nav-tabs .nav-link {
    color: var(--text-gray);
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.modal-nav-tabs .nav-link:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.modal-nav-tabs .nav-link.active {
    color: var(--primary-green);
    background: transparent;
    border-bottom-color: var(--primary-green);
}

.modal-tab-content {
    min-height: 300px;
}

/* Content Sections */
.info-box {
    background: linear-gradient(135deg, var(--light-green), var(--light-yellow));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-green);
}

.info-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.info-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.warning-box p {
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h5 i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 1.7;
}

.content-section ul li::before {
    content: "●";
    color: var(--primary-green);
    font-size: 1.3rem;
    line-height: 1.5;
    flex-shrink: 0;
}

.highlight-card {
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-card h6 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.highlight-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.mechanism-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.mechanism-card h6 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.mechanism-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Modal Footer */
.modal-footer {
    border: none;
    padding: 25px 40px;
    background: var(--light-gray);
}

.modal-footer .btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.modal-footer .btn:nth-child(2) {
    display: none;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-green) 0%, var(--white) 100%);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-yellow), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(255, 212, 0, 0.3);
    position: relative;
    z-index: 2;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-yellow));
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-navy);
    color: var(--white);
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: var(--white);
}

.testimonials-section .section-badge {
    background: rgba(255, 212, 0, 0.2);
    color: var(--primary-yellow);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
}

.cert-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.cert-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.news-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-yellow);
    color: var(--primary-navy);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
}

.newsletter-form button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 212, 0, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffed4e 100%);
    color: var(--primary-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 42, 74, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 42, 74, 0.4);
    background-color: var(--dark-purple);
    color: #fff;
}

/* Company Overview Section */
.company-overview {
    background: var(--white);
    padding: 100px 0;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.overview-image {
    flex: 1;
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-green);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 166, 80, 0.3);
}

.overview-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.overview-badge p {
    margin: 0;
    font-size: 1rem;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer h5 {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.footer-brand i {
    color: var(--primary-green);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), #00c853);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 166, 80, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.4);
}

.page-header {
    padding: 180px 0 160px !important;
}

.btn-nav-cta:hover {
    color: var(--white);
}