* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}
body {
  font-family: 'Montserrat', sans-serif;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  background-image: url('https://i.ibb.co/q1nDXh4/containerbackground-1.jpg');
  background-size: cover; /* Ensures the image covers the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-attachment: fixed; /* Makes the background image stay fixed during scrolling */
  background-position: center; /* Centers the image */
}
.fullscreen-image {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fullscreen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
  text-align: center;
}
.navbar {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.navbar ul {
  list-style-type: none;
}
.navbar ul li {
  display: inline-block;
  margin: 0 15px;
  position: relative; /* Required for the pseudo-element positioning */
}
.navbar ul li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  font-weight: normal;
  position: relative; /* Required for the pseudo-element */
  display: inline-block; /* Ensures block-level behavior */
  padding: 5px 0; /* Adds spacing for better line animation placement */
  transition: color 0.3s ease; /* Optional text color change on hover */
}
.navbar ul li a::after {
  content: ""; /* Creates the pseudo-element */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Initially no width */
  height: 2px; /* Thickness of the line */
  background-color: #3fc0c9; /* Blue line color */
  transition: width 0.3s ease-in-out; /* Smooth animation */
}
.navbar ul li a:hover {
  color: #3fc0c9; /* Optional: Change text color on hover */
}
.navbar ul li a:hover::after {
  width: 100%; /* Expands the line to full width */
}
.storage-logo {
  height: 80px;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-text h1 {
  font-size: 48px;
  color: white;
}
.hero-text h1 .highlight {
  color: #48d1cc;
}
.hero-number {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-number h2 {
  font-size: 24px;
  color: white;
}
.phone-number {
  color: #48d1cc;
}
@mixin aspect-ratio($width, $height) {
  position: relative;
  &:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: ($height / $width) * 100%;
  }
   > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
.sticky-navbar {
  position: fixed;
  top: 20px; /* Position it slightly below the top edge */
  right: 20px; /* Align it to the right */
  background-color: white; /* Set the background color to white */
  color: #364f6b; /* Text color matches the desired dark blue */
  padding: 8px 25px; /* Larger padding for a bigger navbar */
  border: 2px solid #48d1cc; /* Blue outline around the navbar */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 1000; /* Ensure it appears above other elements */
  display: flex; /* To align logo and navigation links side by side */
  align-items: center; /* Center-align items vertically */
  gap: 20px; /* Space between logo and links */
  transition: opacity 0.3s ease; /* Smooth transition for appearance */
}
.sticky-logo {
  height: 50px; /* Adjust the logo height */
  width: auto; /* Maintain aspect ratio */
}
.sticky-navbar ul {
  list-style: none; /* Remove bullet points */
  display: flex; /* Align links horizontally */
  gap: 15px; /* Space between links */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}
.sticky-navbar ul li a {
  color: #364f6b; /* Text color to dark blue */
  text-decoration: none; /* Remove underline */
  font-size: 18px; /* Slightly larger font size */
  font-weight: bold; /* Bold links */
  transition: color 0.3s ease; /* Smooth hover effect */
}
.sticky-navbar ul li a:hover {
  color: #3fc0c9; /* Lighter blue shade on hover */
}
.hidden {
  opacity: 0; /* Makes the navbar invisible */
  pointer-events: none; /* Disables interaction when hidden */
}
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: centre;
}
.carousel {
      width: 90%;
      max-width: 450px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: centre;
      margin-top: 3%
    }
.carousel-track {
      display: flex;
      animation: scroll-normal 20s linear infinite;
      animation-play-state: running; /* Default to running */
    }
  @keyframes scroll-normal {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-100% * 5)); /* Adjust based on number of images */
      }
    }
.carousel img {
      width: 100%;
      height: auto;
      object-fit: cover;
      flex-shrink: 0;
    }
