<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* === HEADER === */
.header {
  background: #0a1d46;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: fixed;
width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

}
.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}


}

.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}



.top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.language-switcher {
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}
.menu-toggle {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* === TOP TRANSPARENT NAVBAR === */
.navbar {
  background: rgba(10, 29, 70, 0.85); /* Dark blue, but a little transparent */
  color: white;
  padding: 1.2rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(128,128,128,0.2) /* Light gray shadow */
}



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

.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto; /* Push nav-links to far right */
}

.nav-links li {
  position: relative;
}

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

.nav-links li a:hover {
  color: #4b4b7c; /* Light blue on hover */
}

/* === DROPDOWN MENU === */
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(10, 29, 70, 0.95);
  top: 100%;
  right: 0;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  min-width: 180px;
  text-align: left;
}

.dropdown-menu li {
  margin: 0.5rem 0;
}

.dropdown-menu li a {
  color: white;
  font-size: 0.95rem;
  font-weight: normal;
}

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

/* Mobile Responsive (optional) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}



/* === HERO SECTION === */
.hero-code {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* Align content to the left */
  padding: 0 5%;
  color: white;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0,0,0,0.4), rgba(0,0,0,0)),
              url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}


.hero-text {
  max-width: 500px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.button.glow-on-hover {
  background: white;
  color: #0a1d46;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
  box-shadow: 0 0 0 transparent;
}
.button.glow-on-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ffffffc7, 0 0 20px #fff;
}

/* === CAROUSEL SHARED === */
.home-services {
  background: #f9fbfd;
  padding: 4rem 2rem;
  text-align: center;
}


.home-services,
.offers-slider {
  overflow: visible; /* Prevent clipping from parent */
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  z-index: 1;
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(0.85);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  width: 340px;
  height: 500px;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.8s ease-in-out;
  opacity: 0.6;
  text-align: center;
}

/* Make the entire card clickable */
.carousel-card {
  cursor: pointer;
}

.carousel-card {
  cursor: pointer; /* Shows the hand cursor */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card {
  transition: transform 1.5s ease-in-out, box-shadow 0.5s ease;
}

.carousel-card.hover-expand {
  transform: translateX(-50%) scale(1.25) !important;
  transform-origin: center center; /* Ensures it grows evenly */
  z-index: 5;
}




.carousel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.carousel-card:hover {
  box-shadow: 0 0 15px rgba(10, 29, 70, 0.3);
}

.learn-more-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: #0a1d46;
  opacity: 0.7;
}
.carousel-card:hover .learn-more-text {
  opacity: 1;
  text-decoration: underline;
}

.carousel-card.active {
  transform: translateX(-50%) scale(1.1);
  opacity: 1;
  z-index: 3;
}

.carousel-card.next {
  transform: translateX(60%) scale(0.95); /* reduced from 180% */
  z-index: 2;
}


.carousel-card.prev {
  transform: translateX(-160%) scale(0.95);
  z-index: 2;
}



.carousel-card .icon {
  font-size: 2.8rem; /* Increased from 2rem */
  color: #0a1d46;
  margin-bottom: 1rem;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px; /* matches the cardâ€™s rounded corners */
}


/* === SECTIONS === */
.home-services,
.offers-slider {
  background: #f9fbfd;
  padding: 4rem 2rem;
  text-align: center;
}
.home-services h2,
.offers-slider h2 {
  font-size: 2rem;
  color: #0a1d46;
  margin-bottom: 2.5rem;
}


/* === FOOTER === */
footer {
  background: #0a1d46;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .carousel-card {
    position: relative;
    transform: scale(1) !important;
    opacity: 1 !important;
    width: 85%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  .carousel {
    flex-direction: column;
    height: auto;
  }
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center; /* &lt;-- This line centers the cards */
}

.specs {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #555;
}
.specs li {
  margin-bottom: 0.3rem;
}

/* Place in styles.css */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-image {
  width: 800px; /* You can change this number */
  max-width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.modal .close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}




.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  border-radius: 5px;
}

.close-button {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.carousel-card .card-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}

.card-overlay {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4); /* darker overlay for contrast */
  text-align: center;
}

.card-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(10, 29, 70, 0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  backdrop-filter: blur(3px);
}

.carousel-card.hover-expand .card-title {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-shadow: none;
  box-shadow: none;
  background: none;
}

.carousel-card.hover-expand .card-overlay {
  background: transparent;
}


.carousel-card {
  position: absolute;
  /* ...existing styles... */
  animation: none;
}

