/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@400;600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: transparent;
  color: #fff;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: -30px;
}

header .logo img {
  height: 45px;
  width: auto;
}

header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
  margin-right: -30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.1rem;
}

nav a:hover {
  color: #d4af37; /* Gold */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #1a1a1a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

#hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transform: scale(1);
  transition: transform 3s ease-out, opacity 1.5s ease-in-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
}

/* Section Styling */
section {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  scroll-snap-align: start;
}

section .container {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-arrow {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.9);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-arrow:hover {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 1);
}

.section-arrow svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 768px) {
  .section-arrow {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  
  .section-arrow svg {
    width: 24px;
    height: 24px;
  }
}

/* Section Colors */
#home {
  background-color: #1a1a1a;
}

#about {
  background-color: #000a24;
  color: #fff;
  padding: 60px 0 0 0;
  width: 100%;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  padding: 0 80px 60px;
}

.about-content p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
  line-height: 1.8;
}

.about-content .highlight {
  color: #d4af37;
  font-weight: 500;
}

.about-container > h2 {
  padding: 0 80px;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.why-us-section {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 250px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url('../images/gold-bars-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.why-us-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-content h2 {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 2;
}

.taglines-container {
  position: relative;
  min-height: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.tagline {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 1.3rem;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.tagline.active {
  opacity: 1;
  transform: translateY(0);
}

.tagline.exit {
  opacity: 0;
  transform: translateY(-20px);
}

@media (max-width: 992px) {
  .why-us-section {
    height: 220px;
  }

  .why-us-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #hero-slideshow {
    background-attachment: scroll;
  }

  .why-us-section {
    height: 200px;
  }

  .parallax-bg {
    top: 0;
    height: 100%;
    transform: none;
  }

  .why-us-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .tagline {
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .about-content,
  .about-container > h2 {
    padding: 0 60px;
  }

  .tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .about-content,
  .about-container > h2 {
    padding: 0 40px;
  }

  .why-us-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-content,
  .about-container > h2 {
    padding: 0 20px;
  }

  .why-us-content {
    padding: 15px;
  }

  .why-us-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .tagline {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .why-us-content {
    padding: 25px 15px;
  }

  .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .taglines-container {
    height: 50px;
    max-width: 800px;
  }

  .tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .taglines-container {
    height: 40px;
    max-width: 600px;
  }

  .tagline {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .taglines-container {
    height: 35px;
    max-width: 100%;
    padding: 0 20px;
  }

  .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .why-us-parallax {
    height: 220px;
  }

  .why-us-content {
    padding: 20px;
  }

  .why-us-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .why-us-parallax {
    background-attachment: scroll;
    background-position: center center;
  }

  .why-us-content {
    padding: 15px;
  }

  .why-us-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .taglines-container {
    height: 100px;
  }
}

@media (max-width: 1200px) {
  .about-content,
  .about-container > h2,
  .why-us-content {
    padding: 0 60px;
  }

  .about-content {
    padding-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .about-content,
  .about-container > h2,
  .why-us-content {
    padding: 0 40px;
  }

  .about-content {
    padding-bottom: 40px;
  }

  .about-container > h2 {
    font-size: 2.2rem;
  }

  .why-us-section {
    height: 250px;
  }

  .why-us-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .about-content,
  .about-container > h2,
  .why-us-content {
    padding: 0 20px;
  }

  .about-content {
    padding-bottom: 30px;
  }

  .about-container > h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .why-us-section {
    height: 200px;
  }

  .why-us-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .why-us-content p {
    font-size: 1.1rem;
  }
}

#services {
  background-color: #000a24;
  color: #fff;
}

#products {
  background-color: #000a24;
  color: #fff;
}

#live-rates {
  background-color: #2a2a2a;
  color: #fff;
}

#contact {
  background-color: #000000;
  color: #fff;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
  list-style: disc;
}

/* Back to Top Arrow */
.back-to-top {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.9);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 1);
}

.back-to-top svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 24px;
    height: 24px;
  }
}

