@charset "UTF-8";
body {
  font-family: "Arial", sans-serif;
}

/* Sticky Header */
.navbar {
  background: linear-gradient(90deg, #004d40, #009688);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-weight: 500;
  padding: 15px 0;
  /* Increased height */
  margin-bottom: 20px;
  /* Creates a gap between the navbar and hero section */
}

.navbar .navbar-brand img {
  width: 180px;
  /* Slightly larger logo */
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  /* Increased font size for readability */
  font-weight: 600;
  /* Bold menu items */
  padding: 10px 20px;
  /* Larger padding for spacing */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffe082;
  /* Muted gold on hover */
  text-decoration: underline;
  /* Subtle underline for emphasis */
}

.navbar-nav .dropdown-menu {
  background: #004d40;
  border: none;
  border-radius: 8px;
}

.navbar-nav .dropdown-item {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: #00796b;
  color: #ffe082;
}

.navbar-nav .nav-link.show {
  color: #ffe082;
}

.navbar .btn-dark {
  background: #ffe082;
  color: #004d40;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn-dark:hover {
  background: #ffcc00;
  transform: scale(1.1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn-request-demo {
  background-color: #ffe082;
  border-radius: 20px;
  padding: 10px 25px;
  text-transform: uppercase;
}

.btn-request-demo:hover {
  background-color: #ffcc00;
  color: #004d40;
  transform: scale(1.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #00796b 50%, #004d40 100%);
  color: #ffffff;
  padding: 120px 20px 140px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-section h1 .highlight {
  color: #ffe082;
}

.hero-section p {
  font-size: 1.3rem;
  margin-top: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  max-width: 700px;
}

.hero-section p .highlight {
  color: #80cbc4;
  font-weight: 600;
}

/* Hero Section Carousel */
.carousel {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  background: #ffffff;
  border: 3px solid #004d40;
}

.carousel-inner {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* Carousel Caption (Toast Style) */
.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 25px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 80%;
  max-width: 600px;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Carousel Inner Images */
.carousel-inner img {
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

/* Carousel Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  margin: 0 15px;
  z-index: 5;
}

.carousel-control-prev {
  left: -10px;
}

.carousel-control-next {
  right: -10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1) translateY(-50%);
}

.carousel-control-prev span,
.carousel-control-next span {
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span {
  color: #ffe082;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 25px;
}

.hero-buttons .btn-primary {
  background-color: #004d40;
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 25px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-primary:hover {
  background-color: #024f42;
  color: #ffe082;
  transform: scale(1.05);
}

.hero-buttons .btn-outline-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: crimson;
  font-size: 1.1rem;
  padding: 12px 25px;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-outline-secondary:hover {
  background-color: #ffe082;
  color: #004d40;
  transform: scale(1.05);
}

/* Sleek Announcement */
.sleek-announcement {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.sleek-card {
  background: rgba(0, 60, 60, 0.7);
  border-radius: 15px;
  padding: 30px;
  width: 85%;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sleek-card h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffe082;
  margin-bottom: 20px;
}

.sleek-card p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.7;
}

.sleek-card p .highlight {
  color: #80cbc4;
  font-weight: bold;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #009688, #00796b);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #00796b, #009688);
  transform: scale(1.1);
}

/* Bottom Curve */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  -webkit-clip-path: ellipse(80% 100% at 50% 100%);
          clip-path: ellipse(80% 100% at 50% 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 100px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .carousel-inner img {
    max-height: 300px;
  }
  .carousel-caption {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
  .carousel-control-prev span,
  .carousel-control-next span {
    font-size: 24px;
  }
}
/* Features Section */
.features-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  background-image: url(../images/storegister/storegister-bg.png);
  background-repeat: no-repeat;
}

.features-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
  /* Default color */
}

.features-section h2 span.highlight {
  color: #009688;
  /* Teal for emphasis */
}

.feature-card {
  background: white;
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensures all cards are of the same height */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
}

.feature-item {
  background: white;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensures equal height for all cards */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
  width: auto;
  height: 150px;
  /* Fixed height to ensure uniformity */
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  /* Ensures aspect ratio is maintained */
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
  max-width: 100%;
  height: auto;
  width: 200px;
  /* Scaled width for consistent visibility */
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #666;
}

/* Button Styles - Always Teal */
.btn-feature {
  display: inline-block;
  background-color: #009688;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.btn-feature:hover {
  background-color: #00796b;
  /* Slightly darker teal on hover */
  color: #fff !important;
  /* Keep white text */
  transform: scale(1.05);
}

/* Responsive Layout Adjustments */
@media (max-width: 1280px) {
  .features-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .features-section .col-md-3 {
    flex: 0 0 45%;
    /* Two items per row */
    max-width: 45%;
    /* Ensure proper alignment */
    margin-bottom: 20px;
    /* Add spacing between rows */
  }
}
@media (max-width: 768px) {
  .features-section .col-md-3 {
    flex: 0 0 100%;
    /* Single item per row for mobile */
    max-width: 100%;
  }
}
/* Client Section */
.client-section {
  background: #f5f5f5;
  padding: 50px 0;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  /* Adds breathing room between title and logos */
  text-align: center;
  color: #333;
  /* Neutral dark gray tone */
}

.client-section h2 .highlight {
  color: #009688;
  /* Teal for emphasis */
  font-weight: bold;
}

.client-wrapper {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 10px auto;
  /* Adds consistent spacing around the wrapper */
}

.client-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
  max-height: 80px;
  max-width: 160px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
  -o-object-fit: contain;
     object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive Grid Adjustments */
@media (max-width: 1280px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 25%;
    /* 4 cards per row */
    max-width: 25%;
  }
}
@media (max-width: 992px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 33.33%;
    /* 3 cards per row */
    max-width: 33.33%;
  }
}
@media (max-width: 768px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 50%;
    /* 2 cards per row */
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .client-section .row-cols-lg-6 > * {
    flex: 0 0 100%;
    /* 1 card per row */
    max-width: 100%;
  }
}
/* Add vertical spacing between rows */
.client-section .row {
  gap: 20px;
  /* Adds consistent spacing between rows */
}

/* Key Features Section */
.key-features-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  background-image: url("../images/storegister/banner.png");
  background-repeat: no-repeat;
}

.key-features-section h2 {
  font-size: 2rem;
  /* Standard size for clear readability */
  font-weight: 700;
  /* Strong emphasis */
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  /* Default dark gray */
}

.key-features-section h2 .highlight {
  color: #009688;
  /* Teal for emphasis */
  font-weight: bold;
  /* Extra emphasis on "Key Features" */
}

.key-features-section .key-feature-item {
  background: white;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensure consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.key-features-section .key-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.key-features-section .feature-image {
  width: auto;
  height: 228px;
  /* Fixed height for images */
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.key-features-section .key-feature-item h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.key-features-section .key-feature-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  /* Ensures proper spacing */
}

/* .key-features-section .curve-shape {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50px;
background: #f9f9f9;
clip-path: ellipse(50% 100% at 50% 100%);
} */
/* Responsive Layout Adjustments */
@media (max-width: 1280px) {
  .key-features-section .row-cols-md-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .key-features-section .row-cols-md-3 .col {
    flex: 0 0 45%;
    /* Two items per row */
    max-width: 45%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .key-features-section .row-cols-md-3 .col {
    flex: 0 0 100%;
    /* Single item per row */
    max-width: 100%;
    margin-bottom: 20px;
  }
  .key-features-section .feature-image {
    height: 120px;
    /* Slightly smaller images for mobile */
  }
  .key-features-section h2 {
    font-size: 1.75rem;
    /* Adjust heading size for smaller screens */
  }
}
/* Footer */
/* New Footer */
/* General Footer Styles */
footer {
  background-color: #1c1c1c;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 40px 20px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

footer p, footer address {
  margin-bottom: 0.5rem;
}

footer a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer a:hover {
  color: #00bcd4;
  transform: scale(1.05);
}

/* Social Media Icons */
footer .bi {
  font-size: 1.25rem;
  color: #ccc;
  margin-right: 10px;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .bi:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

/* List Styles */
footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 15px;
}

footer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00bcd4;
}

/* Membership Section */
footer .membership-section {
  margin-top: 20px;
}

footer .membership-icons img {
  height: 50px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  footer h5 {
    font-size: 0.9rem;
  }
  footer ul li {
    margin-bottom: 0.4rem;
  }
  footer .membership-icons img {
    height: 40px;
  }
}
/* Video Container Styling */
.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Consistent shadow with hero section */
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #004d40;
}

/* Iframe Styling */
.video-container .custom-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  aspect-ratio: 16/9; /* Maintain responsive aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;
  }
  .video-container .custom-video {
    aspect-ratio: 16/9;
  }
}