/* Modern Dawaey Website Styles */

/* CSS Variables for consistent theming */
:root {
  --primary-color: #7b1ead;
  --primary-light: #9c4bcf;
  --primary-dark: #5a1280;
  --secondary-color: #2c3e50;
  --accent-color: #3498db;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;

  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --text-muted: #95a5a6;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;

  --border-color: #e9ecef;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);

  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-heading: "Poppins", "Inter", sans-serif;

  --border-radius: 12px;
  --border-radius-sm: 6px;
  --border-radius-lg: 20px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 2px;
}

/* Section Styles */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Modern Navigation */
.modern-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
  padding: 1rem 0;
}

.modern-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(123, 30, 173, 0.1);
}

.navbar-nav .nav-link.btn {
  background: var(--primary-color) !important;
  color: white !important;
  margin-left: 1rem;
}

.navbar-nav .nav-link.btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../imgs/back header new.png") no-repeat center center;
  background-size: cover;
  opacity: 0.8;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.stat-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}

.stat-item span {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Download Section */
.download-section {
  margin-top: 3rem;
}

.download-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.download-btn img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-normal);
}

.download-btn:hover img {
  transform: scale(1.05);
}

.desktop-downloads {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.desktop-btn img {
  height: 40px;
  width: auto;
  transition: transform var(--transition-normal);
}

.desktop-btn:hover img {
  transform: scale(1.05);
}

/* Hero Image */
.hero-image {
  position: relative;
  text-align: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.floating-card span {
  font-weight: 500;
  font-size: 0.875rem;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -15%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-arrow i {
  font-size: 1.5rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-content {
  padding-right: 2rem;
}

.about-highlights {
  margin-top: 2.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.highlight-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.highlight-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-stats {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  text-align: center;
  min-width: 100px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots-section {
  padding: 6rem 0;
  background: white;
}

.screenshots-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}

.phone-frame {
  flex: 0 0 400px;
  position: relative;
  background: url("../imgs/s8.png") no-repeat center center;
  background-size: contain;
  width: 400px;
  height: 800px;
  margin: 0 auto;
}

.screenshots-carousel {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  bottom: 50px;
  border-radius: 30px;
  overflow: hidden;
}

.screenshot-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInImage 0.6s ease forwards;
}

.screenshot-item img:hover {
  transform: scale(1.02);
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Owl Carousel Dots Styling */
.screenshots-carousel .owl-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  margin: 0;
}

.screenshots-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.screenshots-carousel .owl-dot.active,
.screenshots-carousel .owl-dot:hover {
  background: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.screenshots-carousel .owl-dot span {
  display: none;
}

.screenshots-features {
  flex: 1;
  min-width: 300px;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
}

.feature-highlight:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-light);
}

.feature-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.feature-highlight h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-highlight p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Company Section */
.company-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.company-content {
  padding-right: 2rem;
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.company-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.company-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.company-visual {
  text-align: center;
}

.company-logo-container {
  margin-bottom: 2rem;
}

.company-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-light));
}

.company-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.value-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.value-item span {
  font-weight: 500;
  color: var(--text-dark);
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, var(--text-dark), var(--bg-dark));
  color: white;
  padding: 4rem 0 0;
}

.footer-main {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-download h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-download p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-download-btn img {
  height: 45px;
  width: auto;
  transition: transform var(--transition-normal);
}

.footer-download-btn:hover img {
  transform: scale(1.05);
}

.desktop-download {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.desktop-download-btn img {
  height: 35px;
  width: auto;
  transition: transform var(--transition-normal);
}

.desktop-download-btn:hover img {
  transform: scale(1.05);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-contact a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .floating-card {
    display: none;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .about-stats {
    position: static;
    justify-content: center;
    margin-top: 2rem;
  }

  .screenshots-container {
    flex-direction: column;
    gap: 2rem;
  }

  .phone-frame {
    width: 300px;
    height: 600px;
    flex: none;
  }

  .screenshots-carousel {
    top: 40px;
    left: 15px;
    right: 15px;
    bottom: 40px;
  }

  .carousel-controls {
    bottom: 15px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .company-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .company-stats {
    justify-content: center;
  }

  .company-values {
    align-items: center;
  }

  .footer-download-buttons {
    align-items: center;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .phone-frame {
    width: 250px;
    height: 500px;
  }

  .screenshots-carousel {
    top: 35px;
    left: 12px;
    right: 12px;
    bottom: 35px;
  }

  .carousel-controls {
    bottom: 10px;
    gap: 0.8rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 1rem;
  }

  .company-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Loading and Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}

/* Print Styles */
@media print {
  .modern-nav,
  .scroll-to-top,
  .floating-elements {
    display: none !important;
  }

  .hero-section {
    background: white !important;
    color: black !important;
  }

  .section-title {
    color: black !important;
  }
}
