@import url('https://fonts.googleapis.com/css?family=Manrope:500,400,600');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Manrope', sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.common_padding {
  padding: 0px 80px;
}

.main_header {
  background-color: #ffffff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Navigation Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-wrapper.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-container {
    width: 100%;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .auth-buttons button {
    width: 100%;
  }

  /* Hamburger Animation */
  .hamburger-menu.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

.logo-container img {
  height: 40px;
  width: auto;
}

/* Navigation Menu */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #0056b3;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 1rem;
}

.login-btn,
.contact-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.login-btn {
  border: 2px solid #0056b3;
  background: transparent;
  color: #0056b3;
}

.contact-btn {
  border: none;
  background: #0056b3;
  color: white;
}

.contact-btn:hover {
  background: #004494;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-wrapper.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  /* Hamburger Animation */
  .hamburger-menu.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 40px;
  width: auto;
}

.logo-text {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-left: 8px;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-menu a:hover {
  color: #333;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  background: transparent;

  color: rgb(2, 2, 2);
  border: 1px solid black;
  padding: 10px 24px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  border-color: #333;
  color: #333;
}

.contact-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 24px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .auth-buttons {
    gap: 10px;
  }

  .login-btn,
  .contact-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .logo-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .auth-buttons {
    gap: 8px;
  }

  .login-btn,
  .contact-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: end;
  height: 100%;
  margin-bottom: 90px;
  gap: 50px;
}

.content-left {
  flex: 1;
  max-width: 670px;
}

.content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 30px;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 40px;
  color: white;
  letter-spacing: -0.02em;
}

.info-card {
  max-width: 600px;
  padding: 24px;
}

.info-text {
  color: #fff;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn-primarys {
  background: #33333300;
  color: white;
  border: 1px solid white;
  padding: 8px 15px;
}

.btn-secondarys {
  background: white;
  color: #000000;
  padding: 8px 15px;
}

/* Swiper pagination */
.swiper-pagination {
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

/* Background images for slides */
.slide-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/banner.png');
  background-size: cover;
  height: 90vh;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/banner.png');
  background-size: cover;
  background-position: center;
  height: 90vh;

  background-repeat: no-repeat;
}

.slide-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/banner.png');
  background-size: cover;
  background-position: center;
  height: 90vh;

  background-repeat: no-repeat;
}

