:root {
    --primary-color: #4CBD17;
    --primary-dark: #3a9a12;
    --secondary-color: #000;
    --bgd-color: #e2e2e2;
    --accent-color: #333;
    --white: #fff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #212529;
    --text-light: #6c757d;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--bgd-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.header-wrapper {
    position: sticky;
    top: 15px;
    z-index: 1000;
    padding: 0 15px;
}

header {
    background: var(--white);
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 1400px;
    margin: 0 auto;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
}

.logo {
    height: 50px;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

nav ul li {
    margin: 0 12px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.quote-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 189, 23, 0.3);
}

.quote-btn:after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-text h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 15px rgba(76, 189, 23, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(76, 189, 23, 0.4);
    background-color: var(--primary-dark);
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 8s ease-in-out infinite;
}

/* Why Sivar Section */
.why-sivar {
    background: linear-gradient(135deg, rgba(76, 189, 23, 0.1), rgba(0, 0, 0, 0.7));
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.why-sivar h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-sivar .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.why-sivar ul {
    margin-bottom: 30px;
}

.why-sivar ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 10px;
}

.why-sivar ul li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.sivar-btn {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 15px rgba(76, 189, 23, 0.3);
}

.sivar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(76, 189, 23, 0.4);
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.overlay-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 15px auto 0;
}

.service-card {
    background: var(--white);
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Products Section */
.products {
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border: none !important;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 189, 23, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 189, 23, 0.3);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.portfolio-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.portfolio-tags span {
    background-color: rgba(76, 189, 23, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.portfolio-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--primary-dark);
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-dark);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.value-item {
    /* display: flex; */
    margin-bottom: 25px;
}

.value-item-top {
    display: flex;
}

.value-item-top i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: -8px;
    flex-shrink: 0;
}

.value-item-top h4 {
    font-size: 1.2rem;
    font-weight: 600;
    /* margin-bottom: 5px; */
    color: var(--dark-gray);
}

.value-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info {
    background-color: var(--white);
    padding: 30px !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(76, 189, 23, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(76, 189, 23, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer .f-contact-info {
    /* background-color: var(--white); */
    padding: 8px !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.footer .f-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    /* color: rgba(255, 255, 255, 0.7) !important; */
}

.f-contact-info li i {
    color: var(--primary-color) !important;
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.newsletter h6 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 15px;
}

.footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: white;
} 

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    header {
        padding: 10px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        padding: 20px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-text {
        padding: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image {
        margin: 0 auto;
    }
    
    .why-sivar .col-lg-6:last-child {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .header-wrapper {
        top: 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
    }
    
    .btn-light, .cta-button, .sivar-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .header-wrapper {
        top: 5px;
        padding: 0 10px;
    }
    
    header {
        padding: 8px 15px;
        border-radius: 25px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .blob {
        width: 250px;
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer .col-lg-4, .footer .col-lg-3, .footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

.success-message {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Additional Pages CSS */
/* Additional styles for new pages */

/* Breadcrumb */
.breadcrumb {
    padding: 0.75rem 1rem;
    background-color: var(--light-gray);
    border-radius: 0.375rem;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-form-container {
    background: var(--white);
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: rgba(76, 189, 23, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(76, 189, 23, 0.25);
}

/* Products Page */
.product-card.detailed {
    padding: 0;
    overflow: hidden;
}

.product-card.detailed .product-image {
    height: 200px;
    overflow: hidden;
}

.product-card.detailed .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card.detailed:hover .product-image img {
    transform: scale(1.05);
}

.product-card.detailed .product-content {
    padding: 1.5rem;
}

.product-tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card.compact {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
}

.product-card.compact .product-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-card.compact h3 {
    margin-bottom: 1rem;
}

.product-card.compact p {
    margin-bottom: 1.5rem;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.product-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--primary-dark);
}

.product-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Page */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-content {
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(76, 189, 23, 0.1);
    font-family: Georgia, serif;
}

.rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author h5 {
    color: var(--dark-gray);
}

/* About Page */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Values */
.value-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Team */
.team-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Stats */
.stat-item {
    padding: 1.5rem;
}

.stat-item h2 {
    color: white;
}

/* Services Page */
.service-card.detailed {
    padding: 2rem;
    height: 100%;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

/* Process Steps */
.process-steps {
    position: relative;
    padding-left: 3rem;
}

.process-steps:before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Technology */
.tech-item {
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline:before {
        left: 1rem;
    }
    
    .timeline-year {
        left: -2.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    .process-steps {
        padding-left: 2rem;
    }
    
    .process-steps:before {
        left: 1rem;
    }
    
    .step-number {
        left: -2.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Animation delays for staggered effects */
.animate__delay-1s {
    animation-delay: 0.1s;
}

.animate__delay-2s {
    animation-delay: 0.2s;
}

.animate__delay-3s {
    animation-delay: 0.3s;
}

.animate__delay-4s {
    animation-delay: 0.4s;
}

.animate__delay-5s {
    animation-delay: 0.5s;
}