.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: #28a745;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, #218838 0%, #1da188 100%);
}

.btn-outline-hero {
    background: transparent;
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-hero:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.btn-hero i {
    font-size: 14px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .cta-buttons {
        gap: 10px;
        margin: 15px 0;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 20px;
        gap: 6px;
    }
    
    .btn-hero i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .btn-hero {
        padding: 10px 18px;
        font-size: 13px;
        max-width: 250px;
    }
}

	/* Hero Slideshow Section */
.hero-slideshow {
position: relative;
overflow: hidden;
height: 70vh;
background: linear-gradient(135deg, var(--light-green), var(--bg-green));
}

.carousel-item {
height: 70vh;
background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(32, 201, 151, 0.8));
}

.slide-content {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 0 50px;
}

.slide-text {
color: white;
text-align: center;
max-width: 800px;
}

.slide-title {
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 30px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
animation: fadeInUp 1s ease-out;
}

.slide-description {
font-size: 1.4rem;
margin-bottom: 40px;
line-height: 1.8;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
animation: fadeInUp 1s ease-out 0.3s both;
}

.slide-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 40px;
animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
transition: transform 0.3s ease;
}

.feature-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.3);
}

.feature-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.cta-buttons {
animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero {
padding: 15px 40px;
font-size: 1.2rem;
font-weight: bold;
border-radius: 50px;
margin: 0 10px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.btn-primary-hero {
background: white;
color: var(--primary-green);
border: 3px solid white;
}

.btn-primary-hero:hover {
background: transparent;
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline-hero {
background: transparent;
color: white;
border: 3px solid white;
}

.btn-outline-hero:hover {
background: white;
color: var(--primary-green);
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
right: 80px;
left: auto;
}

.carousel-control-next {
left: 80px;
right: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
background: rgba(255, 255, 255, 0.4);
}

.carousel-indicators {
bottom: 30px;
}

.carousel-indicators [data-bs-target] {
width: 50px;
height: 5px;
border-radius: 3px;
background: rgba(255, 255, 255, 0.5);
margin: 0 8px;
}

.carousel-indicators .active {
background: white;
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Products Section */
.products-section {
padding: 80px 0;
background: var(--bg-green);
}

.section-title {
color: var(--dark-green);
font-size: 2.5rem;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}

.section-subtitle {
color: var(--primary-green);
text-align: center;
font-size: 1.2rem;
margin-bottom: 60px;
}

.product-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
transition: all 0.3s ease;
height: 100%;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
}

.product-image {
height: 200px;
background: linear-gradient(45deg, var(--light-green), var(--accent-green));
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: var(--dark-green);
}

.product-content {
padding: 25px;
}

.product-title {
color: var(--dark-green);
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 15px;
}

.product-description {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.btn-product {
background: var(--primary-green);
color: white;
border: none;
padding: 12px 25px;
border-radius: 25px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-product:hover {
background: var(--dark-green);
transform: translateY(-2px);
}

        :root {
            --primary-green: #2d5a27;
            --secondary-green: #4a7c59;
            --light-green: #7fb069;
            --accent-green: #a2d5ab;
            --dark-gray: #2c3e50;
            --light-gray: #ecf0f1;
        }

        body {
            font-family: 'Vazir', sans-serif;
            line-height: 1.6;
        }

        /* Header Styles */
        .top-header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 10px 0;
        }

        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            color: var(--primary-green) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--light-green) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(45, 90, 39, 0.8), rgba(74, 124, 89, 0.8)), url('hero-bg.jpg');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-custom {
            background: var(--light-green);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card-body {
            padding: 20px;
        }

        .product-card h5 {
            color: var(--primary-green);
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
        }

        .section-title h2 {
            color: var(--primary-green);
            font-size: 2.5rem;
            font-weight: bold;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--light-green);
            border-radius: 2px;
        }

        /* Company Profile Section */
        .company-profile {
            background: var(--light-gray);
            padding: 80px 0;
        }

        .stats-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .stats-box i {
            font-size: 3rem;
            color: var(--light-green);
            margin-bottom: 20px;
        }

        .stats-box h3 {
            color: var(--primary-green);
            font-weight: bold;
        }

        /* News Section */
        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-card-body {
            padding: 20px;
        }

        .news-date {
            color: var(--secondary-green);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* Footer */
        .footer {
            background: var(--primary-green);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: var(--accent-green);
            margin-bottom: 20px;
        }

        .footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent-green);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--secondary-green);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--light-green);
            transform: translateY(-3px);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-control:focus {
            border-color: var(--light-green);
            box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }


        
        /* Breadcrumb */
        .breadcrumb {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb-list {
            list-style: none;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-list li {
            margin-left: 10px;
        }
        
        .breadcrumb-list li:after {
            content: "←";
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb-list li:last-child:after {
            display: none;
        }
        
        .breadcrumb-list a {
            color: #28a745;
            text-decoration: none;
        }
        
        /* Product Detail */
        .product-detail {
            background: white;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .product-header {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .product-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .product-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .product-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
        }
        
        .product-image {
            text-align: center;
        }
        
        .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .product-info h2 {
            color: #28a745;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .product-specs {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .spec-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-right: 4px solid #28a745;
        }
        
        .spec-item h4 {
            color: #28a745;
            margin-bottom: 10px;
        }
        
        /* Features */
        .features {
            background: white;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 40px;
        }
        
        .features h2 {
            text-align: center;
            color: #28a745;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #28a745;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 15px;
        }
        
        /* Firmware Download */
        .firmware-section {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            margin: 30px 0;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
        }
        
        .firmware-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .firmware-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .firmware-card {
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .firmware-card h3 {
            margin-bottom: 15px;
            color: white;
        }
        
        .firmware-info {
            margin: 15px 0;
            font-size: 0.9rem;
            opacity: 0.9;
            color: #e8f5e8;
        }
        
        .download-btn {
            background: #28a745;
            color: white;
            padding: 12px 30px;
            border: 2px solid white;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
        }
        
        .download-btn:hover {
            background: white;
            color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Support Section */
        .support-section {
            background: white;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 40px;
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .support-card {
            text-align: center;
            padding: 30px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .support-card:hover {
            border-color: #28a745;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
        }
        
        .support-icon {
            font-size: 2.5rem;
            color: #28a745;
            margin-bottom: 15px;
        }
        
        /* CTA Buttons */
        .cta-btn {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin: 10px 5px;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        
        .cta-btn-outline {
            background: transparent;
            color: #28a745;
            border: 2px solid #28a745;
            padding: 10px 28px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin: 10px 5px;
        }
        
        .cta-btn-outline:hover {
            background: #28a745;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        
        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h4 {
            margin-bottom: 15px;
            color: #28a745;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 8px;
        }
        
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #28a745;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            opacity: 0.8;
        }
        
        /* Alert Box */
        .alert-box {
            background: #d1ecf1;
            border: 1px solid #bee5eb;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            color: #0c5460;
        }
        
        .alert-success {
            background: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .product-content {
                grid-template-columns: 1fr;
            }
            
            .nav ul {
                flex-direction: column;
                text-align: center;
            }
            
            .nav li {
                margin: 5px 0;
            }
            
            .product-header h1 {
                font-size: 2rem;
            }
            
            .header-top {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    border-color: #2c5aa0;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
    background: linear-gradient(135deg, #1d4088 0%, #3a7bc8 100%);
}

.btn-outline-hero {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-outline-hero:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.btn-hero i {
    font-size: 14px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .cta-buttons {
        gap: 10px;
        margin: 15px 0;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 20px;
        gap: 6px;
    }
    
    .btn-hero i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .btn-hero {
        padding: 10px 18px;
        font-size: 13px;
        max-width: 250px;
    }
}

/* Hero Slideshow Section */
.hero-slideshow {
    position: relative;
    overflow: hidden;
    height: 70vh;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
}

.carousel-item {
    height: 70vh;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(74, 144, 226, 0.8));
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 50px;
}

.slide-text {
    color: white;
    text-align: center;
    max-width: 800px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.slide-description {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.slide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-hero {
    background: white;
    color: #2c5aa0;
    border: 3px solid white;
}

.btn-primary-hero:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-outline-hero:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    right: 80px;
    left: auto;
}

.carousel-control-next {
    left: 80px;
    right: auto;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.carousel-indicators .active {
    background: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #2c5aa0;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #4a90e2, #74b9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2c3e50;
}

.product-content {
    padding: 25px;
}

.product-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-product {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: #1d4088;
    transform: translateY(-2px);
}

:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #4a90e2;
    --light-blue: #74b9ff;
    --accent-blue: #a29bfe;
    --dark-gray: #2c3e50;
    --light-gray: #ecf0f1;
}

body {
    font-family: 'Vazir', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.top-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 10px 0;
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #2c5aa0 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4a90e2 !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(74, 144, 226, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-custom {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

/* Stats Box */
.stats-box i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.stats-box h3 {
    color: #2c5aa0;
    font-weight: bold;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a90e2;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #74b9ff;
    margin-bottom: 20px;
}

/* Contact Form */
.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}
/* Additional CSS for new elements */

/* Language Switcher */
.language-switcher button {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
}

/* Product Categories */
.category-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header h3 {
    margin: 0;
    color: #333;
}

.product-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-item img {
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.product-item h5 {
    font-size: 0.95rem;
    margin: 10px 0 5px;
}

/* Mission Vision Boxes */
.mission-vision {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
}

.mission-vision h4 {
    color: #333;
    margin-bottom: 15px;
}

/* Warranty Form */
.warranty-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Representatives Page */
.page-header {
    background: linear-gradient(135deg, #10349e 0%, #0a237d 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: white;
}

/* Representative Cards */
.representative-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.rep-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #10349e;
}

.rep-header h5 {
    margin: 0;
    color: #333;
}

.rep-info {
    padding: 20px;
}

.rep-info p {
    margin: 10px 0;
    color: #666;
    font-size: 0.9rem;
}

.rep-info i {
    width: 20px;
    color: #10349e;
    margin-left: 10px;
}

.rep-services {
    margin-top: 15px;
}

.rep-services .badge {
    margin-left: 5px;
    font-size: 0.75rem;
}

.rep-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
}

/* Contact Footer */
.contact-footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Social Icons Enhanced */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: #10349e;
    transform: translateY(-3px);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .rep-header {
        flex-direction: column;
        gap: 10px;
    }
}
