@import url("https://fonts.googleapis.com/css2?family=Amaranth:wght@700&family=Arima:wght@700&family=Figtree:wght@400..500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

/*========== Variables CSS ==========*/
:root {
  --header-height: 3.5rem;

  /*========== Font Sizes  ==========*/
  --biggest-font: 40px;
  --bigger-font: 26px;
  --big-font: 20px;
  --medium-font: 16px;
  --small-font: 14px;

  /*========== Font Weights ==========*/
  --bigger-weight: 900;
  --big-weight: 700;
  --medium-weight: 500;
  --small-weight: 400;

  /*========== Colors ==========*/
  --first-black: #333333;
  --second-black: #2f2f2f;
  --third-black: #121212;
  --beige: #d3b48f;
  --darker-beige: #c19b6d;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Figtree";
  color: var(--first-black);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
main {
  overflow-x: hidden;
}

/*========== Fonts ==========*/
h1 {
  font-family: "Amaranth", sans-serif;
  font-size: var(--biggest-font);
  font-weight: var(--big-weight);
  margin: 0;
}
h2 {
  font-family: "Arima", sans-serif;
  font-size: var(--bigger-font);
  font-weight: var(--bigger-weight);
  margin: 0;
  /* Except h2 in first section also with different font */
}
h3 {
  font-size: var(--big-font);
  font-weight: var(--small-weight);
  color: var(--second-black);
  margin: 0;
}
p,
small {
  font-weight: var(--small-weight);
  /* Except p in products section and smalls in footer are medium */
}
p {
  font-size: var(--medium-font);
}
small {
  font-size: var(--small-font);
}

/*========== REUSABLE CSS CLASSES ==========*/
.section {
  padding-block: 4rem 2rem;
}
.container {
  /* min-height: 100vh; */
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: var(--header-height) 1.5rem 0 1.5rem;
}
.heading-container {
  margin: 20px 0 25px 0;
}
/*========== Buttons ==========*/
button {
  font-family: inherit;
  font-size: var(--medium-font);
  background-color: var(--beige);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  transition: 0.3s;
  cursor: pointer;
}
button:hover {
  background-color: var(--darker-beige);
}

/*========== Navbar ==========*/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.4s, background-color 0.4s;
  margin-top: 20px;
}
nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin-inline: 1.5rem;
}
.nav-logo {
  display: flex;
  height: var(--header-height);
  align-items: center;
  column-gap: 0.5rem;
  color: var(--first-black);
  font-family: "Amaranth", sans-serif;
  font-size: var(--big-font);
  font-weight: var(--bigger-weight);
}
.nav-logo img {
  height: 90%;
}
.nav-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav-menu {
    position: fixed;
    top: -110%;
    left: 0;
    background-color: hsl(0, 0%, 0%, 0.75);
    backdrop-filter: blur(8px);
    padding-block: 1.8rem 5rem;
    width: 100%;
    text-align: center;
    transition: top 0.4s;
  }
}
.nav-title,
.nav-name,
.nav-close {
  color: white;
}
.nav-title {
  display: block;
  font-size: var(--small-font);
  font-weight: var(--medium-weight);
  margin-bottom: var(--header-height);
}
.nav-name {
  position: relative;
  width: max-content;
  margin: 0 auto 3rem;
  color: var(--beige);
  font-size: var(--bigger-font);
  font-family: "Amaranth", sans-serif;
}
.nav-name::after,
.nav-name::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--beige);
  position: absolute;
  left: -4rem;
  top: 50%;
}
.nav-name::after {
  left: initial;
  right: -4rem;
}
.nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.nav-link {
  position: relative;
  color: white;
  font-size: var(--medium-font);
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--beige);
}
.nav-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Add shadow to the header */
.shadow-header {
  box-shadow: 0 1px 16px hsla(0, 0%, 0%, 0.12);
  background-color: white;
}

