@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  color: #000000;
}

.navbar {
  background: white;
  border-bottom: 1px solid #000000;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo img {
  max-height: 40px;
  max-width: 100%;
}

/* Hamburger icon (visible on mobile) */
.navbar-toggle {
  font-size: 26px;
  cursor: pointer;
  display: block; /* The hamburger is always visible on mobile due to the media query later */
}

/* Nav links (hidden by default on mobile) */
.navbar-links {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  border-top: 1px solid white;
  padding: 15px 0;
  font-family: "JT Marnie-Medium";
  font-weight: 600;
}

/* New CSS class to show the menu when the hamburger is clicked */
.navbar-links.active {
  display: flex; /* This class will be toggled by JavaScript to show the menu */
}

.navbar-links a {
  padding: 12px;
  text-align: center;
  color: #000000;
  text-decoration: none;
  font-weight: 200;
  display: block;
  transition: background 0.3s;
  font-family: "JT Marnie-Medium";
  font-weight: 600;
}

.navbar-links a:hover {
  background: white;
}

/* Mobile buttons inside dropdown */
.navbar-actions-mobile {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Desktop buttons hidden on mobile */
.navbar-actions {
  display: none;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-btn {
  color: white;
  background: #000000;
  border-radius: 0px;
}

.login-btn:hover {
  background: #000000;
  color: white;
}

.demo-btn {
  background: #000000;
  color: white;
  border: none;
  border-radius: 0px;
}

.demo-btn:hover {
  background: #000000;
  border-radius: 0px;
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
  color: #000000;
}

.dropdown button {
  background: #000000;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  color: black;
  min-width: 140px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  right: 0;
}

.dropdown-content a {
  color: #000000;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* One line for desktop CMS + Logout */
.desktop-cms-logout {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between link and button */
}

.desktop-cms-logout .cms-link {
  color: white; /* Black text */
  text-decoration: none; /* Remove underline */
  font-weight: 500;
  align-items: center;
}

.desktop-cms-logout .cms-link:hover {
  color: white;
  background-color: #000000;
  gap: 15px;
  /* Keep black on hover */
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) {
  .navbar-toggle {
    display: none; /* Hide hamburger on desktop */
  }
  .demo-btn {
    background: #000000;
    color: white;
    border: none;
    border-radius: 0px;
  }
  .demo-btn:hover {
    background: #000000;
    border-radius: 0px;
    color: white;
  }
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-links {
    display: flex !important;
    flex-direction: row;
    gap: 25px;
    position: static;
    width: auto;
    border: none;
    padding: 0;
  }
  .navbar-actions {
    display: flex;
    gap: 12px;
  }
  .navbar-actions-mobile {
    display: none;
  }
}
.footer {
  background: #000000;
  color: white;
  padding: 20px;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* Logo */
.footer-logo img {
  max-height: 40px;
  max-width: 100%;
}

/* Links */
.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #11cbe3;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #11cbe3;
}

/* Divider */
.footer-divider {
  border-top: 1px solid white;
  margin: 10px 0;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

/* Left text */
.footer-left {
  color: white;
}

/* Right links */
.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  color: #bab9b9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #11cbe3;
}

/* Mobile Responsive (max 768px) */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    justify-content: center;
    height: auto;
    text-align: center;
    gap: 15px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-right {
    flex-direction: column;
    gap: 8px;
  }
}
/* hero section */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Top Section */
.hero-top {
  display: flex;
  flex-direction: row;
  padding: 20px 2.5%;
}
@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Left Column (Text) */
.hero-left {
  flex: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  color: #000000;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .hero-left h1, .hero-left h2 {
    font-size: 3rem;
  }
  .hero-left p {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .hero-left {
    padding: 20px;
    align-items: center;
    text-align: center;
  }
  .hero-left h1, .hero-left h2 {
    font-size: 2rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
}

.hero-left h1,
.hero-left h2,
.hero-left p {
  margin: 0;
}

.hero-left h1 {
  font-size: 4.5rem;
  font-weight: 600;
  color: #000000;
  font-family: "JT Marnie-Medium";
}

.hero-left h2 {
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  font-family: "JT Marnie-Medium";
}

.hero-left p {
  margin-top: 5px;
  font-weight: 900;
  font-size: 42px;
  color: #000000;
  max-width: 700px;
  font-family: "JT-Marnie-Light";
}

/* Button */
.explore-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  display: inline-flex;
  margin-top: 50px;
  align-items: center;
}
.explore-btn:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .explore-btn {
    margin-top: 30px;
    font-size: 1rem;
  }
}

/* Right Column (Image) */
.hero-right {
  align-items: center;
  margin-top: 80px;
  width: 600px;
}
@media (max-width: 768px) {
  .hero-right {
    margin: 20px 0 0 0;
    justify-content: left;
    width: 100%;
  }
}

/* Hero Bottom Section */
.hero-bottom {
  flex: 4;
  background-color: #000000;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  padding-bottom: 40px;
}

.process-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .process-container {
    gap: 100px;
  }
}
@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  color: white;
  margin-top: 40px;
  margin-right: 40px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 30px auto;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.step-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}
