/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a237e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #1976D2;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #1976D2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1565C0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #1976D2;
    color: #1976D2;
}

.btn-outline:hover {
    background-color: #1976D2;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #283593;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #1976D2;
    font-size: 24px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1976D2;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1976D2;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.location-info {
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.location-info p {
    margin: 10px 0;
    font-size: 16px;
}

.location-info i {
    margin-right: 10px;
    color: #64B5F6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #1a237e;
    color: #fff;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #283593;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 40px;
    color: #1976D2;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: #fff;
}

/* Products Preview Section */
.products-preview {
    padding: 80px 0;
    background-color: #1a237e;
    color: #fff;
}

.products-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #283593;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.product-card p {
    padding: 0 15px 15px;
    color: #fff;
}

.product-card .btn {
    margin: 0 15px 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #1a237e;
    color: #fff;
}

.testimonials h2, .testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #fff;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    min-width: 300px;
    scroll-snap-align: start;
    padding: 30px;
    margin-right: 20px;
    background-color: #283593;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial h4 {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Footer Styles */
footer {
    background-color: #0d47a1;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1563453392212-326f5e854473?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Product Categories Page */
.product-categories {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.product-categories .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.category-filters {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-filters h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-filters ul li {
    margin-bottom: 10px;
}

.category-filters a {
    color: #333;
    transition: color 0.3s ease;
}

.category-filters a:hover, .category-filters a.active {
    color: #1976D2;
}

.search-sort {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.search-sort input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
}

.search-sort select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.product-description {
    min-height: 60px;
}

.product-price {
    font-weight: bold;
    color: #1976D2;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.pagination a.active, .pagination a:hover {
    background-color: #1976D2;
    color: #fff;
    border-color: #1976D2;
}

/* Services Page */
.services-overview {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.service-card {
    display: flex;
    background-color: #283593;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-width: 120px;
    height: 120px;
    background-color: #1976D2;
    color: #fff;
    font-size: 36px;
}

.service-icon img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
    flex: 1;
}

.service-content h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 15px;
}

.service-content ul li {
    margin-bottom: 5px;
}

.service-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.service-cta h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.service-cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Page */
.about-story {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box, .vision-box, .values-box {
    background-color: #283593;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mission-box h3, .vision-box h3, .values-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
}

.values-box ul {
    list-style: none;
}

.values-box li {
    margin-bottom: 10px;
}

.team {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
    text-align: center;
}

.team h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 28px;
}

.team > p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #283593;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h4 {
    margin: 15px 0 5px;
    font-size: 18px;
}

.team-member .position {
    color: #90caf9;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 20px;
}

.certifications {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
    text-align: center;
}

.certifications h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 28px;
}

.certifications > p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.certification img {
    height: 80px;
    margin-bottom: 10px;
}

/* Contact Page */
.contact-info {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-details h3, .contact-form h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #1976D2;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.map-section {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 60px 0;
    background-color: #1a237e;
    color: #fff;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    font-size: 24px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
}

.faq-toggle {
    color: #1976D2;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle i:before {
    content: "\f068";
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .product-categories .container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        width: 100%;
        min-width: 100%;
        height: 120px;
    }
    
    .service-icon img.service-image {
        height: 120px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .features .container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form {
        order: -1;
    }
} 