/* Active link */
.active-link {
  color: var(--beige);
}

/*========== Intro Section  ==========*/
.intro-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(./assets/white-marble-bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: var(--header-height) 1.5rem;
}
.intro h1 {
  margin-bottom: 5px;
}
.intro h2 {
  font-family: "Figtree", sans-serif;
  margin-bottom: 10px;
}

/*========== Marbles Section ==========*/
.stone-container {
    width: 90%; /* Set the container to 90% of the page width */
    margin: 0 auto; /* Center the container horizontally */
}

.stone {
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .stone .stone-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two equal-width columns */
        gap: 20px; /* Space between items */
    }

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%; /* Full width of the grid item */
    height: 200px; /* Fixed height for rectangular display */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s ease; /* Smooth scaling on hover */
}

.stone img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Covers the container while maintaining aspect ratio */
    transition: transform 0.3s ease; /* Smooth zoom transition */
    border-radius: 10px; /* Match image corners with container */
}

    .stone img:hover {
        transform: scale(1.1); /* Slight zoom effect on hover */
    }

.marble-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: white; /* Semi-transparent yellow */
    color: black;
    text-align: center;
    font-size: 18px;
    padding: 5px;
    font-weight: bold;
    box-sizing: border-box;
    transition: background-color 0.3s ease; /* Smooth background transition */
}

    .marble-name:hover {
        background-color: rgba(255, 255, 0, 1); /* Solid yellow on hover */
    }



/*========== Products Section ==========*/
.product {
  padding: var(--header-height) 0 0 0;
  max-width: 1366px;
  margin: 0 auto;
}
.product .stone-grid {
  background: lightgray;
  border-bottom: solid 1px lightgray;
  grid-template-columns: repeat(2, 49vw);
  gap: 1px;
}
.product .stone-item {
  background: white;
  padding: 15px;
  cursor: pointer;
}
.product .image-container {
  position: relative;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.product .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  opacity: 0.5;
}
.product img {
  position: absolute;
  width: 100%;
  transition: 0.3s;
}
.product h3 {
  font-size: var(--medium-font);
  font-weight: var(--medium-weight);
  color: var(--first-black);
  text-align: start;
  transition: 0.3s;
}
.product .stone-item:hover img {
  width: 105%;
}
.product .stone-item:hover h3 {
  color: var(--darker-beige);
}

/* The Corosel buttons */
.stone.product {
  position: relative;
}
.product button {
  position: absolute;
  display: none;
  top: calc(184px + var(--header-height));
  background-color: white;
  color: black;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 1px 16px hsla(0, 0%, 0%, 0.5);
}
.product .prev-btn {
  left: 10px;
}
.product .next-btn {
  right: 10px;
}

/*========== About Section ==========*/
.about h2 {
  margin: 20px 0 10px 0;
}
.about img {
  margin-top: 20px;
  border-radius: 10px;
  width: 100%;
}

