/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "DM serif display", serif;
    font-weight: 400;
    background-image: url('/assets/zwartevilt.png');
    background-repeat: repeat;
    background-size: auto;
    color: white;
    /* Remove the padding-top from here */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-image: url("/assets/bg.png");
    border-bottom: 2px solid;
    border-color: #ff9500;    background-repeat: repeat;
    background-size: auto;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #000000c9;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.navbar-logo img {
    max-height: 200px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-family: REM, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #ff9500;
    color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #000000;
    text-decoration: none;
}

.navbar ul li a:hover {
    color: #ffffff;
}

/* #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#nav {
    background-color: #FF9500;
    font-family: "REM", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    justify-items: center;
    text-transform: uppercase;
    height: 80px;
}

/* Add this new rule to push content below the fixed navbar */
main {
    padding-top: 80px; /* Adjust this value to match your navbar height */
}

#nav .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

#nav a {
    color: #000000;
    text-decoration: none;
}

#nav a:hover {
    color: #ffffff;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    font-family: "DM Serif Display", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    gap: 10px;
}

.logo-image {
    width: 60px;
    height: 60px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    #nav {
        grid-template-columns: 1fr 1fr;
    }

    #nav .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        justify-self: end;
        padding-right: 20px;
    }
} */

#hero-text {
    font-size: 55px;
}

.main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 160px;
    padding: 0 50px;
    font-size: 25px;
    gap: 50px;
}

.main2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    margin-bottom: 60px;
    padding: 0 50px;
    font-size: 25px;
    gap: 50px;
}

p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

#hero-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 30px;
}

#hero-right img {
    height: 720px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hero-left img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 8px;
}

.hero-button {
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: #EDE3E9;
    background-color: #000000;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 20px 0;
    display: inline-block;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background-color: #ff9500;
    color: #000000;
}

#hero-right-2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 30px;
}

#hero-right-2 img {
    height: 790px;
    width: 100%;
    object-fit: cover;
    /* border-radius: 8px; */
}

#hero-left-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hero-left-2 img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 8px;
}

.hero-button {
    font-family: Montserrat;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    background-color: #ff9500;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 20px 0;
    display: inline-block;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background-color: #ffb006;
    color: #ffffff;
}

/* Sidebar Styles */
#sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 70px;
}

#sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

#sidebar .sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

#sidebar .sidebar-links a:hover {
    color: #F0A500;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #000000;
    position: absolute;
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    #nav {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        padding-top: 10px;
        height: auto;
        position: relative;
    }

    #nav .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        translate: 0 55%;
    }

    .logo {
        justify-self: start;
        padding-left: 20px;
    }

    .left-bottom {
        order: -1;
    }

    #hero-text {
        font-size: 45px;
    }

    .main, .main2 {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    #hero-right img, #hero-left img, #hero-right-2 img, #hero-left-2 img {
        height: auto;
        width: 100%;
    }

    .hero-button {
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    #hero-text {
        font-size: 35px;
    }

    .main, .main2 {
        font-size: 20px;
    }

    .hero-button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #hero-text {
        font-size: 25px;
    }

    .main, .main2 {
        font-size: 18px;
    }

    .hero-button {
        font-size: 18px;
    }
}



.strip {
    background-color: #ff9500; /* Background color similar to the image */
    color: #000000; /* Text color similar to the image */
    padding: 10px 0;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
}

.strip p {
    display: inline-block;
    animation: scroll 10s linear infinite;
    font-size: 24px;
    margin: 0;
}

.strip .new {
    margin: 0 10px;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hide the element on screens smaller than 768px (mobile devices) */
@media (max-width: 767px) {
    .strip {
        display: none;
    }
}

/* Show the element on screens 768px and larger (desktop versions) */
@media (min-width: 768px) {
    .strip {
        display: block; /* or use other display values as needed */
    }
}

.strip-hero {
    background-color: #ff9500; /* Background color similar to the image */
    color: #000000; /* Text color similar to the image */
    padding: 10px 0;
    margin-top: 50px;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    display: none; /* Hide by default */
}

.strip-hero p {
    display: inline-block;
    animation: scroll 10s linear infinite;
    font-size: 24px;
    margin: 0;
}

.strip-hero .new {
    margin: 0 10px;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media query to show .strip on smaller screens */
@media (max-width: 768px) {
    .strip-hero {
        display: block; /* Show on screens smaller than 768px */
    }
}

.strip-auth {
    background-color: #ff9500; /* Background color similar to the image */
    color: #000000; /* Text color similar to the image */
    padding: 10px 0;
    margin-top: 50px;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    display: none; /* Hide by default */
}

.strip-auth p {
    display: inline-block;
    animation: scroll 10s linear infinite;
    font-size: 24px;
    margin: 0;
}

.strip-auth .new {
    margin: 0 10px;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media query to show .strip on smaller screens */
@media (max-width: 768px) {
    .strip-auth {
        display: block; /* Show on screens smaller than 768px */
    }
}

.icon-divider {
        color: #ff9500;
        border: 2px dashed;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }

        .animated-icon {
            width: 70px; /* Adjust the size as needed */
            margin: 0 15px; /* Adjust spacing as needed */
            animation: wave 4s infinite ease-in-out;
        }

        .animated-icon:nth-child(2) {
            animation-delay: 0.2s;
        }

        .animated-icon:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes wave {
            0% { transform: translateY(0); }
            25% { transform: translateY(-10px); }
            50% { transform: translateY(0); }
            75% { transform: translateY(10px); }
            100% { transform: translateY(0); }
        }


/* Hide the element on screens 768px and larger (desktop versions) */
@media (min-width: 768px) {
    .icon-divider {
        display: none;
    }
}

#menu-heading {
    font-size: 50px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 10px;
}

#menu-sub-heading {
    text-align: center;
    
}


.menu-container {
    width: 50%;
    margin: auto;
    padding: 20px;
}

@media (max-width: 767px) {
    .menu-container {
        width: 80%;
    }
}

.menu-section {
    background-color: #FF9500;
    margin: 10px 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-title {
    text-align: center;
    font-size: 1.5em;
    color: #000000;
}

.menu-items {
    font-family: Montserrat;
    display: none;
    background-color: #000000;
    margin-top: 10px;
    border-radius: 5px;
}

.menu-items div {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #555;
}

.menu-items div:last-child {
    border-bottom: none;
}

#special {
    margin-top: 100px;
}
#special-text {
    text-align: center;
    margin-bottom: 80px;
}

