:root {
    --primary: #3D4D9C;
    --secondary: #5A8E21;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: "Roboto", sans-serif;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-height: 700px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: white;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-control:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.services-section {
    padding: 100px 0;
    background-image: url(../img/slide-4.jpg);
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #000000cf;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: -40px auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: white;
    color: var(--primary);
    transform: rotateY(180deg);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
    font-size: 18px;
}

.service-card:hover .service-content h3 {
    color: var(--primary);
}

.service-content p {
    color: var(--dark);
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-content {
        padding: 20px;
    }
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1169&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 20px;
}

.product-content p {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 12px;
}

.btn-view-product {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-view-product:hover {
    background: transparent;
    color: var(--primary);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Filter buttons */
.category-filter {
    margin-bottom: 40px;
    text-align: center;
}

.category-btn {
    margin: 5px;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-img-container {
        height: 200px;
    }
}

.category-filter {
    margin-bottom: 30px;
}

.category-btn {
    margin: 5px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    background-color: var(--primary);
    color: #fff
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    background-color: #fff;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}
.copyright p a {
    color: #fff;
    text-decoration: none;
}
.rounded-circle {
    width: 40px;
    height: 40px;
    text-align: center;
}
/* Header */
.about-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Section General */
.about-section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-title.center {
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Company Intro */
.company-intro {
    background-color: white;
}

.company-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision {
    background-color: #3d4d9c;
}

.mv-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Values */
.values-container {
    background-color: white;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

.value-icon {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 20px;
}

/* Team */
.team-section {
    background-color: #f9f9f9;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    height: 280px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: var(--dark);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

/* Stats */
.stats-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Clients */
.clients-section {
    background-color: white;
    padding: 80px 0;
}

.client-logo {
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo img {
    max-width: 150px;
    max-height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-header {
        padding: 100px 0 60px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .team-img {
        height: 250px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
}

/* Header */
.product-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.main-product-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.product-details {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-category {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.rating-stars {
    color: #ffc107;
    margin-right: 10px;
    font-size: 18px;
}

.rating-text {
    color: var(--secondary);
}

.product-description {
    margin-bottom: 25px;
    font-size: 16px;
}

.product-features {
    margin-bottom: 25px;
}

.features-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.product-features li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 4px;
}

.product-meta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
}

.nav-tabs .nav-link {
    padding: 15px 25px;
    font-weight: 600;
    color: var(--secondary);
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: transparent;
}

.tab-content {
    padding: 30px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tab-content h4 {
    color: var(--dark);
    margin-bottom: 20px;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid #dee2e6;
}

.specifications-table td {
    padding: 15px 10px;
}

.spec-name {
    font-weight: 600;
    width: 40%;
    color: var(--dark);
}

/* Related Products */
.related-products {
    margin-top: 80px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 28px;
    color: var(--dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.related-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: inherit;
}

.related-product-img {
    height: 200px;
    overflow: hidden;
}

.related-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-img img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 20px;
}

.related-product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.related-product-category {
    color: var(--secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-section {
        padding: 40px 0;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-details {
    animation: fadeIn 0.6s ease forwards;
}

/* Header */
.support-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Support Section */
.support-section {
    padding: 60px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* Support Cards */
.support-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 5px;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .support-header {
        padding: 80px 0 40px;
    }
    
    .support-section {
        padding: 40px 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-card, .faq-item, .contact-form {
    animation: fadeIn 0.6s ease forwards;
}
.social-icons a {
    font-size: 15px;
}

/* Header */
.solutions-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Solutions Section */
.solutions-section {
    padding: 60px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Solution Card */
.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-img {
    transform: scale(1.05);
}

.solution-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.solution-content {
    padding: 25px;
}

.solution-category {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.solution-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.solution-description {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-features {
    margin-bottom: 20px;
}

.solution-features li {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.solution-features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 12px;
}

.btn-view-solution {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-view-solution:hover {
    background: transparent;
    color: var(--primary);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    margin: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-description {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .solutions-header {
        padding: 80px 0 40px;
    }
    
    .solutions-section {
        padding: 40px 0;
    }
    
    .solution-img-container {
        height: 200px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

/* Header */
.investor-header {
    background: linear-gradient(rgba(26, 46, 71, 0.9), rgba(26, 46, 71, 0.9)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Investor Section */
.investor-section {
    padding: 60px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--investor-dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--investor-blue);
}

/* Key Metrics */
.metrics-container {
    background: #000;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.metric-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: var(--investor-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--investor-dark);
    margin-bottom: 10px;
}

.metric-title {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
}

/* Financial Highlights */
.financial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    border-left: 4px solid var(--investor-blue);
    transition: all 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.financial-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--investor-dark);
    margin-bottom: 15px;
}

/* Performance Chart */
.chart-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.chart-placeholder {
    background: linear-gradient(45deg, #3d4d9c, #15267c);
    height: 150px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

/* Investor Resources */
.resource-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--investor-blue);
}

.resource-icon {
    color: var(--investor-blue);
    font-size: 24px;
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--investor-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--investor-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--investor-blue);
}

.timeline-date {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.timeline-content {
    background: #3d4d9c1f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    color: #3d4d9c;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--investor-blue);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .investor-header {
        padding: 80px 0 40px;
    }
    
    .investor-section {
        padding: 40px 0;
    }
    
    .metrics-container {
        padding: 20px;
    }
    
    .metric-value {
        font-size: 28px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card, .financial-card, .resource-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Header */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/slide-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.contact-details p {
    color: var(--secondary);
    margin-bottom: 0;
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
    margin-top: 50px;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header {
        padding: 80px 0 40px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form, .contact-info {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form, .contact-info, .faq-item {
    animation: fadeIn 0.6s ease forwards;
}
@media only screen and (max-width: 992px) {
    .contact-info .contact-item {
        justify-content: center;
        align-items: center;
    }
}