/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    background: #000;
}

/* Logo Styles */
.logo-link {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3; /* Ensure the logo is above the blurred background */
}

.logo {
    width: 100px; /* Adjust the size as needed */
    height: auto;
    transition: transform 0.3s ease;
    border: 0.5px solid white; /* White border */
    border-radius: 10px; /* Optional: rounded corners */
    padding: 1px; /* Adds spacing inside the border */
    background-color: white; /* Optional: ensures visibility on dark backgrounds */
}


.logo:hover {
    transform: scale(1.1); /* Add a slight zoom effect on hover */
}

/* Header Section with Blurred Background */
#header {
    background: url('/pic/nightcow5.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(5px);
    z-index: 1;
}

#header h1, #header p {
    position: relative;
    z-index: 2;
}

#header h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

#header p {
    font-size: 1.5rem;
    margin: 10px 0;
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Section */
#about {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6f61;
    animation: slideInLeft 1s ease-in-out;
}

#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    animation: slideInRight 1s ease-in-out;
}

#paragraphcolor {
    color: gold;
}

.about-image {
    width: 150px;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    animation: zoomIn 1s ease-in-out;
    object-fit: cover;
    display: block;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6f61;
    animation: slideInLeft 1s ease-in-out;
}

.section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: slideInRight 1s ease-in-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Image Slider */
.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Slider Dots */
.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 111, 97, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: rgba(255, 111, 97, 1);
}

/* Features Section */
#features {
    background: #111; /* Dark background for contrast */
    padding: 60px 20px;
    text-align: center;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff6f61; /* Accent color */
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: #222; /* Slightly lighter background for each feature */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 10px 20px rgba(255, 111, 97, 0.2); /* Glow effect on hover */
}

.feature-icon {
    font-size: 2rem;
    color: #ff6f61; /* Accent color for icons */
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6f61; /* Accent color for headings */
}

.feature p {
    font-size: 1rem;
    color: #fff; /* White text for readability */
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 400px;
    }
}
/* Features Section */
#features {
    background: #111;
    padding: 60px 20px;
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns items with space between */
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Side: Text Content */
.features-content {
    flex: 1;
    padding-left: 0; /* Remove left padding */
    margin-left: -20px; /* Optional: Pull content further left */
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff6f61;
    text-align: left; /* Ensure heading is left-aligned */
}

.feature {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    text-align: left; /* Ensure text is left-aligned */
}

.feature-icon {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6f61;
}

.feature p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    text-align: left; /* Ensure paragraphs are left-aligned */
}

/* Right Side: Image */
.features-image {
    flex: 1;
    text-align: right;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}



/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column; /* Stack content vertically on mobile */
        gap: 20px; /* Reduced gap for mobile */
    }

    .features-content h2 {
        font-size: 1.8rem; /* Smaller font size for mobile */
    }

    .feature {
        padding: 10px; /* Reduced padding for mobile */
    }

    .feature-icon {
        font-size: 1.2rem; /* Smaller icon size for mobile */
    }

    .feature h3 {
        font-size: 1.1rem; /* Smaller font size for mobile */
    }

    .feature p {
        font-size: 0.85rem; /* Smaller font size for mobile */
    }

    .features-image {
        text-align: center; /* Center align image on mobile */
        margin-top: 20px; /* Add spacing between text and image */
    }

    .features-image img {
        width: 100%;
        aspect-ratio: auto; /* Example: 16:9 aspect ratio */
        object-fit: cover; /* Ensures the image covers the area without distortion */
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    @media (max-width: 768px) {
        .features-image img {
            max-width: 100%; /* Smaller image for mobile */
            height: auto;
        }
    }
}
/* Testimonials */
#testimonials {
    background: url('pic/bg3.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#testimonials h2, #testimonials .testimonial {
    position: relative;
    z-index: 2;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6f61;
    animation: slideInLeft 1s ease-in-out;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    animation: slideUp 1s ease-in-out;
}

/* Box Section */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.box {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    width: calc(33.33% - 20px);
    height: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .box {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .box {
        width: 100%;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

/* Popup Container */
.popup-container {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 250px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-container p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.popup-container a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    background: #25D366;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.popup-container a:hover {
    background: #1eb953;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Loading Spinner */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6f61;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

#back-to-top:hover {
    background-color: #ff4a3d;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #ff6f61;
    width: 0%;
    z-index: 1000;
}

/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: none;
}

#accept-cookies {
    background: #ff6f61;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
}

/* Newsletter Section */
#newsletter {
    background: #222; /* Dark background for contrast */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
}

#newsletter h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6f61; /* Accent color */
}

#newsletter p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
}

#newsletter form {
    display: flex;
    flex-direction: column; /* Stack inputs vertically */
    align-items: center;
    gap: 10px; /* Spacing between inputs */
}

#newsletter input[type="text"],
#newsletter input[type="tel"],
#newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
    width: 100%; /* Full width for inputs */
    max-width: 400px; /* Limit maximum width */
    font-size: 1rem;
    outline: none; /* Remove default outline */
}

#newsletter input[type="text"]::placeholder,
#newsletter input[type="tel"]::placeholder,
#newsletter input[type="email"]::placeholder {
    color: #aaa; /* Placeholder text color */
}

#newsletter input[type="text"]:focus,
#newsletter input[type="tel"]:focus,
#newsletter input[type="email"]:focus {
    border-color: #ff6f61; /* Highlight border on focus */
}

#newsletter button {
    background: #ff6f61; /* Accent color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%; /* Full width for button */
    max-width: 400px; /* Limit maximum width */
}

#newsletter button:hover {
    background: #ff4a3d; /* Darker shade on hover */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    #newsletter input[type="text"],
    #newsletter input[type="tel"],
    #newsletter input[type="email"],
    #newsletter button {
        width: 100%; /* Full width on mobile */
    }
}
/* Social Media Links and Call Us Button */
.social-media {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-media a {
    color: #ff6f61;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff4a3d;
}

/* Call Us Button */
.call-us-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white; /* WhatsApp green color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.call-us-button:hover {
    background: #1eb953; /* Darker green on hover */
}

.call-us-button i {
    font-size: 20px;
}

/* Catalog Download Button */
.catalog-download {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.catalog-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #007BFF; /* Blue color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.catalog-button:hover {
    background: #0056b3; /* Darker blue on hover */
}
.catalog-button i {
    font-size: 20px;
}

/*address*/
.address{
margin: 20px;
    padding: 20px;
    background-color: #3a3737;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    color: white;
}

/* Customer Reviews Section */
#customer-reviews {
    background: #111;
    padding: 60px 20px;
    text-align: center;
}

#customer-reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff6f61;
    animation: slideInLeft 1s ease-in-out;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 111, 97, 0.2);
}

.stat i {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 10px;
}

.stat h3 {
    font-size: 2rem;
    margin: 10px 0;
    color: #ff6f61;
}

.stat p {
    font-size: 1rem;
    color: #fff;
}

/* Footer Copyright Text */
footer p {
    text-align: center; /* Centers the text horizontally */
    margin: 10px 0; /* Adds some spacing above and below the text */
}

.video-50-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 0 10px; /* optional padding on small screens */
}

.video-50-center video {
  width: 50vw;         /* default: 50% of screen width */
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgb(255, 255, 255);
}

/* Mobile-friendly adjustment */
@media (max-width: 768px) {
  .video-50-center video {
    width: 90vw;  /* 90% of screen width on small screens */
  }
}