.carousel-header {
    margin-left: 41%;
    margin-top: 5%;
    margin-right:40%;
    text-align: center;
}
.carousel-header h2{
    color: #364f6b;
    font-weight: 500;
}
.carousel-text {
    margin-top: 3%;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
}
.carousel-text p{
    color: #364f6b;
    text-align: center;
}
.AboutUsButton {
    margin-top: 2%
}
button {
  background-color: #3fc0c9; /* Solid background color */
  color: white; /* Text color */
  font-family: 'Montserrat', sans-serif; /* Font family */
  font-size: 18px;
  font-weight: 600; /* Bold text */
  padding: 10px 20px; /* Padding around the text */
  border: 2px solid rgba(255, 255, 255, 0.8); /* Slightly off-white border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  transition: all 0.3s ease-in-out; /* Smooth transitions for hover effects */
  text-transform: uppercase; /* Uppercase text */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  margin-left: 65%;
}
button:hover {
  background-color: white; /* Background changes to white */
  color: #3fc0c9; /* Text changes to the accent color */
  border-color: #3fc0c9; /* Border matches the accent color */
  transform: scale(1.05); /* Slightly enlarges for emphasis */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}
button:focus {
  outline: none; /* Remove default focus outline */
  box-shadow: 0 0 5px #3fc0c9; /* Subtle glow effect */
}
.reviews-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 70px;
  padding-bottom:3.5%
}
.reviews-section .embedsocial-widget {
  margin: 0 auto;
  max-width: 100%;
  margin-top:0.7%;
  margin-bottom: -1%;
  margin-left:2%
}
.reviews-section a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}
.reviews-section img {
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.reviews-section h1 {
    margin-top: 1%;
    color: #364f6b;
}
.location-section {
    padding: 50px;
    background-color: #FFFFFF;
    padding-bottom: 50px;
}
.location-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 40px;
}
.location-container img {
    max-width: 300px;
    border-radius: 10px;
}
.location-p {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-right: 20px;
    margin-left: -13%;
    margin-top:25px
}
.location-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-left: 41.5%;
  margin-top: 1%;
}
.location-title {
  font-size: 2.5rem; /* H1 size */
  color: #364f6b; /* Blended color */
  margin-right:15px; /* Space between text and image */
  font-weight: 410; /* Semi-bold */
  margin-bottom: -12%;
}
.footer-section {
    background-color: #48d1cc;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Space between left and right sections */
    align-items: center; /* Vertically center content */
}
.footer-left {
    flex: 1; /* Takes up the remaining space on the left side */
    text-align: left;
}
.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-link {
    display: flex;
    align-items: center;
    margin: 0 15px;
    color: white;
    text-decoration: none;
}
.social-icon {
    width: 40px;  /* Circle size */
    height: 40px;
    border-radius: 50%;  /* Round shape for icons */
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;  /* Space between icon and text */
    overflow: hidden;
}
.facebook .social-icon img {
    width: 24px; /* Resize Facebook logo */
    height: 24px;
    object-fit: contain;
}
.email .social-icon img {
    width: 24px; /* Adjusted size for Email icon */
    height: 24px;
    object-fit: contain;
}
.social-text {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-left: 8px;  /* Space between icon and text */
}

