body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f0f4f8; /* Light clean background */
  color: #333333;
  
}

  html {
  scroll-behavior: smooth;
}

/* ========== Navbar Styles ========== */


  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  color: #333333;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #ff6f61;
  animation: slideInLeft 1s ease-out;
  height:50px;
  width: auto; /* Maintain aspect ratio */
  display: block;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6f61;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff6f61;
}

/* ========== Hamburger (Mobile Nav) ========== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ff6f61;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* ========== Hero Section ========== */
 
 
 .hero {
  padding: 30px 20px;
  background: linear-gradient(to right, #f1fff5, #fff0f0);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: #1a1a1a;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.hero h1 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 50px;
  position: relative;
}

.hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #25D366;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Flex layout */
.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Partition (only on large screens) */
.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ddd;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-left,
.hero-right {
  flex: 1 1 500px;
  z-index: 2; /* Above the partition */
  padding: 0 20px;
}

/* Left Side */
.hero-left p:first-of-type {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e8f53; /* greenish tone */
  margin-bottom: 10px;
}

.hero-left p:nth-of-type(2) {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.hero-left ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.hero-left li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #333;
}

.hero-left li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #25D366;
  font-weight: bold;
}

/* Right Side */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 60px;
  width: 240px;
  text-align: center;
  line-height: 60px; /* vertically center text */
  margin: 0 auto;
  display: block; /* change to block to allow margin auto to center */

}

.whatsapp-button:hover {
  background-color: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Decorative Box */
.decorative-box {
  background: #f8f8f8;
  border-left: 6px solid #25D366;
  padding: 22px 24px;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.decorative-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-content::before {
    display: none; /* Hide partition on small screens */
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    text-align: center;
    padding: 0;
  }

  .hero-left ul {
    padding-left: 0;
  }

  .hero-left li {
    text-align: left;
    padding-left: 30px;
  }

  .hero-right {
    align-items: center;
  }

  .decorative-box {
    text-align: center;
  }
}
.hero p {
  color: #333 !important;
}


  

.hero-left ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .hero-left {
    text-align: center;
  }

  .hero-left ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }
}

/* ========== Animations ========== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Section Titles ========== */
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-top: 3rem;
  color: #333;
}