@media (max-width: 768px) {
  .step-title {
    font-size: 24px;
  }
}

.step-description {
  font-size: 32px;
  line-height: 1.5;
  color: #cccccc;
  align-items: center;
  width: 100%;
  font-weight: 700;
}
@media (max-width: 768px) {
  .step-description {
    font-size: 15px;
  }
}

/* Icon styles using CSS symbols */
.upload-icon::before {
  content: "↑";
  display: block;
  transform: translateY(-2px);
}

.organize-icon::before {
  content: "⚙";
  display: block;
}

.operate-icon::before {
  content: "▷";
  display: block;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-left, .hero-right {
    flex: none;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .hero-left {
    padding: 20px;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-left h2 {
    font-size: 1.4rem;
  }
  .hero-left p {
    font-size: 0.9rem;
  }
  .explore-btn {
    margin-top: 10px;
  }
  .hero-bottom {
    padding: 40px 20px;
  }
}
.features-section {
  padding: 60px 20px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .features-section {
    padding: 40px 15px;
  }
}

.features-title {
  text-align: center;
  font-size: 64px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #000000;
  font-family: "JT Marnie", Arial, sans-serif;
}
@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* Container */
.features-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}
@media (max-width: 992px) {
  .features-container {
    gap: 15px;
  }
}

/* Card */
.feature-card {
  background: #ffffff;
  border: 1px solid #222222;
  overflow: hidden;
  width: calc(33.333% - 20px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 992px) {
  .feature-card {
    width: calc(50% - 15px);
    min-width: 280px;
    height: auto;
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  .feature-card {
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: 400px;
  }
}

/* Image */
.feature-image {
  height: 300px;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

/* Content */
.feature-content {
  padding: 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .feature-content {
    text-align: center;
    padding: 15px;
  }
}

.feature-content h3 {
  font-size: 40px;
  margin: 0 0 8px 0;
  font-weight: 400;
  color: #111111;
  font-family: "JT Marnie", Arial, sans-serif;
}
@media (max-width: 768px) {
  .feature-content h3 {
    font-size: 1.2rem;
  }
}

.feature-content p {
  font-size: 28px;
  font-family: "JT-Marnie-Light";
  color: #000000;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .feature-content p {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .features-container {
    flex-direction: row;
    gap: 5px;
  }
  .feature-card {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    gap: 0;
  }
  .feature-card {
    width: 100%;
    min-width: auto;
  }
  .feature-content {
    text-align: center;
  }
}
/* Additional responsive adjustments */
@media (max-width: 480px) {
  .features-title {
    font-size: 1.8rem;
  }
  .feature-card {
    min-height: 380px;
  }
  .feature-image {
    height: 180px;
  }
  .feature-content h3 {
    font-size: 1.1rem;
  }
  .feature-content p {
    font-size: 0.85rem;
  }
}
.solutions-container {
  max-width: 100%;
  margin: 40px;
  padding: 20px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .solutions-container {
    padding: 15px;
  }
}

.solutions-container h1 {
  text-align: center;
  font-size: 64px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #000000;
  font-family: "JT Marnie";
}
@media (max-width: 992px) {
  .solutions-container h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .solutions-container h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.solutions-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .solutions-section {
    margin-bottom: 40px;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .solutions-section {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 0;
  }
}

.image-container {
  flex: 1;
  min-width: 300px;
  width: 50%;
}
@media (max-width: 768px) {
  .image-container {
    width: 100%;
    min-width: auto;
    order: 1;
  }
}

.image-container img {
  width: 100%;
  max-width: 600px;
  height: 500px;
  border-radius: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .image-container img {
    height: 400px;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .image-container img {
    height: 300px;
    width: 100%;
  }
}

.content-container, .content-container-2, .content-container-1 {
  flex: 1;
  min-width: 300px;
  width: 50%;
  padding: 40px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .content-container, .content-container-2, .content-container-1 {
    padding: 30px;
    margin: 20px !important;
  }
}
@media (max-width: 768px) {
  .content-container, .content-container-2, .content-container-1 {
    width: 100%;
    padding: 25px 20px;
    margin: 0 !important;
    order: 2;
  }
}

.image-container,
.content-container,
.content-container-2,
.content-container-1 {
  min-width: 0;
}

@media (max-width: 1200px) {
  .content-container-1 {
    margin-left: 20px;
  }
}

.content-container-2 {
  margin-right: 40px;
}
@media (max-width: 1200px) {
  .content-container-2 {
    margin-right: 20px;
  }
}

.content-container h2,
.content-container-1 h2,
.content-container-2 h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 500;
  font-family: "JT Marnie";
  font-weight: 400;
  text-align: center;
}
@media (max-width: 992px) {
  .content-container h2,
  .content-container-1 h2,
  .content-container-2 h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .content-container h2,
  .content-container-1 h2,
  .content-container-2 h2 {
    font-size: 1.4rem;
    text-align: center;
  }
}

.content-container p,
.content-container-1 p,
.content-container-2 p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 28px;
  color: #000000;
  font-family: "JT-Marnie-Light";
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .content-container p,
  .content-container-1 p,
  .content-container-2 p {
    font-size: 0.9rem;
    text-align: center;
  }
}

.content-container ul,
.content-container-1 ul,
.content-container-2 ul {
  margin-left: 100px;
  padding-left: 20px;
  list-style: none;
  font-size: 28px;
}
@media (max-width: 768px) {
  .content-container ul,
  .content-container-1 ul,
  .content-container-2 ul {
    padding-left: 30px;
  }
}

.content-container li,
.content-container-1 li,
.content-container-2 li {
  margin-bottom: 8px;
  color: #000000;
  font-family: "JT-Marnie-Light";
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .content-container li,
  .content-container-1 li,
  .content-container-2 li {
    font-size: 0.9rem;
  }
}

.highlight {
  font-weight: 200;
  margin-top: 20px;
  font-size: 40px;
  color: #000000;
  font-family: "JT Marnie";
  text-align: center;
  padding: 10px;
}
@media (max-width: 992px) {
  .highlight {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .highlight {
    font-size: 1.1rem;
    margin-top: 15px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .image-container,
  .content-container,
  .content-container-1,
  .content-container-2 {
    width: 90%;
    min-width: 0;
    margin: 0 !important;
  }
  .image-container {
    order: 1;
  }
  .content-container,
  .content-container-1,
  .content-container-2 {
    order: 2;
  }
  .solutions-section:nth-child(even) .image-container {
    order: 1;
  }
  .solutions-section:nth-child(even) .content-container, .solutions-section:nth-child(even) .content-container-1, .solutions-section:nth-child(even) .content-container-2 {
    order: 2;
  }
  .content-container ul, .content-container-1 ul, .content-container-2 ul {
    padding-left: 0;
    list-style-position: inside;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .content-container-1 {
    margin-left: 20px;
  }
  .content-container-2 {
    margin-right: 20px;
  }
  .image-container img {
    height: 350px;
  }
}
.pricing {
  text-align: center;
  padding: 50px 20px;
  background: #000;
  margin-bottom: 20px;
}

.pricing h1 {
  font-size: 64px;
  margin-bottom: 50px;
  color: white;
  font-weight: 400;
}

@media (max-width: 768px) {
  .pricing h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .pricing-card h2 {
    margin: 0;
    font-size: 32px;
  }
}
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 180px;
}

.pricing-card {
  background: #000000;
  border-radius: 0px;
  padding: 30px 20px;
  width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  margin-left: 20px;
}

.pricing-card.pro {
  background: #fff;
  color: #000;
}

.pricing-card h2 {
  margin: 0;
  font-size: 40px;
}

.price {
  font-size: 40px;
  margin: 15px 0;
}

.pricing-card .price-desc {
  font-size: 28px;
  color: white;
}
.pricing-card .pro-desc {
  font-size: 28px;
}

.features {
  margin: 20px 0;
  padding-left: 20px;
}
.features ul {
  list-style: none;
}

.features li {
  margin-bottom: 10px;
}

.btn {
  background: #fff;
  color: #000;
  padding: 10px 15px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px;
}

.pricing-card.pro .btn {
  background: #000;
  color: #fff;
}

ul {
  list-style: none;
}

.testimonial {
  display: flex;
  margin: 70px 5% 50px 5%;
  height: auto;
}

.testimonial-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: white;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
  }
}

.testimonial-image {
  flex: 1;
}
.testimonial-image img {
  width: 600px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-text-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .testimonial-text-content {
    padding: 20px;
    text-align: center;
  }
}

.testimonial-rating {
  font-size: 28px;
  margin-bottom: 15px;
}

.star,
.star-half {
  color: black;
}

.testimonial-text {
  font-size: 28px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600px;
  font-family: "JT Marnie";
}

.author-name {
  font-weight: 600;
  font-size: 28px;
  font-weight: 400;
  font-family: "JT Marnie-Medium";
  margin-bottom: 0;
}

.author-description {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-family: "JT Marnie";
  margin-top: 0;
}
.author-description .hr {
  display: inline-block;
  height: 48px; /* Adjust based on text size */
  border-left: 2px solid #000;
  margin: 0 15px; /* space between text and line */
}
.author-description .mag {
  font-weight: 100;
  color: #000000;
  margin-left: 20px;
  font-size: 48px;
}

.faq {
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  box-sizing: border-box;
  /* Default padding for small screens */
  padding-left: 1rem;
  padding-right: 1rem;
}
.faq__title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: "JT Marnie";
}
.faq__item {
  border: 1px solid #000000;
  margin-bottom: 0.75rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.faq__question {
  width: 100%;
  padding: 1rem;
  background: white;
  border: none;
  outline: none;
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "JT Marnie-Medium";
}
.faq__question .faq__icon {
  font-size: 28px;
  color: #29aecf;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
  padding: 0 1rem;
}
.faq__answer p {
  margin: 0.75rem 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  font-family: "JT-Marnie-Light";
}
.faq__answer.show {
  max-height: 200px;
  padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .faq {
    padding-left: 80px;
    padding-right: 80px;
  }
  .faq__title {
    font-size: 64px;
    margin-top: 150px;
    font-family: "JT Marnie";
    font-weight: 400;
  }
}
.contact-section {
  font-family: "JT Marnie";
  padding: 60px 20px;
  text-align: center;
}
.contact-section .title {
  font-size: 64px;
  margin-bottom: 10px;
  font-family: "JT Marnie";
  font-weight: 400;
}
.contact-section .subtitle {
  font-size: 42px;
  color: #000000;
  margin-bottom: 40px;
  font-weight: 500;
}
.contact-section .contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  text-align: left;
  margin-left: 35px;
}
@media (max-width: 992px) {
  .contact-section .contact-wrapper {
    flex-direction: column;
    margin-left: 0;
    gap: 30px;
    text-align: center;
  }
}
.contact-section .contact-form {
  flex: 1;
}
.contact-section .contact-form label {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #000000;
}
.contact-section .contact-form input, .contact-section .contact-form textarea {
  width: 600px;
  padding: 10px;
  height: 34px;
  margin-bottom: 20px;
  border: 1px solid #000000;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .contact-section .contact-form input, .contact-section .contact-form textarea {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-form input, .contact-section .contact-form textarea {
    width: 100%;
  }
}
.contact-section .contact-form button {
  background: #000000;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-section .contact-form button:hover {
  background: #444;
}
.contact-section .contact-info {
  flex: 1;
  padding-left: 60px;
  border-left: 2px solid #ccc;
}
@media (max-width: 992px) {
  .contact-section .contact-info {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #ccc;
    padding-top: 20px;
    text-align: center;
  }
}
.contact-section .contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 300;
  font-family: "JT Marnie-Medium";
}
.contact-section .contact-info p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
  font-family: "JT-Marnie-Light";
}
.contact-section .contact-info p strong {
  margin-bottom: 5px;
  font-weight: 300;
  font-family: "JT Marnie-Medium";
}
.contact-section .contact-info small {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  font-family: "JT-Marnie-Light";
}
@media (max-width: 768px) {
  .contact-section .title {
    font-size: 42px;
  }
  .contact-section .subtitle {
    font-size: 28px;
  }
}