/* Footer */
footer {
  background-color: #000000;
  color: #ced0d3;
  padding: 20px 0 15px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.contact-middle {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-middle #map {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0;
  justify-content: space-between;
  gap: 120px;
  align-items: center;
}

.contact-left {
  flex: 1;
  padding-left: 40px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
  text-align: center;
}

.contact-left img.contact-logo {
  width: 250px;
  height: auto;
  margin-bottom: 1px;
}

.contact-left .company-name {
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.5px;
}

.contact-left .social-links {
  display: flex;
  gap: 25px;
}

.social-link {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 1;
}

.social-links img {
  width: 22px;
  height: 22px;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.contact-left img.contact-logo {
  width: 90px;
  height: auto;
}

.company-title h3 {
  font-size: 36px;
  font-weight: 700;
  color: #f8d14a;
  margin: 0;
  line-height: 1;
}

.company-title h3:last-child {
  margin-top: 5px;
}

.contact-left .social-links {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  justify-content: center;
  width: 100%;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 1;
} 

.contact-left .social-links img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
}

.contact-left .social-links img:hover {
  transform: scale(1.1);
}

.contact-middle {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-middle h3 {
  font-size: 32px;
  font-weight: 600;
  color: #ced0d3;
  margin-bottom: 25px;
  text-align: center;
}

.contact-middle #map {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-right: 40px;
  padding-left: 0;
}

.contact-right h3 {
  font-size: 32px;
  font-weight: 600;
  color: #ced0d3;
  margin-bottom: 25px;
  width: 100%;
  text-align: left;
}

.contact-info {
  margin-bottom: 35px;
  text-align: left;
  width: 100%;
}

.contact-info p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #ced0d3;
  text-align: left;
}

.contact-info .phone,
.contact-info .email {
  color: #ced0d3;
}

.app-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  width: 100%;
  padding-left: 0;
}

.store-box {
  display: block;
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
  margin-left: 0;
}

.store-box:hover {
  transform: scale(1.05);
}

.store-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  footer {
    padding: 20px 0;
  }

  .contact-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 25px;
  }

  .contact-left,
  .contact-middle,
  .contact-right {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact-left img.contact-logo {
    margin: 0 auto 20px auto;
  }

  .contact-left .social-links {
    justify-content: center;
  }

  .contact-right {
    align-items: center;
  }

  .app-links {
    justify-content: center;
    gap: 10px;
  }
  
  .store-box {
    width: 130px;
  }
}

/* WhatsApp Contact Button */
.whatsapp-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-contact:hover {
  transform: scale(1.05);
}

.whatsapp-contact img {
  width: 24px;
  height: 24px;
}

/* Live Ticker */
.live-ticker {
  background-color: #000;
  color: #d4af37;
  padding: 15px;
  border-radius: 8px;
  overflow: hidden;
  font-weight: bold;
  font-size: 18px;
}

.ticker-title {
  margin-bottom: 10px;
}

.ticker-items {
  display: flex;
  gap: 30px;
  animation: scrollTicker 20s linear infinite;
  white-space: nowrap;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Mobile Styles */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  header .logo img {
    height: 35px;
  }
  
  header .logo h1 {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    display: none;
    padding: 20px;
  }

  nav.active .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  overflow-x: hidden;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
  color: #d4af37;
  border: none;
  padding: 12px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  opacity: 0.8;
}

.slider-btn:hover {
  opacity: 1;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}
.products-heading {
  text-align: center;
  color: #d4af37;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 60px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 20px;
  margin: 0;
  padding: 20px 0;
}

.carousel-item {
  min-width: calc((100% - 40px) / 3);
  margin: 0;
  text-align: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-10px);
}

.carousel-item img.zoomed {
  transform: scale(1.1);
  transition: transform 1.5s ease;
}

.carousel-item img.zooming {
  transform: scale(1.08);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image {
  margin-bottom: 15px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.carousel-item h3 {
  color: #d4af37;
  font-size: 24px;
  margin: 15px 0 10px;
  font-weight: 500;
}

.show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.show-more svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.product-link:hover .show-more svg {
  transform: translateX(5px);
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(212, 175, 55, 1);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

@media (max-width: 992px) {
  .carousel-item {
    min-width: calc((100% - 20px) / 2);
  }
  
  .products-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    min-width: 100%;
  }
  
  .products-heading {
    font-size: 2rem;
  }
  
  .carousel-wrapper {
    padding: 0 40px;
  }
  
  .product-image {
    height: 250px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px 0;
  max-width: 100%;
}

.service-card {
  background: transparent;
  padding: 25px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card .service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.service-icon .icon-hover {
  opacity: 0;
}

.service-card h3 {
  color: #d4af37;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  line-height: 1.3;
  margin: 0;
}

.service-card p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Hover Effects */
.service-card:hover h3 {
  color: #ffffff;
}

.service-card:hover .icon-default {
  opacity: 0;
}

.service-card:hover .icon-hover {
  opacity: 1;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px 0;
  }

  .service-card {
    padding: 15px;
    min-height: auto;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  header .container {
    padding: 0 30px;
  }

  header .logo {
    margin-left: -20px;
  }

  .nav-links {
    margin-right: -20px;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 0 15px;
  }

  header .logo {
    margin-left: 0;
  }

  .nav-links {
    margin-right: 0;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    perspective: none;
  }

  #hero-slideshow {
    transform: none;
  }

  .why-us-section {
    perspective: none;
  }

  .parallax-bg {
    transform: none;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .contact-middle #map {
    height: 250px;
    width: 100%;
  }
}

