* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #ffffff;
    color: #333;
}

/* ----------------------------------------------Navigation Bar------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #b8860b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #b8860b;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/*------------------------------------- ----Hero Section -------------------------------------------*/
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 120px 5% 60px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #2a2a2a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #ffffff;
}

.about-image {
    flex: 1;
    padding-right: 50px;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1,
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-image img,
    .about-image img {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .hero,
    .about {
        padding: 100px 5% 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero,
    .about {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 40px;
    }

    .hero-content,
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .about-image {
        display: none;
    }

    .hero-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .about-content h2 {
        font-size: 2rem;
    }

    .hero-content p,
    .about-content p {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
}



/*------------------------------------- Products Section------------------------------------------ */
.products-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #b8860b;
    bottom: -15px;
    left: 25%;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background:#f5f5f5;
;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-content {
    padding: 25px;
    text-align: left;
}

.product-content h3 {
    font-size: 1.5rem;
    color: #b8860b;
    margin-bottom: 15px;
}

.product-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.product-content li {
    margin-bottom: 8px;
    color: #555;
}

.product-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 5%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-content {
        padding: 20px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 40px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #b8860b;
    bottom: -15px;
    left: 25%;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    margin: 5% auto;
    display: block;
    animation: zoomIn 0.3s;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #b8860b;
}

.caption-text {
    color: white;
    padding: 10px 0;
    font-size: 1.2rem;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
}

/* -----------------------------------------Support Section ---------------------------------------*/
.support-section {
    padding: 80px 5%;
    background-color: #fff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.support-image-col {
    flex: 1;
}

.support-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-content-col {
    flex: 1;
    text-align: left; /* Changed from right to left */
}

.support-content-col h2 {
    font-size: 2.2rem;
    color: #2a2a2a;
    margin-bottom: 30px;
    text-align: left; /* Ensure heading is left-aligned */
}

.support-table {
    width: 100%;
    max-width: 400px;
    margin-right: auto; /* Changed from margin-left to margin-right */
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left; /* Ensure table content is left-aligned */
}

.support-table th, 
.support-table td {
    padding: 15px;
    text-align: left; /* Explicit left alignment for cells */
    border: 1px solid #e0e0e0;
}

.support-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.support-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.support-table tr:hover {
    background-color: #f5f5f5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .support-row {
        gap: 30px;
    }
    
    .support-content-col h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .support-content-col {
        text-align: left; /* Maintain left alignment on mobile */
    }
    
    .support-table {
        margin: 0; /* Remove auto margins on mobile */
        max-width: 100%;
    }
    
    .support-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 60px 5%;
    }
    
    .support-content-col h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .support-table th, 
    .support-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* ----------------------------------Feedback Section ----------------------------------------------*/
.feedback-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.feedback-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.feedback-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #b8860b;
    bottom: -15px;
    left: 25%;
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.half-width {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #b8860b;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

input:invalid + .error-message,
select:invalid + .error-message,
textarea:invalid + .error-message {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
    width: auto;
}

.submit-container {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background-color: #b8860b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #a67c10;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s;
}

.success-message i {
    color: #28a745;
    margin-right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .half-width {
        width: 100%;
    }
    
    .feedback-form {
        padding: 30px;
    }
    
    .feedback-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .feedback-form {
        padding: 20px;
    }
    
    .feedback-title {
        font-size: 1.8rem;
    }
}

/* ---------------------------------------Contact Section---------------------------------------- */
.contact-section {
    padding: 80px 5%;
    background-color: white;
}

.contact-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #b8860b;
    bottom: -15px;
    left: 25%;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.contact-list i {
    color: #b8860b;
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-list strong {
    margin-right: 8px;
    color: #333;
    font-weight: 600;
}

.contact-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #b8860b;
    text-decoration: underline;
}

.map-container {
    flex: 1;
}

.map-title {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.map-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .map-iframe-container {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile */
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-list i {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 5%;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
}

/* ------------------------------------Footer Styles ---------------------------------------------*/
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b8860b;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #b8860b;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-links i {
    color: #b8860b;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-link, 
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover, 
.footer-links a:hover {
    color: #b8860b;
}

.social-title {
    margin-top: 20px;
    margin-bottom: 10px !important;
    font-weight: 500;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #ddd;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        display: none;
    }
    
    .footer-bottom {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }
    
    .footer {
        padding: 20px 0;
    }
}