/* Reset & Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  zoom: 0.9;
}

@-moz-document url-prefix() {
  html {
    zoom: 1;
    transform: scale(0.9);
    transform-origin: top left;
    width: 111.111%;
  }
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Color palette based on new logo */
:root {
  --primary-blue: #0056a6;
  --accent-green: #b2bb1e;
  --primary-black: #222;
  --primary-white: #fff;
  --gray-bg: #f6f8fa;
}

.site-footer {
  margin-top: auto;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--primary-black);
  min-height: 100vh;
  padding-top: 64px;
}
a { color: #0056b3; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  z-index: 1000;
  border-bottom: 1px solid #e5e8ec;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
}
.site-logo {
  height: 40px;
  width: auto;
  margin-right: 0;
  order: unset;
}
.desktop-nav {
  display: flex;
  gap: 2.2rem;
  position: relative;
  z-index: 10;
  justify-content: center;
  flex: 1;
}
/* Remove underline from nav-link active/hover, only color change */
.nav-link {
  color: var(--primary-black);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: none;
  transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
  color: var(--primary-blue);
  border-bottom: none;
}
.nav-link-dropdown {
  cursor: pointer;
  user-select: none;
  position: relative;
}
.nav-dropdown > .nav-link-dropdown::after {
  content: none;
}
.nav-link-dropdown {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.2em 0.5em;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--primary-black);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.nav-link-dropdown:hover, .nav-link-dropdown:focus {
  color: #0056a6;
  border-radius: 6px;
  text-decoration: underline;
}
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 2rem;
}
.lang-btn {
  background: none;
  border: none;
  color: #0056b3;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: #0056b3;
  color: #fff;
}
.lang-switcher.desktop-lang {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  margin-right: 2rem;
  align-items: center;
  order: 2;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 1.5rem;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1999;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 75vw;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.10);
  z-index: 2000;
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  gap: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-nav.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  z-index: 2101;
  cursor: pointer;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  display: block;
}
.mobile-nav .nav-link:last-child {
  border-bottom: none;
}
.mobile-nav .lang-switcher {
  margin-top: 1.5rem;
  gap: 0.7rem;
}

/* Hero Section Modern Layout */
.hero {
  position: relative;
  min-height: 340px;
  width: 100%;
  background: url('images/hero-horse.jpg') center 10%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 4vw;
  box-sizing: border-box;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,40,80,0.55); /* dark blue overlay */
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  display: flex ;
  z-index: 2;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}
.hero-slogan {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-right: 0;
  max-width: 380px;
  text-shadow: 0 2px 12px rgba(20,40,80,0.55), 0 1px 0 #222;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif !important;
  text-align: justify;
}
@media (max-width: 700px) {
  .hero-slogan {
    margin: 0 0 1.2rem 0;
    text-align: justify;
    max-width: 95vw;
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  .hero-content {
    align-items: center;
    margin-right: 0;
  }
}
.hero-overlay-animated {
  max-width: 440px;
  width: 100%;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  animation: heroOverlaySlideIn 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}
@keyframes fadeFloatIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes heroOverlaySlideIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 200px;
    padding: 4vw 2vw;
  }
  .hero-content {
    align-items: center;
    margin-right: 0;
  }
  .hero-overlay-animated {
    max-width: 200px;
  }
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--primary-blue);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.cta-btn:hover {
  background: var(--primary-blue);
}

