/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Optional: Other loader styles */
}

/* From Uiverse.io by Praashoo7 */ 
.l {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .o {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .a {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.8s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .i {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .n {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .g {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d1 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 1.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d2 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  @keyframes pass {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}
  
  @keyframes pass1 {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}

/* Body */
body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar-container {
    width: 100%;
    height: 85px;
    background-color: white;
    padding: 14px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3px;
    height: 60px;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 17px;
}

.nav-links a {
    font-family: "Roboto Condensed", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin-top: 30px;
    margin-right: 20px;
}

.nav-links a:hover {
    color: #608BC1;
}

.phone-number a {
    font-size: 20px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    color: #ED6a5a;
    border: 2px solid #ED6a5a;
}


.nav-links .phone-number a:hover {
    color: white;
    background-color: #ED6a5a;
}

/* Top Image */
.top-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    margin-top: 0px;
}

.top-img img {
    width: 100%;
    height: auto;
    max-height: 300px; /* You can adjust this to set the maximum height */
    object-fit: cover;
    opacity: 80%;
}

/* Text Overlay on Image */
.image-text {
    position: absolute;
    color: #ffffff;
    text-align: center;
}

.image-text h1 {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 60px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.image-text h3 {
    font-family: "Roboto Mono", monospace;
    font-size: 24px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Tint Overlay */
.image-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black tint with 40% opacity */
    z-index: 1; /* Place the tint above the image but below the text */
}

.image-text {
    position: absolute;
    color: #ffffff;
    text-align: center;
    z-index: 2; /* Place text above the tint */
}

        /* Main product container */
        #Product {
            display: flex;
            flex-wrap: wrap;
            gap: 100px;
            justify-content: center;
            padding: 25px;
            background-color: #f4f4f4;
        }

        /* Individual product card */
        .product-card {
            width: 300px;
            background-color: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            text-align: center;
            overflow: hidden;
            transition: transform 0.2s;
        }

        /* Add hover effect */
        .product-card:hover {
            transform: translateY(-5px);
        }

        /* Image style */
        .product-card img {
            width: 100%;
            height: auto;
        }

        /* Product details */
        .product-details {
            padding: 15px;
        }

        .product-title {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0;
        }

        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        /* Read More button */
        .read-more {
            background-color: #00aaff;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            transition: background-color 0.2s;
        }

        .read-more:hover {
            background-color: #0077cc;
        }

/* Footer Container */
.foot {
    background-color: #1e1e28;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Column */
.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: "▸";
    color: #007bff;
    font-size: 18px;
    position: absolute;
    margin-left: 5px;
}

/* Footer Text */
.footer-column p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Links Styling */
.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Contact Information */
.contact-info li {
    font-size: 14px;
    color: #cccccc;
}

.verified-badge {
    margin-top: 20px;
    max-width: 100px;
}

/* Footer Column Spacing */
.footer-container .footer-column:not(:last-child) {
    margin-right: 30px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .logo img {
        height: 40px;
    }
    .image-text h1 {
        font-size: 36px;
    }
    .image-text h3 {
        font-size: 18px;
    }
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Dropdown Menu for Mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.mobile-nav a {
    padding: 10px 0;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: #608BC1;
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide main nav links */
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .container,
    .content-section,
    .product-cards,
    .stat {
        flex-direction: column;
        gap: 20px;
    }

    /* Ensure content centers and resizes for mobile */
    .content h1 {
        font-size: 50px;
    }
    .content h3 {
        font-size: 28px;
    }
    .content h2 {
        font-size: 18px;
        padding: 8px 16px;
    }
    .left-column,
    .right-column {
        width: 100%;
    }
    .image-section img,
    .product-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .image-text h1 {
        font-size: 28px;
    }
    .image-text h3 {
        font-size: 16px;
    }
    #Product {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
        padding: 25px;
        background-color: #f4f4f4;
    }
    .footer-container {
        display: block;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}
