/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-y: scroll;
    position: relative;
}

#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("photos and videos/5166950.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.navbar {
    background-color: #1d1c1e8f;
    padding: 1.9rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.container {
    display: flex;
  flex-direction: row;            /* instead of column */
  justify-content: space-between; /* pushes brand to left, nav to right */
  align-items: center;   
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.navbar-nav {
      display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-left: auto; /* extra insurance that it stays on the right */
  width: auto;     
}

.nav-item a {
    color: white;
    text-decoration: none;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #00bcd4;
}

@media (max-width: 480px) {
    .nav-item a {
      padding: 1rem;
      font-size: 1.25rem;
      background-color: transparent; /* remove red if not needed */
    }
  
    .navbar-brand {
      font-size: 1rem;
    }
  }


main {
    padding: 2rem;
    text-align: center;
    color: #fff;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

#home {
    padding: 5rem 2rem;
    color: #fff;
    background-color: transparent;
    margin-top: 50px;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Wrapper for slides */
.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% + 60px); /* Adjusting space for margins between slides */
}

/* Individual slide */
.slide {
    min-width: 25%;
    margin: 0 60px; /* Adjusting space between slides */
    transition: transform 0.5s ease-in-out;
    /* Centering the images */
}

/* Image styling */
.slide img {
    width: 100%; /* Ensures each image fills its parent container */
    height: auto;
    object-fit: cover;
    display: block;
}

/* Navigation buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.slide-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}




#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }


#service {
    padding: 5rem 2rem;
    color: #fff;
    background-color: transparent;
    margin-top: 50px;
}

#service h1 {
text-align: center;

}

#service h2 {

text-align: center;
}

#Operation {
  padding: 5rem 2rem;
  color: #fff;
  background-color: transparent;
  margin-top: 50px;
}

#Operation p {
    text-align: center;
    }

#Operation h1 {
    text-align: center;
    color: lab(100% 0.01 -0.01);
        }
        
#Operation h2 {
        
    text-align: center;
    color: lab(100% 0.01 -0.01);
    }
        
#Operation p {
        
     text-align: center;
     color: lab(100% 0.01 -0.01);
        }



        #pricing {
            padding: 4rem 2rem;
            color: #fff;
            text-align: center;
        }
        
        .pricing-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        
        .pricing-row {
            display: flex;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .pricing-row:last-child {
            border-bottom: none;
        }
        
        .pricing-description {
            text-align: left;
            font-size: 1.2rem;
        }
        
        .pricing-cost {
            text-align: right;
            font-size: 1.2rem;
            font-weight: bold;
        }


        .policy-section {
            padding: 3rem 2rem;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5); /* Optional subtle background */
            max-width: 900px;
            margin: auto;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        
        .policy-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-align: center;
            color:#f6f600;
        }
        
        .policy-section ul {
            list-style-type: disc;
            padding-left: 2rem;
            font-size: 1.125rem;
            line-height: 1.7;
        }

        html {
            scroll-behavior: smooth;
          }


          @media (max-width: 768px) {
            .navbar-nav {
              flex-direction: row; /* Keep in a row if space allows */
              flex-wrap: wrap;     /* Allow wrapping only when absolutely needed */
              justify-content: center;
              gap: 1rem;
            }
          
            .nav-item a {
              padding: 1rem 1.2rem;
              font-size: 1.2rem;
              background-color: transparent;
            }
          
            .navbar-brand {
              font-size: 1.25rem;
            }
          
            .bg-video {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              z-index: -1;
            }
          }
          
          @media (max-width: 480px) {
            .navbar {
              padding: 1rem;
            }
          
            .navbar-brand {
              font-size: 1rem;
            }
          
            .nav-item a {
              font-size: 1rem;
              padding: 0.5rem 1rem;
              background-color: transparent;
            }
          
            h1 {
              font-size: 2rem;
            }
          
            p {
              font-size: 0.95rem;
            }
          
            .slide {
              min-width: 90%;
            }
          
            .pricing-container {
              margin: 0.5rem;
              border-radius: 8px;
            }
          
            .policy-section {
              padding: 2rem 1rem;
              margin: 1rem;
            }
          
            .policy-section h2 {
              font-size: 1.5rem;
            }
          
            .policy-section ul {
              padding-left: 1.25rem;
              font-size: 1rem;
            }
          
            .bg-video {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              z-index: -1;
            }
            .slide {
              margin: 0 10px; /* or any smaller value you prefer */
            }
          
          }
          

          
.floating-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: hsla(0, 0%, 100%, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.floating-icon img {
    width: 50px;
    height: 50px;
}

.floating-icon:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

/* Position the second icon above the first */
.floating-icon.second {
    bottom: 90px; /* stacked above the first one */
}


@media (max-width: 768px) {
    .floating-icon {
        width: 60px; /* Smaller container */
        height: 60px;
    }

    .floating-icon img {
        width: 30px; /* Smaller icon size */
        height: 30px;
    }
}

/* Media Query for Very Small Screens (mobile) */
@media (max-width: 480px) {
    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .floating-icon img {
        width: 25px;
        height: 25px;
    }
}


@media (max-width: 1200px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-item a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-item a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }
}