.gallery-showcase {
  text-align: center;
  padding: 2rem;
}
.gallery-showcase .gallery-header {
  margin-bottom: 2rem;
}
.gallery-showcase .gallery-header h2 {
  font-size: 64px;
  margin-bottom: 0.5rem;
  font-family: "JT Marnie";
  font-weight: 400;
}
@media (max-width: 768px) {
  .gallery-showcase .gallery-header h2 {
    font-size: 36px;
  }
}
.gallery-showcase .gallery-header p {
  font-size: 42px;
  color: #000000;
  font-weight: 600;
  width: 900px;
  justify-content: center;
  align-items: center;
  margin-left: 300px;
  font-family: "JT-Marnie-Light";
  /* ✅ Responsive adjustments */
}
@media (max-width: 1200px) {
  .gallery-showcase .gallery-header p {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .gallery-showcase .gallery-header p {
    font-size: 20px;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.gallery-showcase .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-showcase .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-showcase .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-showcase .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-showcase .gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  transition: all 0.4s ease;
  display: block;
}
.gallery-showcase .gallery-grid .gallery-item .overlay {
  position: absolute;
  inset: 0;
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  text-align: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-showcase .gallery-grid .gallery-item .overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .gallery-showcase .gallery-grid .gallery-item .overlay h3 {
    font-size: 1rem;
  }
}
.gallery-showcase .gallery-grid .gallery-item .overlay p {
  margin: 0.2rem 0;
  font-weight: 600;
}
.gallery-showcase .gallery-grid .gallery-item .overlay span {
  font-size: 0.9rem;
  color: #ddd;
}
@media (max-width: 768px) {
  .gallery-showcase .gallery-grid .gallery-item .overlay span {
    font-size: 0.8rem;
  }
}
.gallery-showcase .gallery-grid .gallery-item:hover img {
  filter: blur(2px) brightness(0.8);
  transform: scale(1.05);
}
.gallery-showcase .gallery-grid .gallery-item:hover .overlay {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .gallery-showcase {
    padding: 1rem;
  }
  .gallery-showcase .gallery-header {
    margin-bottom: 1rem;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 350px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.register-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.register-container .register-popup {
  background: white;
  padding: 2rem;
  width: 450px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
.register-container .register-popup .error-container p {
  color: red;
}
.register-container .register-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.register-container h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.register-container h1 span {
  font-weight: bold;
}
.register-container .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
}
.register-container hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #000000;
}
.register-container .register-form {
  text-align: left;
}
.register-container .register-form .social-signup {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.register-container .register-form .social-signup .btn {
  flex: 1;
  padding: 0.8rem;
  background: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.register-container .register-form .or {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #777;
}
.register-container .register-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .register-container .register-form .form-row {
    flex-direction: column;
  }
}
.register-container .register-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.register-container .register-form .form-group span {
  color: red;
}
.register-container .register-form .form-group label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.register-container .register-form .form-group input {
  padding: 0.6rem;
  border: 1px solid #000000;
}
.register-container .register-form .captcha {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.register-container .register-form .captcha-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.register-container .register-form .captcha-box input {
  width: 50px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.register-container .register-form .captcha .continue {
  align-self: flex-end; /* button stays at the right */
  padding: 0.6rem 1rem;
  background: #007bff; /* main color */
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.register-container .register-form .submit-btn button {
  background-color: #000;
  color: #fff;
  margin-left: 80%;
}
.register-container .register-form .checkbox-group {
  margin: 1rem 0;
}
.register-container .register-form .checkbox-group label {
  font-size: 0.9rem;
  display: block;
}
.register-container .register-form .checkbox-group label input {
  margin-right: 0.5rem;
}
.register-container .register-form .checkbox-group label small {
  display: block;
  color: #777;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.register-container .register-form .login-link {
  margin: 1rem 0;
}
.register-container .register-form .login-link a {
  text-decoration: underline;
  color: #000000;
}
.register-container .register-form .terms {
  font-size: 0.8rem;
  color: #555;
}
.register-container .register-form .terms a {
  text-decoration: underline;
}

.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.login-container .login-popup {
  background: white;
  padding: 2rem;
  width: 450px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
.login-container .login-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.login-container h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.login-container h1 span {
  font-weight: bold;
}
.login-container .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
}
.login-container hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #000000;
}
.login-container .text-button {
  background: none;
  border: none;
  padding: 0;
  margin: 10px 0 0 0;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: "JT Marnie", Arial, sans-serif;
}
.login-container .text-button:hover {
  color: black;
}
.login-container .login-form {
  text-align: left;
}
.login-container .login-form .social-signup {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.login-container .login-form .social-signup .btn {
  flex: 1;
  padding: 0.8rem;
  background: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0;
}
.login-container .login-form .or {
  text-align: center;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #777;
}
.login-container .login-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.login-container .login-form .form-group {
  display: flex;
  flex-direction: column;
}
.login-container .login-form .form-group label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.login-container .login-form .form-group input {
  padding: 0.6rem;
  border: 1px solid #000000;
}
.login-container .login-form .captcha {
  margin: 1rem 0;
}
.login-container .login-form .captcha .captcha-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.login-container .login-form .captcha .captcha-box .captcha-input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
}
.login-container .login-form .captcha .captcha-box .continue {
  padding: 0.6rem 1rem;
  background: #000000;
  color: white;
  border: none;
  cursor: pointer;
  margin-left: 80%;
  border-radius: 0;
}

.registration-containerMial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.registration-containerMial .registration-popup {
  background: #fff;
  padding: 2rem;
  width: 450px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 8px;
  text-align: center;
}

.registration-containerMial .registration-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.registration-containerMial .registration-popup h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.registration-containerMial .registration-popup .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.registration-containerMial .registration-popup hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

.registration-containerMial .registration-popup .instruction,
.registration-containerMial .registration-popup .text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  margin-left: 10px;
}

.registration-containerMial .registration-popup .email-display {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 1rem;
}

#registerPasswordPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#registerPasswordPopup .login-popup {
  background: #ffffff;
  padding: 2rem;
  width: 450px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

#registerPasswordPopup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

#registerPasswordPopup h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  text-align: center;
  font-weight: bold;
}

#registerPasswordPopup .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
}

#registerPasswordPopup hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #000000;
}

#registerPasswordPopup .login-form {
  text-align: left;
}

#registerPasswordPopup .form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

#registerPasswordPopup .form-group input {
  padding: 0.6rem;
  border: 1px solid #000000;
}