/* About Section */
.about {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.about-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat {
  font-size: 1.1rem;
  color: var(--primary-blue);
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  min-width: 120px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.stat span {
  display: block;
  font-size: 1.7rem;
  color: var(--accent-green);
  margin-bottom: 0.2rem;
}
.about-text, .about-text p, .about-inner {
  text-align: justify;
}

/* Services Section */
.services {
  background: #f6f8fa;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.services h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}
.services-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 220px;
  max-width: 320px;
}
.service-card h3 {
  color: var(--accent-green);
  margin-top: 0;
  margin-bottom: 0.7rem;
}
.service-card p {
  color: #333;
  font-size: 1rem;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* News Preview Section */
.news-preview {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.news-preview h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}
.news-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.news-item {
  flex: 1 1 260px;
  background: #f6f8fa;
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 1.5rem;
  min-width: 220px;
  max-width: 340px;
  text-align: left;
}
.news-item h4 {
  margin-top: 0;
  color: var(--primary-blue);
  font-size: 1.1rem;
}
.news-date {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.news-item p {
  font-size: 1rem;
  color: #333;
}

/* Contact Preview Section */
.contact-preview {
  /* background: #f6f8fa; */
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.contact-preview h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.contact-preview p {
  font-size: 1.1rem;
  color: #333;
}
.contact-preview a {
  color: var(--accent-green);
  font-weight: 600;
}

/* Contact Form Modern Redesign */
.contact-form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form label {
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid #cfd8dc;
  border-radius: 5px;
  font-size: 1rem;
  background: #f6f8fa;
  color: #222;
  margin-bottom: 0.2rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #0056b3;
  outline: none;
  box-shadow: 0 0 0 2px #e3eafc;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form button {
  background: var(--accent-green);
  color: #fff;
  border: none;
  padding: 1rem 0;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: var(--primary-blue);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 100%;
  }
}

/* Redesigned Footer Layout */
.site-footer {
  background: var(--primary-blue);
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  height: 36px;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .footer-logo {
    margin-bottom: 0.3rem;
  }
}

/* Enquire Now Button Styles */
.enquire-btn {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  margin-left: 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.enquire-btn:hover {
  background: var(--primary-blue);
  color: #fff;
}
.desktop-enquire {
  display: inline-block;
  order: 3;
  margin-left: 0;
  min-width: 130px;
  text-align: center;
}
.mobile-enquire { display: none; margin-top: 1.2rem; margin-left: 0; width: 100%; text-align: center; }
@media (max-width: 768px) {
  .desktop-enquire { display: none !important; }
  .mobile-enquire { display: block; }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .header-inner { padding: 0 0.5rem; }
  .about-stats, .services-list, .news-list { gap: 1rem; }
  .hero-img-full {
    height: 200px;
    max-height: 30vh;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { padding-top: 56px; }
  .header-inner {
    height: 56px;
    justify-content: space-between;
    align-items: center;
  }
  .site-logo { height: 32px; }
  .desktop-nav, .desktop-lang { display: none !important; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .lang-switcher.mobile-lang {
    display: flex;
    justify-content: center;
    margin: 1.2rem auto 0 auto;
    width: 100%;
    gap: 0.7rem;
  }
  .hero-title { font-size: 1.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .about, .services, .news-preview, .contact-preview { padding: 1.2rem 0 0.7rem 0; }
  .about-stats, .services-list, .news-list { flex-direction: column; gap: 0.7rem; }
  .stat, .service-card, .news-item { min-width: unset; max-width: 100%; padding: 1rem 0.7rem; }
  .cta-btn { width: 100%; font-size: 1rem; padding: 1rem 0; }
  .hero {
    margin-top: 0;
  }
} 

/* About Section with Image Flex Layout */
.about-flex-img {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
}
.about-text {
  flex: 2 1 350px;
}
.about-text, .about-text p {
  font-weight: 450;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.about-img {
  flex: 1 1 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 160px;
}
.about-img-mobile { display: none; }
.about-animated {
  opacity: 0;
  transform: translateY(40px);
  animation: aboutSectionFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards;
}
@keyframes aboutSectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-img-animated {
  max-width: 200px !important;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  animation: aboutImgFadeIn 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}
@keyframes aboutImgFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 700px) {
  .about-img-animated {
    max-width: 150px !important;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .about-flex-img {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .about-img {
    display: none;
  }
  .about-img-mobile {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0.7rem 0;
  }
  .about-text {
    text-align: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
@media (min-width: 900px) {
  .about-img-mobile {
    display: none;
  }
  .about-img {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 160px;
    max-width: 220px;
    margin-bottom: 0;
  }
  .about-flex-img {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .about-text {
    flex: 2 1 350px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
} 

/* Contact page left-right layout */
.contact-flex {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  margin: 2rem auto 0 auto;
  flex-wrap: wrap;
}
.contact-info {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,86,166,0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  font-size: 1.13rem;
  color: #222;
  text-align: left;
  margin: 0 auto 2rem auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1.08rem;
  color: #003366;
  margin-bottom: 0.5rem;
}
.contact-info-row:last-child {
  margin-bottom: 0;
}
.contact-info-icon {
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.25em;
  margin-top: 0.1em;
  min-width: 1.5em;
  text-align: center;
  line-height: 1.2;
}
.contact-info-label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-right: 0.5em;
  white-space: nowrap;
  margin-top: 0.2em;
  line-height: 1.2;
}
.contact-info-value {
  color: #222;
  font-weight: 400;
  word-break: break-all;
  justify-content: center;
}
.contact-info-company {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.1rem;
}
.contact-info-row.address .contact-info-value {
  text-align: justify;
  display: block;
}
.contact-form-wrapper {
  flex: 2 1 340px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  /* border: 0.5px solid var(--primary-blue); */
  padding: 2rem 1.5rem;
  background-color: #fff;
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 0 2rem;
  }
  .contact-info {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: justify;
  }
  .contact-form {
    width: 100%;
    max-width: 420px;
    min-width: 0;
  }
  .contact-info-row {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
    margin-bottom: 0.3rem;
  }
  .contact-info-icon {
    display: inline-flex;
    align-items: flex-start;
    font-size: 1.25em;
    margin-top: 0.1em;
    min-width: 1.5em;
    text-align: center;
    line-height: 1.2;
  }
  .contact-info-label {
    white-space: nowrap;
    margin-top: 0.2em;
    line-height: 1.2;
  }
} 

.site-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-left: 0.7rem;
  letter-spacing: 0.01em;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .site-title {
    font-size: 1.1rem;
    margin-left: 0.5rem;
  }
} 

/* Font Family Standardization */
html, body, h1, h2, h3, h4, h5, h6, p, a, span, label, .nav-link, .enquire-btn, .hero-slogan, .dropdown-item, .mobile-link-dropdown, .mobile-dropdown-menu .dropdown-item {
  font-family: 'Poppins', Arial, sans-serif !important;
}
body {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h2 {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
p, li, span, label {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.nav-link, .enquire-btn {
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.03em;
} 

.about-text, .about-text p, .about-text li, .about-text span, .about-text strong {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.97rem !important;
} 

.products-preview {
  background: linear-gradient(120deg, #eaf2fb 0%, #f7f9fa 100%);
  padding: 4rem 0 2.5rem 0;
  text-align: center;
  box-shadow: 0 4px 32px rgba(0,86,166,0.07);
}
.products-preview h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,86,166,0.13);
  border: 1.5px solid #dbeafe;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 210px;
  max-width: 260px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,86,166,0.18);
  transform: translateY(-8px) scale(1.04);
  border: 1.5px solid #0056a6;
}
.product-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  /* margin-bottom: 1rem; */
  border-radius: 14px;
  background: #f7f9fa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.product-card span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0056a6;
  font-size: 1.22rem;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .products-preview {
    padding: 2.5rem 0 1.5rem 0;
  }
  .products-grid {
    gap: 1.2rem;
  }
  .product-card {
    min-width: 140px;
    max-width: 180px;
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .product-card img {
    width: 80px;
    height: 80px;
  }
  .product-card span {
    font-size: 1.05rem;
  }
} 

.products-slider-container {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 3rem;
}
.products-slider {
  width: 85%;
  height: 340px;
  display: flex;
  align-items: center;
  overflow-x: unset;
  scroll-behavior: smooth;
  gap: 1.2rem;
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem;
}
.products-slider::-webkit-scrollbar {
  display: none;
}
.products-slider .product-card {
  flex: 0 0 240px !important;
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important;
  height: 300px !important;
  min-height: 300px !important;
  max-height: 300px !important;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,86,166,0.13);
  border: 1.5px solid #dbeafe;
  padding: 1rem 0.8rem 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.products-slider .product-card:hover {
  box-shadow: 0 8px 32px rgba(0,86,166,0.18);
  transform: translateY(-8px) scale(1.04);
  border: 1.5px solid #0056a6;
  width: 240px !important;
  height: 300px !important;
  z-index: 10;
  position: relative;
}
.products-slider .product-card img {
  width: 200px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  padding: 0.3rem;
  flex-shrink: 0;
}
.products-slider .product-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  word-wrap: break-word;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid rgba(0,86,166,0.2);
  font-size: 1.4em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,86,166,0.12);
  padding: 0;
  margin: 0 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #0056a6;
  font-weight: 600;
}
.slider-arrow:hover {
  background: linear-gradient(135deg, #0056a6, #004a8f);
  color: #fff;
  border-color: #0056a6;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,86,166,0.3);
}
.slider-arrow:active {
  transform: scale(0.95);
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: auto;
  transform: translateX(-20%);
  top: 100%;
  min-width: 210px;
  background: #fff;
  z-index: 100;
  padding: 0.5rem 0;
  margin-top: 0;
}
.nav-dropdown {
  position: relative;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.7em 1.2em;
  color: var(--primary-black);
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
  border: none;
  background: none;
  margin: 0;
}
.dropdown-item + .dropdown-item {
  border-top: 1px solid #eaf2fb;
} 

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-link-dropdown:focus + .dropdown-menu {
  display: flex;
} 

/* Ensure Products dropdown stays open on hover/focus */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex !important;
} 

.dropdown-item:hover, .dropdown-item:focus {
  color: #0056a6;
  text-decoration: underline;
} 

.dropdown-item.active,
.dropdown-item.active:focus,
.dropdown-item.active:hover {
  color: #0056a6;
}
.nav-link-dropdown.active {
  color: #0056a6;
  border-radius: 6px;
}

.mobile-nav-dropdown {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.mobile-link-dropdown {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--primary-black);
  padding: 0.7em 0.5em;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 6px;
}
.mobile-dropdown-arrow {
  font-size: 1.1em;
  margin-left: 0.5em;
  color: #0056a6;
  cursor: pointer;
  user-select: none;
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
  margin-top: 0.1rem;
  width: 100%;
  z-index: 10;
}
.mobile-nav-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-nav-dropdown.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-menu .dropdown-item {
  padding: 0.7em 1.2em;
  color: var(--primary-black);
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-dropdown-menu .dropdown-item:hover, .mobile-dropdown-menu .dropdown-item:focus {
  color: #0056a6;
  background: #eaf2fb;
  text-decoration: underline;
} 

.mobile-link-dropdown.active {
  color: #0056a6;
}
.mobile-dropdown-menu .dropdown-item.active {
  color: #0056a6;
}

.nav-link,
.nav-link-dropdown,
.dropdown-item,
.mobile-link-dropdown,
.mobile-dropdown-menu .dropdown-item,
.enquire-btn {
  font-family: 'Inter', Arial, sans-serif !important;
}

.products-slider-container,
.products-slider {
  overflow: hidden;
}

@media (max-width: 900px) {
  .products-slider-container,
  .products-slider {
    overflow: unset;
  }
  .products-slider {
    overflow-x: auto;
  }
}

/* --- Product Detail Page Styles --- */
.product-main {
  position: relative;
  padding: 1rem 0;
  background: url('images/hero-horse.jpg') center 20%/cover no-repeat fixed;
  z-index: 1;
}

.product-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,40,80,0.55);
  z-index: 0;
  pointer-events: none;
}

.product-detail-container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  background:#fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #0001;
  padding: 3rem 3rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
.product-main-image {
  margin: 0 auto;
}

.product-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
}

.product-subtitle {
  color: #0056a6;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-img {
  max-width: 110px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 1px 6px #0001;
  background: #f6f8fa;
}

.product-samples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.product-samples .sample-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-samples .sample-img {
  display: block;
  margin: 0 auto;
  max-width: 340px;
  border-radius: 8px;
  box-shadow: 0 1px 6px #0001;
}

.sample-block div {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.5rem;
}

#product-features,
#product-publication,
#product-audience {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

#product-features li,
#product-publication li,
#product-audience li {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}

#product-publication, #product-features, #product-readership, #product-audience, #product-circulation, #product-advertising {
  text-align: justify;
}

@media (max-width: 900px) {
  .product-detail-container {
    padding: 1.2rem 0.5rem;
  }
  .product-main-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  .product-samples {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.product-main-two-col {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.product-main-text {
  flex: 2;
  font-size: 1.1rem;
  line-height: 1.7;
}

.product-main-image-col {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-main-image {
  max-width: 240px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0002;
}

.product-info-grid {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1rem;
  padding: 2rem 0;
  /* border-top: 1px solid rgba(0,0,0,0.15); */
  /* border-bottom: 1px solid rgba(0,0,0,0.15); */
  background-color: #fff;
}

.book-cover-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6fa;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px #0001;
  margin-bottom: 3rem;
}

.book-cover-slider img {
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px;
  box-shadow: 0 1px 6px #0001;
}
.book-cover-slider img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px #0002;
}

h3 {
  /* margin-top: 2rem; */
  margin-bottom: 1rem;
}

.book-cover-slider-flex {
  width: 100%;
}

.book-cover-slider-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  height: 240px;
  display: flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 3rem;
}

.book-cover-slider {
  width: 90%;
  height: 280px; /* Increased from 220px to 280px to match image max-height */
  display: flex;
  align-items: center;
  overflow: hidden; /* Allow images to overflow when zoomed */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.book-cover-slider::-webkit-scrollbar {
  display: none;
}

.book-cover-slider img {
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
  position: relative;
}

.book-cover-slider img:hover {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 8px 32px #0003;
}

.book-cover-slider img {
  max-height: 280px;
  max-width: 240px;
  margin: 0 14px;
  object-fit: contain;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.5em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0;
  margin: 0 8px;
}

.big-bullet {
  font-size: 1.2em;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .product-main {
    padding: 0.5rem 0;
    background-position: center 30%;
    background-size: cover;
  }
  .product-detail-container {
    max-width: 100%;
    padding: 0.5rem 0.7rem 1rem 0.7rem;
    border-radius: 0;
    box-shadow: none;
    gap: 1.2rem;
  }
  .product-main-two-col {
    flex-direction: column;
    gap: 1rem;
  }
  .product-main-two-col {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .product-main-two-col table {
    margin-top: 1rem;
    margin-left: 1.2rem;
    margin-right: auto;
    text-align: left;
    justify-content: center;
    display: table;
  }
  .product-main-image {
    max-width: 50vw;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  h1, h2, h3 {
    font-size: 1.3rem;
    padding: 0 0.2rem;
  }
  .book-cover-slider-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: auto;
  }
  .book-cover-slider {
    max-width: 90%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.2rem;
  }
  .book-cover-slider img {
    width: 70vw;
    max-width: 70vw;
    height: auto;
    object-fit: contain;
    margin: 0 8px;
    display: block;
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2em;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-samples {
    gap: 1rem;
    margin-top: 1rem;
  }
  .product-samples .sample-img {
    max-width: 90vw;
  }
}

h1, h2, h3 {
  text-align: center;
}

@media (max-width: 768px) {
  .product-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.product-info-grid ul {
  list-style: disc inside;
  padding-left: 1.2em;
  margin: 0 0 1em 0;
}
.product-info-grid li {
  display: list-item;
}

.product-info-grid > div {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 1200px) {
  .products-slider-container {
    width: 100%;
    padding: 0 0.5rem;
    height: auto;
    margin-top: 1.5rem;
  }
  .products-slider {
    width: 80%;
    height: auto;
    gap: 1.5rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .products-slider .product-card {
    flex: 0 0 180px !important;
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    padding: 1rem 0.8rem 0.8rem 0.8rem;
  }
  .products-slider .product-card img {
    width: 130px;
    height: 160px;
    object-fit: contain;
    padding: 0.3rem;
  }
  .products-slider .product-card span {
    font-size: 0.85rem;
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2em;
    margin: 0 4px;
  }
}

@media (max-width: 900px) {
  .products-slider-container {
    max-width: 100%;
    padding: 0 0.5rem;
    height: auto;
    margin-top: 1.5rem;
  }
  .slider-arrow {
    display: none !important;
  }
  .products-slider {
    width: 100%;
    height: auto;
    gap: 0.5rem;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .products-slider .product-card {
    flex: 0 0 150px !important;
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    padding: 0.8rem 0.6rem 0.6rem 0.6rem;
  }
  .products-slider .product-card img {
    width: 100px;
    height: 140px;
    object-fit: contain;
    padding: 0.2rem;
  }
  .products-slider .product-card span {
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    margin: 0 2px;
    position: static;
    transform: none;
  }
}

.product-main-text, .product-desc {
  text-align: justify;
}

.trackwork-body, .trackwork-cta {
  text-align: justify;
}

.contact-main {
  position: relative;
  padding: 1rem 0;
  background: url('images/hero-horse.jpg') center 20%/cover no-repeat fixed;
  z-index: 1;
}
.contact-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,40,80,0.55);
  z-index: 0;
  pointer-events: none;
}
.contact-content-container {
  position: relative;
  z-index: 2;
  max-width: 70%;
  margin: 0 auto;
  background: rgba(255,255,255,1);
  border-radius: 16px;
  box-shadow: 0 4px 24px #0001;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .contact-main {
    padding: 0.5rem 0;
  }
  .contact-content-container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    padding: 0.7rem 0;
    background: rgba(255,255,255,0.98);
  }
  .contact-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-info,
  .contact-form-wrapper {
    height: auto;
    padding: 1rem;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.25);
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.7rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.7rem 0.5rem;
  }
  .contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 0;
  }
  .contact-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
}

.mobile-nav .nav-link:active,
.mobile-dropdown-menu .dropdown-item:active {
  background: #eaf2fb;
  color: #0056a6;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  order: 0;
}
