* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 10px 0px 10px;
}

header {
    background-color: #3c4d66;
    color: white;
    padding: 10px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

nav a:hover {
    color: #3498db;
    background-color: rgba(255,255,255,0.1);
}

.section {
    margin: 40px 0;
    padding: 20px 0;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0;
    text-align: center;
}

.profile-img {
    width: 60%;
    border-radius: 50%;
    border: 5px solid #2c3e50;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.content {
    
    margin-bottom: 20px;
	margin-left: 100px;
	margin-right: 100px;
	 text-align: left;
}

.model-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.model-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
}

.thumbnails img:hover {
    border-color: #3498db;
    transform: scale(1.05);
}

.model-info {
    flex: 1;
    min-width: 300px;
}

.specs {
    list-style: none;
    margin: 20px 0;
}

.specs li {
    margin: 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.price {
    font-size: 1.5rem;
    margin: 25px 0;
    color: #2c3e50;
}

.price span {
    font-weight: bold;
    color: #e74c3c;
}

.order-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #2980b9;
}

.gallery-page {
    text-align: center;
}

.gallery-categories {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    padding: 8px 16px;
    background-color: #ecf0f1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background-color: #3498db;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 15px;
    background-color: white;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-list {
    list-style: none;
    margin: 20px 0;
}

.contact-list li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    font-size: 1.2rem;
    color: #3498db;
    width: 25px;
    text-align: center;
}

.contact-list a {
    color: #3498db;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
}

footer {
    text-align: center;
    padding: 20px;
    background: #3c4d66;
    color: white;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .model-detail {
        flex-direction: column;
    }
    
    .thumbnails {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.btnlink {
  display: inline-block; 
  background: #8C959D; 
  color: #fff; 
  padding: 1rem 1.5rem; 
  text-decoration: none; 
  border-radius: 3px; 
}


.btnlink:hover {
    color: #3498db;
	background-color: rgba(139,139,135,0.10); }