#registerPasswordPopup .submit-input-button {
  padding: 0.6rem 1rem;
  background-color: #000000; /* primary-color-btn */
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-left: 80%;
}

#registerPasswordPopup .d-gray-text p {
  color: #000000;
  font-size: 0.9rem;
}

.reset-email-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.reset-email-container .login-poppup {
  background: white;
  padding: 2rem;
  width: 450px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 8px;
}
.reset-email-container .login-poppup .background-change {
  position: relative;
}
.reset-email-container .login-poppup .background-change .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.reset-email-container .login-poppup .background-change h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.reset-email-container .login-poppup hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #000000;
}
.reset-email-container .login-poppup .login-form .d-gray-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.reset-email-container .login-poppup .login-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reset-email-container .login-poppup .login-form form label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.reset-email-container .login-poppup .login-form form input {
  padding: 0.6rem;
  border: 1px solid #000000;
  border-radius: 4px;
  font-size: 1rem;
}
.reset-email-container .login-poppup .login-form form .captcha {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reset-email-container .login-poppup .login-form form .captcha-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reset-email-container .login-poppup .login-form form .captcha-box input {
  width: 50px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.reset-email-container .login-poppup .login-form form .captcha .continue {
  align-self: flex-end; /* button stays at the right */
  padding: 0.6rem 1rem;
  background: #007bff; /* main color */
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.reset-email-container .login-poppup .login-form form button {
  padding: 0.8rem;
  background: #000000;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.reset-email-container .login-poppup .login-form form button:hover {
  background: black;
}

/*####################*/
/* Reset password modal */
/*####################*/
#passwordResetPopup {
  position: fixed;
  display: none; /* Always visible */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#passwordResetPopup .login-poppup {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

#passwordResetPopup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.update-password form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.update-password label {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.update-password input[type=email],
.update-password input[type=password] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.update-password button {
  background: #000000;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.update-password button:hover {
  background: #222;
}

.background-change {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px 6px 0 0;
  margin-bottom: 15px;
  text-align: center;
}
