@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-bar {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    flex-wrap: wrap;
}

.top-bar .contact-info,
.top-bar .social-icons {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.top-bar .contact-info a,
.top-bar .social-icons a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.navbar .logo img {
    height: 60px;
    margin-bottom: 10px;
}

.navbar .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar .hamburger-menu .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar .nav-links li {
    margin: 0 15px;
    position: relative;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar .nav-links .dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    margin: 0;
}

.navbar .nav-links li:hover .dropdown {
    display: block;
}

.navbar .nav-links .dropdown li {
    margin: 5px 0;
}

.quick-enquiry a {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    margin-top: 10px;
}

.header-content {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    background: url('img/bg\ 2.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 30px;
    color: #000000;
    flex-wrap: wrap;
    /* text-align: center; */
}
.header-content {
    display: flex;
    justify-content: center; /* Aligns horizontally to the center */
    align-items: center;     /* Aligns vertically to the center */
    height: 100vh;           /* Takes full viewport height */
    text-align: center;      /* Centers text within the container */
}

.header-text {
    max-width: 800px; /* Optional: sets a max width for text content */
}

.header-buttons .btn {
    margin: 10px; /* Adds spacing between buttons */
}

.header-text {
    max-width: 600px;
    margin-bottom: 20px;
}

.header-text h1 {
    font-size: 3.5em;
    margin: 0;
}

.header-text h2 {
    font-size: 2em;
    margin: 10px 0;
}

.header-text p {
    font-size: 1.2em;
    margin: 20px 0;
}

.header-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.header-buttons .btn {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.header-image img {
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar, .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar .hamburger-menu {
        display: flex;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #fff;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links li {
        margin: 10px 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .header-content {
        flex-direction: column;
        padding: 100px 20px;
    }

    .header-text {
        max-width: 100%;
    }

    .header-buttons .btn {
        margin-right: 0;
    }

    .quick-enquiry {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar, .navbar {
        padding: 10px 15px;
    }

    .navbar .nav-links li {
        margin: 5px 10px;
    }

    .header-content {
        padding: 50px 15px;
    }

    .header-text h1 {
        font-size: 2em;
    }

    .header-text h2 {
        font-size: 1.5em;
    }

    .header-text p {
        font-size: 1em;
    }

    .header-image img {
        height: auto;
        width: 100%;
    }
}


.brands-section {
    padding: 50px;
    background-color: #f3f3f3;
    text-align: center;
}
.brands-section h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
}
.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.brand-item {
    margin: 15px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.brand-item img {
    max-width: 100%;
    max-height: 100%;
}
.brand-item:hover {
    transform: scale(1.05);
}



.about-us-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-us-content {
    flex: 1 1 50%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 0 auto;
}

.about-us-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-us-content .buttons {
    margin-top: 20px;
}

.about-us-content .contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c11a17;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.about-us-content .contact:hover {
    background-color: #a31414;
}

.about-us-video {
    flex: 1 1 40%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 0 auto;
}

.about-us-video iframe {
    width: 100%;
    height: 315px;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-us-section {
        flex-direction: column;
        align-items: center;
    }

    .about-us-content, .about-us-video {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-us-content h2 {
        font-size: 1.8em;
    }

    .about-us-content p {
        font-size: 0.9em;
    }

    .about-us-content .contact {
        padding: 8px 16px;
    }

    .about-us-video iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-us-content h2 {
        font-size: 1.5em;
    }

    .about-us-content p {
        font-size: 0.85em;
    }

    .about-us-video iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .about-us-content h2 {
        font-size: 1.3em;
    }

    .about-us-content p {
        font-size: 0.8em;
    }

    .about-us-video iframe {
        height: 180px;
    }
}





.social-links {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.social-link {
    background-color: #333;
    color: #fff;
    text-align: center;
    width: 38px;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 20px;
    border-radius: 0 5px 5px 0;
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.twitter {
    background-color: #00aced;
}

.social-link.email {
    background-color: #dd4b39;
}

.social-link.messenger {
    background-color: #0084ff;
}

.social-link.whatsapp {
    background-color: #25d366;
}

.social-link.share {
    background-color: #1da1f2;
}

.latest-products {
    background-color: #585858;
    color: #fff;
    padding: 50px 30px;
    text-align: center;
}

.latest-products h3 {
    color: #ff0000;
    margin-bottom: 10px;
}

.slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-content {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slider-item {
    min-width: 300px;
    margin: 0 10px;
    background-color: #fff;
    color: #333;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.slider-item img {
    max-width: 100%;
    border-bottom: 2px solid #ffdd57;
}

.slider-item p {
    margin-top: 10px;
}

.prev, .next {
    background-color: transparent;
    color: #fff;
    font-size: 30px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}



/* Responsive Styles */
@media (max-width: 1200px) {
    .slider-item {
        flex: 1 0 33.33%;
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 1 0 50%;
    }
}

@media (max-width: 768px) {
    .slider-item {
        flex: 1 0 100%;
    }
}

@media (max-width: 576px) {
    .latest-products h3 {
        font-size: 1.2em;
    }

    .latest-products h2 {
        font-size: 1.5em;
    }

    .slider .prev, .slider .next {
        padding: 8px 12px;
    }
}



.why-choose-us, .our-clients {
    padding: 50px 30px;
    text-align: left;
}

.why-choose-us h2, .our-clients h2 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f00;
    display: inline-block;
}

.accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: #f00;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion-header span {
    margin-right: 10px;
    font-size: 18px;
}

.accordion-body {
    background-color: #f9f9f9;
    padding: 15px;
    display: none;
}

.accordion-body.active {
    display: block;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-item img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.testimonial-item p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.testimonial-item strong {
    font-size: 14px;
    color: #333;
}



.our-clients {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.clients-slider {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.counters {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.counter-item {
    flex: 1 1 30%;
    max-width: 250px;
    margin: 0 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.counter-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.counter-item p.counter-number {
    font-size: 2.5em;
    font-weight: bold;
    margin: 10px 0;
}

.counter-item p.counter-label {
    font-size: 1.1em;
    color: #666;
}

.counter-item:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .counters {
        flex-wrap: wrap;
    }

    .counter-item {
        flex: 1 1 45%;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .counter-item {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .counter-item img {
        width: 50px;
        height: 50px;
    }

    .counter-item p.counter-number {
        font-size: 2em;
    }

    .counter-item p.counter-label {
        font-size: 1em;
    }
}



/* Footer Styling */
footer {
    background-color: #0a0c10;
    color: #fff;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section h3 {
    border-bottom: 2px solid #f00;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f00;
}

.social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
  }
  
  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0; /* Background color for icons */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .social-icons a i {
    font-size: 20px;
    color: #333; /* Icon color */
  }
  
  .social-icons a:hover {
    background-color: #ddd; /* Hover effect */
  }
  
  .social-icons a i:hover {
    color: #0077b5; /* Hover color for icons */
  }
  
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-section {
        flex: 1 1 45%;
    }
}

@media (max-width: 992px) {
    .footer-section {
        flex: 1 1 50%;
    }
}

@media (max-width: 768px) {
    .footer-section {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin: 10px 0;
    }
    
    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        margin: 0 10px;
    }
}



.share-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.share-sidebar a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 5px 0;
    background-color: #5b5252;
    text-align: center;
    line-height: 40px;
    color: white;
    border-radius: 5px 0 0 5px;
}

.share-sidebar a:hover {
    opacity: 0.8;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-email {
    background-color: #dd4b39;
}

.share-messenger {
    background-color: #0084ff;
}

.share-whatsapp {
    background-color: #25d366;
}

.share-more {
    background-color: #4CAF50;
}