/*========== Gallery Section ==========*/
/* Gallery on medium and large screens */
.gallery-container {
  display: block;
  padding: var(--header-height) 1.5rem 0 1.5rem;
  margin: 0 auto;
  max-width: 1366px;
}
.photo-list {
  display: flex;
  justify-content: space-between;

  list-style: none;
  padding: 0;
}
.photo-list li {
  margin: 5px;
}
.photo-list li img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Gallery on small screens */
@media screen and (max-width: 768px) {
  .gallery-container {
    padding: var(--header-height) 0 0 0;
  }
  .photo-list {
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .photo-list li {
    margin: 5px;
  }
  .photo-list li img {
    width: 80vw;
    height: auto;
  }
}

/*========== Videos Section ==========*/
.videos-container {
  display: block;
  padding: var(--header-height) 0 0 0;
}
.video-container {
  padding-bottom: 40px;
}
.video-iframe-container {
  border-radius: 20px;
  overflow: hidden;
}
.video .video-title-container {
  padding: 20px 10px 0 10px;
}
.video-container iframe {
  width: 100%;
  height: 300px;
}

/*========== Contact Section ==========*/
.contact-container {
  max-width: 100%;
  padding: var(--header-height) 0 0 0;
  background: url(./assets/contact-background.jpg) center center;
}
.contact .info-container {
  padding: 0 0.5rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .icon-container {
  font-size: 8vw;
}
.contact .text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/*========== Form ==========*/
.contact form {
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  height: 3rem;
  background: transparent;
  font-family: "Poppins";
  color: rgb(18, 18, 18);
  font-size: 14px;
  padding: 6px 12px;
  border: none;
  border: 1px solid rgba(18, 18, 18, 0.24);
  border-radius: 10px;
  margin-bottom: 1rem;
  outline: none;
}
.contact textarea {
  height: 4.5rem;
  resize: none;
  font-size: 1rem;
  font-weight: var(--small-weight);
}
.contact .button-container {
  margin-bottom: 2rem;
}

/*========== Footer ==========*/
/* USEFUL LINKS */
.footer-container {
  background-color: #191414;
  padding: 1.5rem;
  color: white;
}
.footer-links {
  margin-bottom: 1rem;
}
footer .footer-subtitle {
  margin-bottom: 6px;
}
footer .footer-subtitle small {
  font-weight: var(--medium-weight);
}
footer .link-list li {
  margin-bottom: 6px;
}
footer .nav-link {
  font-size: var(--small-font);
  font-weight: var(--small-weight);
}
/* CONTACT */
.footer-contact-container {
  margin-bottom: 1rem;
}
.footer-contact {
  margin-bottom: 0.5rem;
}
.footer-contact .footer-subtitle {
  margin: 0;
}
/* SOCIAL MEDIA */
.footer-social {
  margin-bottom: 1rem;
}
.footer-social-subtitle {
  margin-bottom: 6px;
}
.footer-social-subtitle small {
  font-weight: var(--medium-weight);
}
.footer-social-content {
  font-size: 1.6rem;
}
.footer-social a {
  text-decoration: none;
  color: inherit;
}
.footer-social i {
  margin-right: 6px;
}
/* Divider */
.divider {
  border: 1px solid #211a1a !important;
  position: absolute;
  width: 100%;
  left: 0;
}
.footer-policy {
  padding: 22px 20px 0 20px;
}
.footer-social-content i {
  transition: color 0.3s;
}
.footer-social-content i:hover {
  color: var(--beige);
}

/* Whatsapp */
.whatsapp-container {
  position: fixed;
  width: 3.5rem;
  right: 3rem;
  bottom: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

.whatsapp-logo {
  width: 100%;
}

/* Languages */
.languages-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--beige);
  height: 3rem;
  padding: 0 0.5rem;
}
.languages-container small {
  color: white;
}
.languages-container a {
  font-size: 14px;
  margin-right: 0.5rem;
}

/*Media Queries For medium devices */
@media screen and (min-width: 768px) {
  :root {
    --biggest-font: 48px;
    --bigger-font: 36px;
    --big-font: 22px;
    --medium-font: 18px;
  }
  .video-container {
    width: 50%;
  }
  .video-title-container p {
    font-size: 20px;
  }
  .video-container iframe {
    width: 100%;
    height: 300px;
  }
  .intro h2 {
    font-size: 32px;
  }
  .stone .stone-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .product .stone-grid {
    background-color: white;
    border: none;
    padding: 0 10px;
    display: flex;
    gap: 40px;
    scroll-behavior: smooth;
    overflow: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
  }
  .product .stone-grid::-webkit-scrollbar {
    display: none;
  }
  .product .stone-item {
    scroll-snap-align: center;
    padding: 0;
    border-radius: 10px;
  }
  .product .image-container {
    height: 196px;
    width: 196px;
  }
  .product button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .about img {
    width: 50%;
    height: 50vh;
  }
  .video .content-container {
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .footer {
    display: flex;
    justify-content: space-between;
    max-width: 1366px;
    margin: 0 auto;
  }
  .footer-policy {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .contact {
    width: 100%;
  }
  .contact .contact-content {
    display: flex;
    padding: 0 0 35px 0;
    justify-content: space-between;
  }
  .contact-side-container {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .contact-content .form-container {
    width: 70%;
  }
  .contact .info-container {
    flex-direction: row;
  }
  .contact .text-container {
    justify-content: start;
    align-items: start;
  }
  .contact .icon-container {
    font-size: 3vw;
  }
}

/* Media Queries For large devices */
@media screen and (min-width: 1150px) {
  :root {
    --header-height: 5.5rem;
  }
  nav {
    height: calc(var(--header-height));
    column-gap: 4rem;
  }
  .nav-close,
  .nav-title,
  .nav-name,
  .nav-toggle {
    display: none;
  }
  nav .nav-list {
    flex-direction: row;
    column-gap: 1.3rem;
  }
  .nav-menu {
    top: 0;
    margin-left: auto;
  }
  nav .nav-link {
    color: var(--first-black);
  }
  .active-link {
    color: var(--beige);
  }
}

/*============== Single Product Page ============*/
.single-product-header {
  box-shadow: 0 1px 16px hsla(0, 0%, 0%, 0.12);
  background-color: white;
}
.single-product-container {
  text-align: start;
  padding: var(--header-height) 0 1rem 0;
}
.single-product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-text-container p {
  padding: 0 1rem;
}
.product-img-container img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product-button-container button {
    width: 100%;
    height: 4rem;
    border-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .product-main {
    background-color: lightgray;
  }
  .single-product-container {
    padding: calc(var(--header-height) + 1rem) 1rem 1rem 1rem;
  }
  .single-product {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: row;
  }
  .product-img-container {
    width: 50%;
  } command  
    /* Styling for the subtitle container */
    /* Styling for the container */
    /* Styling for the container */
    /* Styling for the container */
    /* Styling for the container */
    .subtitle-container {
        background-color: transparent; /* Light background color for contrast */
        padding: 20px; /* Padding around the container */
        margin: 20px auto; /* Center alignment with top and bottom margin */
        border-radius: 8px; /* Rounded corners */
        max-width: 800px; /* Maximum width for readability */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }

        /* Styling for paragraphs */
        .subtitle-container p {
            font-family: 'Poppins', sans-serif; /* Font style for paragraphs */
            font-size: 16px; /* Font size for the body text */
            color: #333; /* Dark grey color for text */
            line-height: 1.7; /* Line height for better readability */
            margin-bottom: 15px; /* Margin between paragraphs */
            text-align: justify; /* Justify text for clean alignment */
        }

            /* Styling for highlighted sections or subheadings */
            .subtitle-container p strong {
                display: block; /* Display as a block for better structure */
                margin-top: 10px; /* Top margin for spacing */
                margin-bottom: 2px; /* Decreased space between subheading and paragraph */
                font-size: 18px; /* Slightly larger font size for subheadings */
                color: #444; /* Medium grey color for subheadings */
                font-weight: bold; /* Bold text for subheadings */
            }

    /* Mobile screen adjustments */
    @media (max-width: 768px) {
        .subtitle-container {
            padding: 15px; /* Reduce padding for smaller screens */
            max-width: 95%; /* Adjust width for mobile devices */
        }

            .subtitle-container p {
                font-size: 14px; /* Slightly smaller font size for mobile */
                line-height: 1.5; /* Adjust line height for mobile readability */
                margin-bottom: 10px; /* Adjust margin between paragraphs */
                text-align: justify; /* Justify text for clean alignment */
                background-color:red;
            }

                .subtitle-container p strong {
                    font-size: 16px; /* Slightly smaller font size for subheadings on mobile */
                    margin-top: 8px; /* Adjust margin-top for spacing */
                    margin-bottom: 1px; /* Further decrease margin-bottom */
                }
    }

    .slider {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: auto;
        overflow: hidden;
        border: 2px solid #ddd;
        border-radius: 10px;
    }

    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
        transition: opacity 0.5s ease;
    }

        .slide img {
            width: 100%;
            display: block;
        }

    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.5);
        color: white;
        padding: 10px;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        user-select: none;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    /* Full-page container */
    .slider-section {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }

    /* Slideshow container */
    .slideshow-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* Hide all slides initially */
    .mySlides {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
    }

    /* Image styles for slides */
    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the container */
        object-position: center; /* Centers the image within the container */
        background-color: #000; /* Fallback background color */
    }

    /* Overlay for product information */
    .overlay {
        position: absolute;
        bottom: 20%;
        left: 5%;
        background-color: rgba(0, 0, 0, 0.6); /* Slightly darker for better readability */
        color: white;
        padding: 20px;
        max-width: 40%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 8px; /* Rounded corners for aesthetics */
    }

    /* Responsive adjustments for smaller screens */
    @media screen and (max-width: 768px) {
        .overlay {
            max-width: 80%;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px;
        }

        .product-name {
            font-size: 1.5rem;
        }

        .product-description {
            font-size: 1rem;
        }

        .view-details {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }

    /* Product name styling */
    .product-name {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    /* Product description styling */
    .product-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    /* View Details button styling */
    .view-details {
        background-color: #fff;
        color: #000;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

        .view-details:hover {
            background-color: #f5f5f5;
        }

    /* Fade animation */
    .fade {
        animation: fadeEffect 1.5s;
    }

    @keyframes fadeEffect {
        from {
            opacity: 0.4;
        }

        to {
            opacity: 1;
        }
    }

    /* Navigation buttons (prev/next) */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 24px; /* Increased size for better visibility */
        transition: background-color 0.3s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    }

        .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

    /* Positioning navigation buttons */
    .prev {
        left: 10px;
        border-radius: 3px 0 0 3px;
    }

    .next {
        right: 10px;
        border-radius: 0 3px 3px 0;
    }

    /* Dots to indicate slides */
    .dot-container {
        text-align: center;
        position: absolute;
        bottom: 15px;
        width: 100%;
    }

    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 4px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

        .active, .dot:hover {
            background-color: #717171;
        }


}
.call-to-action {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

    .call-to-action::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e1e1e1;
        z-index: 1;
        opacity: 0;
        transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
    }

    .call-to-action::after {
        transition: border 0.1s linear 0.05s;
    }

.cta-inner {
    position: relative;
    z-index: 2;
}

.call-to-action:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
}

    .call-to-action:hover::before {
        top: 0;
        height: 100%;
        opacity: 1;
        transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
    }

    .call-to-action:hover::after {
        border-color: #373737;
        transition: border 0.1s linear 0s;
    }

.image-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.slider-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .slide.active-slide {
        display: block;
    }

    .slide.is-loaded {
        opacity: 1;
    }

    .slide .slide-caption {
        padding: 0 100px;
    }

    .slide .slide-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
        z-index: 1;
        transition: opacity 0.3s ease;
    }

.slide-title {
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-align: left;
    font-weight: 400;
    padding-top: 30px;
}

.slide-description {
    margin-top: 20px;
}

.slide-image {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.pagination-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.pagination-item {
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

    .pagination-item:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .pagination-item.active-item {
        background-color: rgba(255, 255, 255, 0.8);
    }

.navigation-arrows {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.arrow {
    cursor: pointer;
}
.development-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffcc00; /* Background color to make it noticeable */
    color: #333; /* Text color */
    text-align: center;
    padding: 10px;
    font-weight: bold;
    z-index: 1000; /* Ensures it appears above other elements */
    font-family: Arial, sans-serif;
}