/* Responsive design */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px;
  }

  .content-left {
    max-width: none;
    margin-bottom: 40px;
  }

  .content-right {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .main-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .info-card {
    max-width: 100%;
  }

  .buttons {
    justify-content: center;
  }

  .btn {
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .info-card {
    padding: 20px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.why-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-bullet {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 40px;
  border-bottom: 1px solid black;
  padding-bottom: 30px;
}

.section-bullet::before {
  content: '•';
  margin-right: 15px;
  color: #000;
}

.main-heading {
  font-size: 26px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  margin-bottom: 60px;
}

.description-text {
  font-size: 16px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 20px;
}

.stats-section {
  margin-top: 80px;
}

.stat-item {
  text-align: left;
  padding: 0 15px;
}

.stat-number {
  font-size: 72px;
  font-weight: 300;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.stat-description {
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 20px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stats-section {
    margin-top: 60px;
  }

  .stat-item {
    margin-bottom: 40px;
  }
}

.services-section {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.section-header::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #6c757d;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 60px;
}

.service-card {
  background: white;

  overflow: hidden;

  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 30px 0px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

.getintouch {
  background: linear-gradient(
    70deg,
    #121212 -52.1%,
    #121212 54.83%,
    #525252 182.31%
  );
  height: 100%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get_in_section .col-lg-6 {
  padding: 0 !important;
}

.get_in_section h4 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.get_in_section p {
  color: #dedede;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.get_in_section button {
  background-color: white;
  padding: 12px 20px;
  color: #121212;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: fit-content;
  border: 0px;
  margin-top: 20px;
}

.gallery-section {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.section-header::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #6c757d;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-description {
  font-size: 18px;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 400;
}

.gallery-section .swiper {
  width: 100%;
  height: 400px;
  margin: 0;
}

.gallery-section .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-section .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Custom navigation buttons */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  transition: all 0.3s ease;
}

.gallery-section .swiper-button-next:after,
.gallery-section .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.gallery-section .swiper-button-next:hover,
.gallery-section .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* Pagination dots */
.gallery-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery-section .swiper-pagination-bullet-active {
  background: #007bff;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-section .swiper {
    height: 300px;
  }

  .gallery-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .section-header::before {
    left: 0;
    top: -15px;
    width: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-section .swiper {
    height: 250px;
  }

  .gallery-section .gallery-section .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .gallery-section .swiper-button-next:after,
  .gallery-section .swiper-button-prev:after {
    font-size: 14px;
  }
  .slide-content {
    height: auto;
  }
  .content-left {
    margin-bottom: 0px;
  }
  .main-title {
    margin-bottom: 0px;
  }
  .get_in_section h4 {
    font-size: 22px;
  }
  .get_in_section p {
    font-size: 15px;
  }
  .main-heading2 {
    font-size: 27px !important;
  }
  .btn-outline-dark {
    margin-bottom: 20px !important;
  }
}

.coworking-section {
  background-color: #ffffff;
  padding: 80px 0;
  min-height: 400px;
}

.main-heading2 {
  font-size: 3rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline-dark {
  border: 2px solid #333;
  color: #333;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: white;
}

.btn-dark {
  background-color: #000000;
  border: 2px solid #000000;
  color: white;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #555;
  border-color: #555;
  color: white;
}

/* Footer Styles */
.footer-section {
  background-color: #000000;
  color: white;
  position: relative;
  overflow: hidden;
}

.scrolling-text {
  background-color: #000;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-content {
  display: inline-block;
  animation: scroll-left 60s linear infinite;
  font-size: 0.9rem;
  color: #ccc;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-content {
  padding: 40px 0 30px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 0 0 auto;
}

.footer-column.logo-column {
  width: 200px;
}

.footer-column.nav-column {
  width: 120px;
}

.footer-column.links-column {
  width: 140px;
}

.footer-column.socials-column {
  width: 120px;
}

.footer-column.contact-column {
  width: 220px;
}

.footer-column.map-column {
  width: 180px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  letter-spacing: 0.5px;
}

.footer-description {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 15px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-links a:hover {
  color: white;
}

.contact-info li {
  margin-bottom: 8px;
}

.map-container {
  margin-top: 20px;
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
  .footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-column {
    width: 100% !important;
  }

  .footer-column.map-column {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-column.logo-column {
    grid-column: span 2;
  }

  .footer-column.map-column {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .footer-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column.logo-column,
  .footer-column.map-column {
    grid-column: span 1;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .scrolling-text {
    font-size: 0.9rem;
  }

  .footer-content {
    padding: 3rem 5% 1rem;
  }
}

.map-placeholder {
  width: 180px;
  height: 100px;
  background: #6c757d;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #5a6268 1px, transparent 1px),
    linear-gradient(0deg, #5a6268 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  position: absolute;
  top: 35%;
  left: 65%;
  width: 6px;
  height: 6px;
  background-color: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

.map-pin::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 12px;
  height: 12px;
  border: 1px solid #28a745;
  border-radius: 50%;
  opacity: 0.4;
}

.map-label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 5px;
  border-radius: 2px;
  font-weight: 500;
}

/* Add some decorative lines to simulate map roads */
.map-placeholder::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #4a5568 20%,
    #4a5568 80%,
    transparent 100%
  );
}

.map-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 1px;
  background: linear-gradient(
    0deg,
    transparent 0%,
    #4a5568 20%,
    #4a5568 80%,
    transparent 100%
  );
}
.footer-bottom {
  background-color: white;
  padding: 10px 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  color: #121212;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 184.615% */
  margin-bottom: 0px;
}
.wrapper {
  width: 100%;
  overflow: hidden;
}
.photobanner {
  position: relative;
  height: 300px;
  margin-bottom: 30px;
  display: flex;
  width: 100%;
}

.photobanner img {
  margin: 0px 25px;
}

.photobanner {
  animation: bannermove 50s linear infinite alternate-reverse;
}

@keyframes bannermove {
  from {
    left: 0px;
  }
  to {
    left: -2700px;
  }
}

.contact-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1050;
  background: #000000;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.modal-image {
  height: 520px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  overflow: hidden;
}

.modal-form-content {
  padding: 16px 16px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 11px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

.input-group-text {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #666;
  font-size: 0.9rem;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.input-group .form-control:focus {
  border-left: 1px solid #333;
}

.btn-submit {
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #555;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .modal-image {
    height: 200px;
  }

  .modal-form-content {
    padding: 30px 25px;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}

.reserve-image {
  position: relative;
}

.price-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff6b35;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.modal-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.price-tag {
  background: #ff6b35;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
}

.form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.desk-selection {
  display: flex;
  justify-content: center;
}

.selected-desk {
  background: #007bff;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  min-width: 120px;
}

.reserve-form .input-group {
  margin-bottom: 0;
}

.reserve-form .input-group .form-control {
  border-left: none;
}

.reserve-form .input-group .form-control:focus {
  border-left: 1px solid #333;
}

.features-section {
  padding-top: 60px 0px;
}

.features-section {
  background-color: #fff9f3;
}

.features-grid {
  padding-top: 50px;
  padding-bottom: 50px;
}
.features-grid h4 {
  color: #242424;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  letter-spacing: 0.44px;
  text-transform: uppercase;
}

.features-grid .col-lg-3{
  display: flex;
    gap: 20px;
    margin-bottom: 50px;
}