.social-text:hover {
    text-decoration: underline;  /* Underline text on hover */
}
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 110px;
}
.about-container {
  display: flex;
  justify-content: flex-start; /* Ensures no gap between the items */
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;  /* Optional: Set a max width to prevent stretching */
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.about-image-container {
  width: 50%; /* Adjust the size of the image container */
  padding: 0; /* Remove padding to avoid any extra space */
  box-sizing: border-box;
  border-radius: 35px;
}
.about-image-container img {
  width: 100%;
  height: auto;
  border-radius: 35px;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  object-fit: cover;
  padding-left: 3%;
  padding-top: 3%;
  padding-bottom: 6%
}
.about-text-box {
  width: 40%; /* Adjust the width of the text box */
  background-color: #3fc0c9; /* Blue color */
  color: white; /* Text color */
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  position: absolute; /* Position it absolutely beside the image */
  top: 0;
  left: 50%; /* Start from the middle of the page */
  transform: translateX(-50%); /* Centers the box initially */
  opacity: 0; /* Initially hidden (fade effect) */
  animation: fadeInSlide 1s ease-out forwards; /* Animation to fade in and slide in */
  margin-top: 15%;
}
.about-text h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.5;
}
.about-text .find-out-more {
  background-color: white;
  color: #3fc0c9;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.about-text .find-out-more:hover {
  background-color: #48d1cc;
}
@keyframes fadeInSlide {
  0% {
    transform: translateX(75%) translateX(-100%); /* Starts from the left */
    opacity: 0; /* Initially hidden */
  }
  100% {
    transform: translateX(-50%) translateX(55%); /* Ends just to the right of the image */
    opacity: 1; /* Fully visible */
  }
}
.shipping-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; /* Use flexbox for side-by-side layout */
  flex-direction: row; /* Ensure content aligns horizontally */
  align-items: center; /* Vertically aligns content */
  background-color: #f9f9f9; /* Light gray background */
  padding: 30px;
  padding-bottom: 70px;
  padding-top: 70px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  column-gap: 20px; /* Add spacing between the text and the image */
  box-sizing: border-box;
}
.shipping-text {
  flex: 1; /* Takes up equal space as the image */
  text-align: left;
  color: #364f6b;
}
.shipping-text h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.shipping-text p {
  font-size: 16px;
  line-height: 1.6;
}
.shipping-image {
  flex: 1; /* Ensures equal space for text and image */
  display: flex;
  justify-content: center;
}
.shipping-image img {
  max-width: 100%; /* Image is responsive */
  height: auto;
  border-radius: 10px; /* Rounded corners for the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #3fc0c9; /* Teal border around the image */
}
.value-container {
  display: flex;
  flex-direction: column; /* Stack title above the grid */
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  padding-bottom: 70px;
  padding-top: 70px;
}
.value-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #2e6e6e;
  text-align: center; /* Center align the title */
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* Adds spacing between the grid items */
  max-width: 1200px;
  margin: 0 auto;
}
.value-item {
  background-color: white;
  padding: 15px; /* Adjust padding to reduce the item size */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.value-item img {
  width: 100%; /* Ensure images take full width of the item */
  height: 180px; /* Fixed height for uniform size */
  object-fit: cover; /* Maintain aspect ratio and cover the area */
  border-radius: 8px;
}
.value-item p {
  margin-top: 15px;
  font-size: 1.1em;
  color: #2e6e6e;
  font-weight: bold;
  text-align: center; /* Center align the text */
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-container {
  background-color: white;
  padding: 70px;
  max-width: 800px;
  width: 200%;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-container h1 {
  font-size: 40px;
  color: #2e6e6e;
  text-align: center;
  margin-bottom: 20px;
}
.contact-container p {
  font-size: 16px;
  color: #364f6b;
  text-align: center;
  margin-bottom: 30px;
}
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 40px;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Montserrat', sans-serif;
}
.form-group {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-group label {
  font-size: 16px;
  color: #364f6b;
  margin-bottom: 8px;
}
.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
  color: #364f6b;
}
.form-group textarea {
  resize: vertical;
}
.submit-btn {
  background-color: #48d1cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  align-self: center;
}
.submit-btn:hover {
  background-color: #3fc0c9;
  color:white;
}
.form-message {
  font-size: 14px;
  margin-top: 5px;
  display: none; /* Hidden by default */
}
.form-message.error {
  color: #ff6b6b;
}
.form-message.success {
  color: #48d1cc;
}
.form-group.error input, 
.form-group.error textarea {
  border-color: #ff6b6b;
}
.form-group.success input, 
.form-group.success textarea {
  border-color: #48d1cc;
}



@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-number h2 {
    font-size: 20px;
  }
  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .carousel-container {
    width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-number h2 {
    font-size: 18px;
  }
  .navbar ul {
    flex-direction: column;
    text-align: center;
  }
  .carousel-header {
    margin-left: auto;
    margin-right: auto;
  }
  .location-container {
    flex-direction: column;
    text-align: center;
  }
  .location-p {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-section {
    flex-direction: column;
    text-align: center;
  }
}