#special-heading {
    font-size: 50px;
    text-align: center;
}

#special-sub-heading {
    text-align: center;
    margin-top: 20px;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.card {
    /* background-color: #fff; */
    padding-top: 30px;
    margin: 20px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    border-radius: 30px;
    box-shadow: 0px 0px 30px #F9A620;
    transition: background-color 0.3s ease;
}

.card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #F9A620;
    margin: 0 0 10px;
    font-size: 24px;
}

.card-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #d3d1d1;
}

.card-content p strong {
    color: #F9A620;
}

/* Footer Styles */
footer {
  background-color: #FF9500;
  color: #000000;
  border-top: 3px dashed;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex-basis: 20%;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
    font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-section a {
    border-radius: 8px;
    padding: 5px 8px;
    background-color: #000;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ccc;
}

.hours-list {
  display: flex;
  flex-direction: column;
}

.hours span {
    font-weight: 500;
    font-family: Montserrat;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #555;
}

.hours-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.day {
  font-weight: bold;
}

.time {
  color: #000000;
}

.contact p {
    font-size: large;
  margin-bottom: 5px;
}

.contact i {
  margin-right: 5px;
}

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-section {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    flex-basis: 100%;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .day {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-section {
    text-align: center;
  }

  .hours-list {
    align-items: center;
  }

  .hours-item {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.footer-sachdev {
    margin-top: 5px;
    font-size: 15px;
}

.footer-sachdev a {
    color: #000;
    text-decoration: none;
}

.footer-sachdev a:hover {
    padding: 2px 4px;
    border-radius: 8px;
    transition: 0.3s;
    color: #EDE3E9;
    background-color: #000;
}


.testimonials {
    padding: 50px 20px;
    background-color: #ffffff00; /* White background for contrast */
    text-align: center;
    position: relative; /* Ensure proper positioning of Swiper elements */
}

.testimonials h2 {
    font-size: 2.5em;
    color: #ffffff; /* Dark blue for the heading */
    margin-bottom: 10px;
}

.testimonials .subtitle {
    font-size: 1.2em;
    color: #ffffff; /* Light grey for the subtitle */
    margin-bottom: 40px;
}

.swiper-container {
    width: 100%;
    padding: 50px 0;
    overflow: hidden; /* Prevent stretching */
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    background-color: #ffffff; /* White background for testimonial cards */
    border-radius: 15px; /* Increased border radius for modern look */
    padding: 30px; /* Increased padding for more space */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center;
    border-left: #F9A620 solid 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease; /* Smooth transform on hover */
}

.swiper-slide:hover {
    transform: translateY(-10px); /* Slight lift on hover */
}

.profile-picture {
    width: 80px; /* Larger profile picture */
    height: 80px; /* Larger profile picture */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow to the image */
    transition: box-shadow 0.3s ease-in-out; /* Add transition for hover effect */
}

.profile-picture:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.swiper-slide h3 {
    font-size: 1.3em; /* Slightly larger font for name */
    color: #333333; /* Dark color for the name */
    margin: 0 0 5px 0;
}

.customer-title {
    font-style: italic;
    color: #888888; /* Lighter grey for the title */
    margin: 0 0 10px 0;
}

.testimonial-text {
    font-size: 1em;
    color: #555555; /* Slightly darker grey for text */
    line-height: 1.6; /* Increased line height for readability */
    margin: 0 0 10px 0; /* Margin below the text */
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: 10px; /* Position at the bottom of the Swiper container */
    left: 0;
    right: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #888c8f; /* Color for the inactive bullets */
    opacity: 0.7; /* Slightly transparent */
}

.swiper-pagination-bullet-active {
    background: #F9A620; /* Color for the active bullet */
    opacity: 1; /* Fully opaque */
}

/* footer {
    background-color: #D91E36;
    color: #fff;
    padding: 100px;
    font-family: 'Krona One', sans-serif;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left h2 {
    margin: 0;
    font-size: 24px;
}

.footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-right ul li {
    margin-right: 20px;
}

.footer-right ul li a {
    color: #000000;
    text-decoration: none;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: #000000;
    font-size: 20px;
    margin-left: 10px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

#footer-sachdev {
    margin-top: 10px;
    font-size: 14px;
}

.pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url('/assets/webb.png');
    background-repeat: repeat-x;
} */
