/*====================
      RESET & BASE STYLES 
 =====================*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .title-bar {
  width: 60px;
  height: 3px;
  background-color: #f38181;
  margin: 0 auto 30px;
}

/* Specific section adjustments */
.story-sec,
.why-us,
.team,
.practice-areas,
.contact-form {
  padding: 30px 0;
  /* Consistent reduced padding */
}

/* Section Titles */
.section-title {
  margin-bottom: 20px;
  /* Reduced from 30-50px */
}

.title-bar {
  margin: 0 auto 25px;
  /* Reduced bottom margin */
}

/* Team Section */
.lawyer-profile {
  margin-top: 20px;
  /* Reduced from 40px */
}

/* Practice Areas */
.practice-tile {
  padding: 20px;
  /* Reduced from 30px */
}

/* Why Choose Us */
.benefit-item {
  margin-bottom: 20px;
  /* Reduced from 30px */
  padding: 20px;
  /* Reduced from 30px */
}

/*====================
      TYPOGRAPHY
 =====================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #1a3e72;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 15px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


.title-1 {
  font-family: 'Kaushan Script', cursive;
  font-weight: normal;
  color: #1a3e72;
  font-size: 3rem;
  /* Increased from 2rem */
  margin-bottom: 15px;
  text-align: center;
}

.title-2 {
  font-weight: bold;
  color: #333;
  font-size: 2.4rem;
  /* Increased from 1.8rem */
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  /* Increased from 50px */
}

.section-title .title-bar {
  width: 80px;
  /* Increased from 60px */
  height: 10px;
  /* Increased from 3px */
  background-color: #f38181;
  margin: 0 auto 0px;
  /* Center the bar and increase bottom margin */

}

/*====================
      HEADER SECTION
 =====================*/