/* === MOBILE ENHANCEMENTS === */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
    margin-top: 5rem;
  }

  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
  }

  .carousel-card {
    flex: 0 0 90%;
    margin: 0 5%;
    scroll-snap-align: center;
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .button.glow-on-hover {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .sidebar {
    display: none;
  }

  .top-right {
    gap: 0.5rem;
  }

  .header {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .carousel {
    scroll-behavior: smooth;
  }
}

/* === BIG FOOTER UPGRADED === */
.big-footer {
  background: #0a1d46;
  color: white;
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-column p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: white;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.payment-logos img {
  width: 60px;
  height: auto;
  background: white;
  padding: 6px;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  opacity: 0.6;
}


.footer-logo-center {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-center img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-container.horizontal-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.center-column {
  text-align: center;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* === SPLIT CARDS SECTION FINAL === */
.split-cards-section {
  background: #f9fbfd;
  padding: 6rem 2rem;
}

.cards-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.expandable-card {
  background: white;
  border-radius: 16px;
  width: 480px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.expandable-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}


.card-header {
  padding: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0a1d46;
}

.card-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.expandable-card.open .card-body {
  max-height: 600px;
  padding: 2rem;
  visibility: visible;
  opacity: 1;
}

.card-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.card-list.ordered li {
  list-style: decimal inside;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .expandable-card {
    width: 100%;
    max-width: 500px;
  }
}

/* === WHY CHOOSE US GRID === */
.choose-us-section {
  background: #f9fbfd;
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  color: #0a1d46;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-box {
  background: #f1f1f1; /* light modern gray */
  color: #0a1d46; /* dark blue text for better contrast */
  padding: 2rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 220px;
}

.choose-box.active {
  background: #0a1d46; /* dark blue */
  color: white;
}

.choose-box.active .box-content strong,
.choose-box.active .box-content p {
  color: white;
}


.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.box-number {
  font-size: 1.2rem;
  font-weight: bold;
  background: black;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.box-content strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.choose-box.active {
  background: #0a1d46; /* Dark blue when active */
}


/* === HERO BUTTONS === */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: white;
  color: #0a1d46;
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid #0a1d46;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn:hover {
  background: #0a1d46;
  color: white;
}

.hero-btn.primary {
  background: #0a1d46;
  color: white;
}

.hero-btn.primary:hover {
  background: #092140;
}
html {
  scroll-behavior: smooth;
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}


/* === Custom Website Section === */
.custom-website-section {
  background-color: #f4f9fd;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.custom-website-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.left-col {
  max-width: 600px;
}

.section-title {
  color: #0a1d46;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.features-list li {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.cta-btn {
  background-color: #0a1d46;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #244ca3;
}

.right-col img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

/* === Services Section === */
.services-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #0a1d46;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === Portfolio Section === */
.portfolio-section {
  background-color: #f4f9fd;
  padding: 4rem 2rem;
}

.portfolio-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.portfolio-item p {
  text-align: center;
  color: #0a1d46;
  margin-top: 0.5rem;
}

/* === Call to Action Section === */
.cta-section {
  background-color: #0a1d46;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: #244ca3;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #0a1d46;
}

/* === Footer === */
.footer {
  background-color: #0a1d46;
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
}

/* === Custom Website Section === */
.custom-website-section {
  background-color: #f4f9fd;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.custom-website-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.left-col {
  max-width: 600px;
}

.section-title {
  color: #0a1d46;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.steps-list {
  margin-bottom: 2rem;
}

.step {
  margin-bottom: 1.5rem;
}

.step-number {
  font-weight: bold;
  color: #0a1d46;
}

.step h3 {
  margin: 0.5rem 0;
  color: #0a1d46;
}

.step-description {
  font-size: 1rem;
  color: #555;
}

.cta-btn {
  background-color: #0a1d46;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #244ca3;
}

.right-col img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

/* === Full-width image styling === */
.full-width-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .custom-website-content {
    flex-direction: column;
    text-align: center;
  }

  .left-col {
    max-width: 100%;
  }

  .right-col {
    margin-top: 2rem;
  }

  .cta-btn {
    width: 100%;
    font-size: 1rem;
  }
}


.start-project-section {
  background-color: #f4f9fd;
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  color: #0a1d46;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: #0a1d46;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #244ca3;
}

html {
  scroll-behavior: smooth;
}

&lt;style&gt;
  .chat-form {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  .chat-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  .chat-form input {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  .chat-form button {
    margin-top: 2rem;
    background-color: #0a1d46;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
  }
&lt;/style&gt;


/* Navbar container */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(128,128,128,0.2);
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

/* Logo image */
.logo img {
  height: 40px;
  display: block;
  object-fit: contain;
}


/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
}

.nav-links li a:hover {
  color: #4b8bff;
}


.nav-links li a:hover {
  color: #007BFF;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  margin-top: 5px;
  box-shadow: 0 4px 8px rgba(128, 128, 128, 0.3); /* Light gray shadow */
}

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

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #333;
}
</pre></body></html>