*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.contact-bar {
    background-color: #dd0985;
    color: #f1ecec;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    display: flex;
    flex-wrap: wrap;

}
.contact-bar i {
    color: #1f09e6; /* Icon color */
}

.contact-bar a {
    color: #0077b5; /* Change as per theme color */
    text-decoration: none;
    margin: 0 5px;
}

.contact-bar a:hover {
    text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-bar {
        flex-direction: row; /* Stack items vertically */
        gap: 10px; /* Adjust the gap between items */
    }

    .contact-bar i,
    .contact-bar a {
        font-size: 10px; /* Slightly increase font size for readability on mobile */
    }
}
/* Responsive adjustments for mobile (max-width: 600px) */
@media (max-width: 600px) {
    .contact-bar {
        padding: 8px; /* Reduce padding on smaller screens */
        font-size: 12px; /* Reduce font size on very small screens */
        gap: 8px; /* Reduce gap on smaller screens */
    }

    .contact-bar i,
    .contact-bar a {
        font-size: 14px; /* Slightly larger font size for better readability */
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 10px 15px;
    font-size: 16px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
/* Logo Styling */
.logo img {
    height: 50px; /* Adjust size as needed */
    width: auto;
}


.navbar .logo a {
    color: #eef10a;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: #ec0202;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
   
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
   
    background-color: rgb(68, 0, 255);
    border-radius: 5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 20;
    
}
.bar{
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar{
        position: relative;
    }
    .nav-links{
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #4407ee;
        display: flex;
        flex-direction: row;
        padding: 10px;
        font-size: 14px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-100%);
        opacity: 0;
       
    }
    .nav-links.nav-active{
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        margin: 10px 0;
    }
    .nav-links a{
        color: white;
        text-decoration: none;
        font-size: 14px;
      
        padding: 5px 10px;
        white-space: nowrap;
    }
    body{
        overflow-x: hidden;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: block;
    }
}
/* Carousel Container */
.carousel {
    position: relative;
    max-width: 100%;
    height: 40vh; /* Adjust height as needed */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Slide */
.carousel-slide.active {
    opacity: 1;
}
/* Overlay styling */
.welcome-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 15;
    max-width: 90%; /* Keeps it responsive */
    padding: 5px;
}

.welcome-overlay h2 {
    font-size: 2em; /* Adjust as needed for styling */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a shadow for better readability */
}
.welcome-overlay h1 span{
    color: rgb(252, 245, 245);
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bolder;
}

.welcome-overlay p {
    font-size: 1.3em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .welcome-overlay h1 {
        font-size: 1.5em;
    }

    .welcome-overlay p {
        font-size: 2em;
    }
}


@media (max-width: 480px) {
    .welcome-overlay h1 {
        font-size: 1.5em;
    }

    .welcome-overlay p {
        font-size: 1em;
    }
}


/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgb(253, 7, 159);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.dot.active {
    opacity: 1;
}
/* About Us Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 2em;
    background-color: #040435;
}

.about-content {
    max-width: 600px;
    margin-right: 2em;
}

.about-content h2 {
    font-size: 2.5em;
    color: #f1f0f0;
    margin-bottom: 0.5em;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #faf5f5;
}

.about-icons {
    display: flex;
    gap: 1em;
    margin-top: 1.5em;
}

.icon-box {
    text-align: center;
    flex: 1;
}

.icon-box i {
    font-size: 2.5em;
    color: #ff00aa;
    margin-bottom: 0.5em;
}

.icon-box h4 {
    font-size: 1.2em;
    color: #fdf7f7;
    margin-bottom: 0.2em;
}

.about-image img {
    width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        margin: 0;
    }

    .about-image img {
        width: 100%;
        margin-top: 1.5em;
    }
}

/* Services Section */
.services-section {
    padding: 3em 2em;
    background-color: #e9ecef;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0.5em;
}

.services-intro {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 2em;
}

.services-container {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    max-width: 300px;
    padding: 1.5em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 0.5em;
}

.service-card h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 0.5em;
}

.service-card p {
    font-size: 1em;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Product Showcase Section */
.product-showcase {
    text-align: center;
    padding: 2em;
}

.filter-buttons button {
    margin: 0.5em;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s ease;
}

.filter-buttons button:hover {
    background-color: #0056b3;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
    margin-top: 1em;
}

.product-card {
    perspective: 1000px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    border-radius: 8px;
}
/* Location Section */
.location-section {
    padding: 3em 2em;
    background-color: #f8f9fa;
    text-align: center;
}

.location-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0.5em;
}

.location-intro {
    font-size: 1.1em;
    color: #1104c2;
    margin-bottom: 2em;
}

.location-content {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-info {
    max-width: 300px;
    text-align: left;
}

.location-info h4 {
    font-size: 1.3em;
    color: #333;
    margin-top: 1em;
}

.location-info p {
    font-size: 1em;
    color: #3202a0;
    line-height: 1.5;
}

.location-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
        align-items: center;
    }

    .location-info {
        text-align: center;
    }
}
.location-map{
    max-width: 600px;
    margin: 0 auto
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-container div {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-about, .footer-links, .footer-contact, .footer-social {
    max-width: 250px;
}

.footer-about p, .footer-contact p {
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact p a{
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a, .footer-social a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover, .footer-social a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-credit {
    font-size: 13px;
    margin-top: 10px;
    color: #888;
}
.footer-credit a{
    color: white;
}