.top {
  background-image: linear-gradient(to bottom, rgba(26, 62, 114, 0.9), rgba(26, 62, 114, 0.7)), url('../img/law_photo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Navbar Styles */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 60px;
  width: auto;
  transform: scale(1.3);
  /* 1 / 3 = 0.33 to zoom out 3 times */
  transform-origin: top left;
  /* optional: adjust where it scales from */
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #1a3e72;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-link:hover {
  color: #1a3e72;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

.navbar-links.active {
  display: block;
  position: absolute;
  top: 100%;
  background: white;
  width: 100%;
}

/* Hero Section */
.hero-content {
  margin-top: 100px;
}

.title1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/*====================
      SECTIONS
 =====================*/
section {
  padding: 30px 0;
}

story-sec,
.why-us,
.team {
  padding: 40px 0;
  /* Consistent reduced padding */
}

/* Mission Section */
.story-sec {
  background-color: #fff;
}

.story-desc {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Why Choose Us Section */
.why-us {
  background-color: #f8f9fa;
}

.benefits-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.benefits-column {
  flex: 1;
  min-width: 300px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: #1a3e72;
  margin-right: 20px;
  min-width: 50px;
  text-align: center;
}

.work-inner-content h3 {
  color: #1a3e72;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Practice Areas Section */
.practice-areas {
  background-color: #fff;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.practice-tile {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}

.practice-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tile-icon {
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 20px;
  text-align: center;
}

.tile-content h3 {
  color: #1a3e72;
  margin-bottom: 15px;
  font-size: 1.3rem;
  text-align: center;
}

.tile-content p {
  margin-bottom: 15px;
  color: #555;
  text-align: center;
}

.tile-hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
  opacity: 0;
}

.tile-hidden-content.active {
  max-height: 1000px;
  opacity: 1;
  margin-top: 20px;
}

.tile-hidden-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.tile-hidden-content li {
  margin-bottom: 10px;
  color: #555;
}

.read-more-btn {
  background: none;
  border: none;
  color: #1a3e72;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 15px;
  margin-top: 15px;
  display: block;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.read-more-btn:hover {
  background-color: #f0f4f9;
}

.read-more-btn span {
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.read-more-btn.active span {
  transform: rotate(180deg);
}

/* Team Section */
.team {
  background-color: #f8f9fa;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  color: #1a3e72;
  margin-bottom: 20px;
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form {
  background-color: #fff;
  padding: 80px 0;
}

.contact-form .container {
  max-width: 800px;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1a3e72;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 70%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1a3e72;
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: #1a3e72;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.submit-btn:hover {
  background-color: #0d1f3d;
  transform: translateY(-2px);
}

/* FOOTER STYLES */
footer {
  background-color: #0d1f3d;
  color: white;
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-col {
  padding: 20px;
}

.footer-logo {
  font-family: 'Kaushan Script', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.contact-info div {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #f38181;
  margin-top: 20px;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-map {
  padding: 0;
}

.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.footer-hours h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency {
  margin-top: 20px;
  color: #f38181;
  display: flex;
  align-items: center;
}

.emergency i {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f38181;
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding: 20px 0;
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1a3e72;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

#backToTop:hover {
  background-color: #f38181;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

.consultation-form {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.consultation-form p {
  text-align: center;
  margin-bottom: 10px;
}

.consultation-form form {
  max-width: 700px;
  margin: 0 auto;
}

/* Lawyer Profile Section */
.lawyer-profile {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 40px;
}

.lawyer-bio {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.lawyer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 62, 114, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 500;
}

.sidebar-quote {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f38181;
}

blockquote {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.quote-signature {
  font-weight: 600;
  color: #1a3e72;
  text-align: right;
}

/* Image Gallery */
.lawyer-gallery {
  margin: 30px 0;
}

.gallery-main {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnails img.active {
  border-color: #f38181;
}

/* Responsive Design */
@media (max-width: 992px) {
  .lawyer-profile {
    grid-template-columns: 1fr;
  }

  .lawyer-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-image,
  .sidebar-quote {
    flex: 1;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .lawyer-bio {
    padding: 25px;
  }
}



/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-item i {
  color: #1a3e72;
  font-size: 1.5rem;
}

.info-item p {
  margin: 0;
  text-align: left;
}

/* Consultation Button */
.consultation-btn {
  background-color: #1a3e72;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px 0;
}

.consultation-btn:hover {
  background-color: #0d1f3d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.consultation-btn i {
  margin-right: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #f38181;
}

.modal h3 {
  color: #1a3e72;
  margin-bottom: 10px;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

/* Form Styles */
.consultation-form .form-group {
  margin-bottom: 20px;
}

.consultation-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 80%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  transition: border 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: #1a3e72;
  outline: none;
}

.consultation-form textarea {
  min-height: 120px;
  resize: vertical;
}

.error-message {
  color: #f38181;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

input.error,
select.error {
  border-color: #f38181 !important;
}

/* Submit Button */
.submit-btn {
  background-color: #1a3e72;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.submit-btn:hover {
  background-color: #0d1f3d;
}

.submit-btn .loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  right: 30px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Popup */
.success-popup {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.success-popup .popup-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.success-icon {
  color: #4CAF50;
  font-size: 3rem;
  margin-bottom: 20px;
}

.success-popup h3 {
  color: #1a3e72;
  margin-bottom: 15px;
}

.success-popup p {
  color: #555;
  margin-bottom: 10px;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #f38181;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-item {
    width: 100%;
    max-width: 300px;
  }
}

/* About Section with Video */
.story-sec {
  padding: 60px 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  padding-right: 20px;
}

.about-video {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 9;
  /* modern browsers */
  margin: auto;
  flex: 1;
}


.about-video video {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: block;
  display: block;
}

.video-caption {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: #555;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-video {
    max-width: 100%;
    order: -1;
    /* Video first on mobile if preferred */
  }
}

.reviews-section {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.reviews-header {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #333;
}

.reviews-rating i {
  font-size: 1.5rem;
  color: #EA4335;
  margin-right: 8px;
}

.reviews-stars {
  color: #FABB05;
  font-size: 1.2rem;
  margin: 0 10px;
}

.review-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.review-card {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 0 0 300px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.review-profile img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.review-initials {
  background-color: #ccc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.review-stars {
  color: #FABB05;
}

.review-text {
  font-style: italic;
  color: #333;
  margin: 15px 0;
}

.read-full {
  color: #007BFF;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.review-footer {
  font-size: 0.85rem;
  color: #555;
}

.carousel-dots {
  margin-top: 15px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #007BFF;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }


  .nav-menu.active {
    display: flex;
  }

  /* Mobile toggle */
  .hamburger {
    display: none;
    cursor: pointer;
  }

  .hamburger.active .bar {
    background-color: #333;
  }

  .navbar-links {
    display: flex;
  }

  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }

    .navbar-links {
      display: none;
      flex-direction: column;
    }

    .navbar-links.active {
      display: flex;
      position: absolute;
      top: 60px;
      width: 100%;
      background: white;
      z-index: 999;
    }

    body.no-scroll {
      overflow: hidden;
    }
  }

  @media (max-width: 768px) {
    .nav-link {
      display: block;
      padding: 12px 20px;
      width: 100%;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      background-color: #f0f0f0;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
  }

  @import url('mobile.css') screen and (max-width: 768px);