html {
  scroll-behavior: smooth;
} 

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  
  section {
    padding: 50px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 720px;
  }
  
  /* Page 1 Styles */
  
  #page1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  #page1 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  
  
  
  
  .video-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  /* Page 2 Styles */
  
  #page2 {
    background-color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
  }
  
  #page2 p {
    animation: fadeIn 2s;
  }
  
  @keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }
  
  #animated-text {
    font-size: 20.5px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    animation: fadeIn 2s;
    margin-top: 40px;
  }
  
  #metoo {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-variant: normal;
    font-style: normal;
    font-size: 35px;
  }
  
  /* Content Container Styles */
  
  .content-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
  }
  
  .text-content {
    flex: 1;
    margin-right: 30px;
  }
  
  .image-content {
    flex: 0 0 300px;
    max-width: 120%;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-left: 20px;
  }
  
  .image-content img:hover {
    transform: scale(1.1);
  }
  
  /* Page 3 Styles */
  
  #carouselExampleAutoplaying {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel-inner {
    width: 100%;
    height: 100%;
  }
  
  .carousel-item {
    width: 100%;
    height: 100%;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-control-prev, .carousel-control-next {
  align-items: center;
    border-radius: 50%;
    cursor: pointer;
    gap: 140px;
  }
  
  
  
  /* Page 4 Styles */
  
  #page4 {
    background-color: #f7f7f7;
  }
  
  #p4head {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #B17457;
  }
  
  .product-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: transparent;
    transition: transform 0.3s ease;
  }
  
  .product img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .product:hover {
    transform: scale(1.1);
  }
  
  .cost {
    margin-top: 30px;
    font-size: 1.2em;
    text-align: center;
  }
  
  .load-more {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border: none;
    font-size: 1.2em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: linear-gradient(90deg, #8d634c, #464342);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .load-more:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #464342, #8d634c);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Page 5 Styles */
  
  #page5 {
    background-color: #f6f6f6;
  }
  
  /* Page 6 Styles */
  
  #page6 {
    background-color: #efefef;
  }
  
  /* Navigation Styles */
  
  .nav {
    position: fixed;
    top: 40px;
    left: 1000px;
    z-index: 1000;
    font-size: 1.2em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    gap: 20px;
    display: flex;
  }
  
  .nav a {
    margin-left: 15px;
    color: rgb(33, 32, 32);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    gap: 20px;
  }
  .nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333; 
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav a:hover::after {
    transform: scaleX(1);
  }
  
  .nav a:hover {
    color: #ebebeb;
    transform: scale(1.05);
  }
  
  .nav a.active {
    animation: pulse 1s ease infinite;
  }
  
  @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
  }
  
  .nav-strip {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgb(146, 130, 123);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .gany-enterprise {
    font-size: 1.7em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    background: rgb(29, 29, 29);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Footer Styles */
  
  footer {
    background-color: #7d716a;
    color: #0d0b0b;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 150px;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #151414;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #000;
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #121111;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #000;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #0e0d0d;
  }
  
  /* Session Page Styles */
  
  #session-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .session-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  .text-container {
    width: 40%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .text-container h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  .text-container p {
    font-size: 18px;
    color: #666;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
  .image-container {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('image.jpg');
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

 /* Styled Login Button */
.user-profile {
  width: auto; /* Adjust width to fit content */
  height: 30px; /* Match the height of other nav links */
  border-radius: 5px; /* Slight rounding for consistency */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: rgb(33, 32, 32);
  font-size: 1.2em;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  padding: 0 15px; 
  background: none; 
  border: none; /* Remove any borders */
}

.user-profile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}

.user-profile:hover::after {
  transform: scaleX(0.75);
}

.user-profile:hover {
  color: #ebebeb;
  transform: scale(1.05);
}

.user-profile-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.user-profile-inner svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.user-profile-inner p {
  margin: 0;
  font-size: 1em;
}



