/* Todenko Style Corporate Theme */
:root {
    --primary-color: #003366;
    /* Dark Blue */
    --secondary-color: #0055a5;
    /* Lighter Blue */
    --accent-color: #f8f9fa;
    /* Light Gray */
    --text-color: #333333;
    --light-text: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    padding-top: 0;
    /* Override default padding */
}

/* Header & Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    padding: 8px 25px;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('https://source.unsplash.com/1600x900/?corporate,building');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
    /* Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* News/Topics List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.news-item:hover {
    background-color: #f9f9f9;
}

.news-date {
    min-width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    min-width: 100px;
    margin-right: 20px;
}

.news-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Business/Services Grid */
.service-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
    background: #fff;
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    margin-left: 20px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('https://source.unsplash.com/1600x900/?corporate,building');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
    /* Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.section-title-white {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* News/Topics List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.news-item:hover {
    background-color: #f9f9f9;
}

.news-date {
    min-width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    min-width: 100px;
    margin-right: 20px;
}

.news-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Business/Services Grid */
.service-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
    background: #fff;
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date,
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('https://source.unsplash.com/1600x900/?corporate,building');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
    /* Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* News/Topics List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.news-item:hover {
    background-color: #f9f9f9;
}

.news-date {
    min-width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    min-width: 100px;
    margin-right: 20px;
}

.news-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Business/Services Grid */
.service-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
    background: #fff;
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date,
    .news-category {
        margin-bottom: 5px;
    }
}

/* Video Background */
#bgVideo {
    position: fixed;
    top: -10vh;
    /* Shift video up */
    left: 0;
    width: 100vw;
    height: 130vh;
    /* Increase height to cover */
    z-index: -1;
    object-fit: cover;
    opacity: 1;
}

left: 0;
width: 100%;
height: 100%;
background: rgba(0, 51, 102, 0.6);
/* Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* News/Topics List */
.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.news-item:hover {
    background-color: #f9f9f9;
}

.news-date {
    min-width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    min-width: 100px;
    margin-right: 20px;
}

.news-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Business/Services Grid */
.service-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
    background: #fff;
}

.service-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date,
    .news-category {
        margin-bottom: 5px;
    }
}

/* Video Background */
#bgVideo {
    position: fixed;
    top: -10vh;
    /* Shift video up */
    left: 0;
    width: 100vw;
    height: 130vh;
    /* Increase height to cover */
    z-index: -1;
    object-fit: cover;
    opacity: 1;
}

/* Ensure content is readable over video */
body {
    background-color: transparent;
}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Alternating Backgrounds */
.bg-alternate-1 {
    background-color: #ffffff;
}

.bg-alternate-2 {
    background-color: #f8f9fa;
}

/* Product Card Styles (Global) */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* Aspect Ratio */
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.btn-product {
    background: transparent;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-product:hover {
    background: #0d6efd;
    color: #fff;
}