:root {
    --primary-color: #203f8f;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 4px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    height: 30px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.8em;
    line-height: 1;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 0.9em;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.partner-gate-btn,
.download-brochure-btn {
    padding: 3px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8em;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.partner-gate-btn {
    background: var(--primary-color);
    color: var(--white);
}

.download-brochure-btn {
    background: #e9ecef;
    color: #333;
}

.main-nav {
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.logo img {
    height: 50px;
    border: 0px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.estimator-btn,
.call-btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.estimator-btn {
    background: #e9ecef;
    color: #333;
}

.estimator-btn i {
    margin-right: 5px;
}

.call-btn {
    background: var(--primary-color);
    color: var(--white);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 20px;
    color: #333;
}

.dropdown-content a:hover {
    background: #f8f9fa;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-buttons {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-container {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-top {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 40px;
    color: var(--black);
    margin: 20px;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}
.about-15-years-image img {
    width: 50%;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--#203f8f);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    padding: 80px 5%;
    background: #eeeeee;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--black);
    margin-bottom: 50px;

}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.solution-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.solution-card p {
    color: var(--black);
    font-size: 1.1em;
}

/* Products Section */
.products {
    padding: 50px 0;
    background: var(--white);
    overflow: hidden;
}


.products h2 {
    text-align: center;
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.products-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.products-track {
    display: flex;
    animation: scrollProducts 30s linear infinite;
}

.product-card {
    flex: 0 0 300px;
    padding: 0 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--black);
    font-size: 1.2em;
    margin-top: 10px;
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Wood Species Section */
.wood-species {
    padding: 80px 5%;
    background: #eeeeee;
    text-align: center;
}

.wood-species h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.wood-species h2 {
    color: var(--black);
    font-size: 2.8em;
    margin-bottom: 50px;
}

.wood-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.wood-card {
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 15px;
}

.wood-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
    margin-bottom: 40px;
}

.wood-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.42); /* Compensate for diamond shape */
    transition: transform 0.5s ease;
}

.wood-card h3 {
    margin-top: 40px;
    color: var(--black);
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s ease;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
}

/* Hover Effects */
.wood-card:hover .wood-image {
    transform: rotate(45deg) scale(1.1);
}

.wood-card:hover .wood-image img {
    transform: rotate(-45deg) scale(1.6);
}

.wood-card:hover h3 {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wood-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .wood-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .wood-card {
        padding: 10px;
    }
    
    .wood-image {
        margin-bottom: 30px;
    }
    
    .wood-card h3 {
        margin-top: 30px;
        bottom: -25px;
    }
    
    .wood-species h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .wood-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Catalog Section */
.catalog {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 5%;
}

.download-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.testimonials h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonials h2 {
    color: #203f8f;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.google-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-icon {
    width: 40px;
    height: 40px;
}

.rating-info h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.review-button {
    background: #0066cc;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.review-button:hover {
    background: #0052a3;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-card {
    flex: 0 0 300px; /* Fixed width */
    margin-right: 30px; /* Gap between cards */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.user-details h4 {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.user-details h4 i {
    color: #1da1f2;
    font-size: 0.8em;
    margin-left: 5px;
}

.user-details span {
    color: #666;
    font-size: 0.9em;
}

.testimonial-card .stars {
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #333;
    line-height: 1.5;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Smooth animation reset */
.products-track,
.testimonials-track {
    will-change: transform;
    backface-visibility: hidden;
}

/* Footer Styles */
footer {
    background: #f8f9fa;
    padding: 80px 5% 40px;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    padding-right: 20px;
}

.footer-section.brand {
    padding-right: 40px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-section.brand p {
    color: #666;
    line-height: 1.6;
}

.footer-section h3 {
    color: #203f8f;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section.quick-links ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.footer-section.quick-links li {
    margin-bottom: 12px;
}

.footer-section.quick-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.quick-links a:hover {
    color: #203f8f;
}

.footer-section.location p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section.contact .phone,
.footer-section.contact .email,
.footer-section.contact .complaint-phone,
.footer-section.contact .complaint-email {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section.contact .phone:hover,
.footer-section.contact .email:hover,
.footer-section.contact .complaint-phone:hover,
.footer-section.contact .complaint-email:hover {
    color: #203f8f;
}

.complaint-title {
    margin-top: 30px;
}

.social-links {
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #666;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #203f8f;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-section.brand,
    .footer-section.quick-links {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-section.quick-links ul {
        columns: 1;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .about {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions h2 {
        font-size: 2em;
    }
    
    .products h2 {
        font-size: 2em;
    }
    
    .product-card {
        flex: 0 0 250px;
    }
    
    .product-card img {
        height: 300px;
    }
    
    .products-track {
        width: calc(250px * 6);
    }
    
    @keyframes scrollProducts {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 3));
        }
    }

    .google-review-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-card {
        flex: 0 0 280px;
        margin-right: 20px;
    }

    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-310px * 3));
        }
    }
}

/* FAQ Section */
.faq {
    padding: 80px 5%;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    color: #203f8f;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1em;
    color: #333;
    margin: 0;
    padding-right: 20px;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background: #f8f9fa;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-answer li:before {
    content: "•";
    color: #203f8f;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

/* Hover effects */
.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    background-color: #203f8f;
}

.faq-item.active .faq-question h3,
.faq-item.active .toggle-icon {
    color: var(--white);
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2em;
    }

    .faq-question h3 {
        font-size: 1em;
    }
    
    .faq-answer li {
        font-size: 0.9em;
    }
} 