/* ========== Category Section ========== */
  

    .category-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #e7f1ff;
    }

    .category-section h2 {
      font-size: 2.8rem;
      color: #003366;
      margin-bottom: 40px;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .category-card {
      background: white;
      border-radius: 16px;
      padding: 30px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      border-top: 5px solid #007bff;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .category-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    .category-card h3 {
      font-size: 1.4rem;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .category-card p {
      color: #555;
      font-size: 0.95rem;
    }

    /* Unique border and title colors per category */
    .saddlery { border-top-color: #d7263d; }
    .saddlery h3 { color: #d7263d; }

    .pets { border-top-color: #2e8b57; }
    .pets h3 { color: #2e8b57; }

    .belts { border-top-color: #ff8c00; }
    .belts h3 { color: #ff8c00; }

    .bags { border-top-color: #1e90ff; }
    .bags h3 { color: #1e90ff; }

    @media (max-width: 600px) {
      .category-section h2 {
        font-size: 2rem;
      }
    }

 a {text-decoration: none;}
 
 
 .whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

/* Toggle Section Container */
.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

/* Toggle Button Base Style */
.toggle-buttons button {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: linear-gradient(to right, #e0e0e0, #f5f5f5);
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

/* Hover Effect */
.toggle-buttons button:hover {
  background: linear-gradient(to right, #d6d6d6, #ebebeb);
  transform: translateY(-2px);
}

/* Active Button */
.toggle-buttons button.active {
  background: linear-gradient(to right, #ff0000, #00ff00);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
  transform: scale(1.05);
}


.about-modern {
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  background: #fdfdfd;
  padding: 4rem 0;
}


.about-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 2rem; /* this gives side breathing room */
}


.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom:40px;
}

.about-left {
  flex: 1 1 45%;
}

.about-left h2 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-left h2 span {
  color: #007bff;
}

.about-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

.about-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-right {
    align-items: center;
  }

  .about-right .info-box {
    width: 100%;
    max-width: 500px;
  }
}



.info-box {
  background: #ffffff;
  border-left: 5px solid #007bff;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
}

.info-box h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #007bff;
}

.info-box p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.info-box a {
  color: #ff6600;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }
}

.about-left {
  flex: 1 1 45%;
  padding-left: 2rem; /* 👈 Adjust this as needed */
}

.focus-section {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f5f7fa, #e4ecf2);
  color: #333;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.focus-title {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2.5rem;
  color: #007bff;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.focus-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.focus-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #007bff;
}

.focus-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.logo-img {
  height: 60px;
  width: auto;
  animation: slideInLeft 1s ease-out;
}






.custom-carousel {
  padding: 3rem 1rem;
  background: #f9f9f9;
  overflow-x: auto;
}

.carousel-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.carousel-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.carousel-card {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-card p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #007bff;
  font-weight: 600;
}

.carousel-card:hover {
  transform: scale(1.05);
  border-color: #007bff;
}





.contact-section {
  background: linear-gradient(to right, #f9f9f9, #eaf4fb);
  padding: 4rem 2rem;
  font-family: 'Roboto', sans-serif;
}

.contact-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-box {
  background: #fff;
  border-left: 5px solid #007bff;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-4px);
}

.contact-box h4 {
  margin: 0 0 0.5rem;
  color: #007bff;
  font-size: 1.2rem;
}

.contact-box a, .contact-box p {
  font-size: 1rem;
  color: #444;
  text-decoration: none;
}

.contact-box a:hover {
  color: #ff6600;
}

.contact-form {
  flex: 1 1 55%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


.image-slider {
  overflow: hidden;
  padding: 30px 0;
  background: #fdfdfd;
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
}

.slider-track img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.image-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding: 30px 0;
  background: #fafafa;
}

.scroll-container {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding: 10px 20px;
}

.scroll-container img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}






/* Contact Section Styles */
.contact-section {
  background: #f0f4f8;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

/* Contact Info on the Left */
.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-card .icon {
  font-size: 30px;
  color: #007bff;
}

.contact-card .info h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #333;
}

.contact-card .info p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

.contact-card .info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-card .info a:hover {
  text-decoration: underline;
}


/* Enquiry Form on the Right */
.contact-form {
  flex: 1;
  min-width: 300px;
  padding-left: 30px;
}

.contact-form h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 25px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fafafa;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #007bff;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-info,
  .contact-form {
    padding: 0;
    border: none;
  }

  .contact-form {
    margin-top: 40px;
  }
}






.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container > div {
  flex: 1 1 250px;
}

.site-footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.site-footer p, .site-footer a {
  font-size: 14px;
  color: #bdc3c7;
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #445b6d;
  font-size: 13px;
  color: #95a5a6;
}



 .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .popup-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
  }

  @keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  .popup-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #333;
  }

  .popup-content input {
    width: 100%;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }

  .popup-content button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .popup-content button:hover {
    background: #0056b3;
  }

  .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
  }

  .close-btn:hover {
    color: #000;
  }
 
 
/* Modal background overlay */
/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal content box */
.modal-content {
  position: relative;
  margin: 5vh auto;
  padding: 40px;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  background: linear-gradient(to bottom right, #ffffff, #f8f8f8);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: slideUp 0.4s ease;
}

/* Close icon */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: #000;
}

/* Typography */
.modal-content h2 {
  margin-top: 0;
  font-size: 28px;
  color: #2c3e50;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.modal-content h3 {
  color: #34495e;
  margin-top: 20px;
}

.modal-content p, 
.modal-content li {
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

.modal-content ul {
  padding-left: 20px;
}

/* Scrollbar styling (optional) */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .modal-content {
    width: 85%;
    height: 80vh;
    padding: 25px;
  }
}
