* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  background: #f6f7f8;
  color: #333;
}

/* ================= HEADER ================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

/* Top Links Bar */
.top-links {
  background: #003b6f;
  color: #fff;
  font-size: 14px;
}

.top-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.top-links a:hover {
  text-decoration: underline;
}

.welcome-msg {
  margin-bottom: 5px;
  font-weight: 600;
}

/* Social Icons */
.top-social-links ul {
  list-style: none;
}

.top-social-links li {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.top-social-links a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Main Header */
.header {
  background: #ffffff;
}

.logo img {
  max-height: 70px;
}

.top-right-panel {
  gap: 20px;
}

/* Search */
.mini-search input {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  width: 250px;
}

.search-button {
  background: #003b6f;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
}

.search-button i {
  width: 18px; color: #fff;
}

/* Cart */
.cart-box {
  font-weight: 600;
  color: #003b6f;
}

.noitem {
  font-size: 12px;
  color: #999;
}

.main-navigation {
  background: #003b6f;
  position: relative;
  z-index: 1000;
}

.main-navigation .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none; margin: 0;
}

.main-navigation .menu > li {
  position: relative;
}

.main-navigation .menu > li > a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.main-navigation .menu > li > a:hover {
  background: #0059a6;
}

/* Dropdown */
.main-navigation .menu > li > div {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 800px;
  padding: 20px;
  display: none;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Show on hover */
.main-navigation .menu > li:hover > div {
  display: block;
}

/* Mega menu grid */
.main-navigation li div > div > div > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Links */
.main-navigation ul ul li a {
  color: #003b6f;
  padding: 6px 0;
  display: block;
  font-size: 14px;
  text-decoration: none;
}

.main-navigation ul ul li a:hover {
  color: #e74c3c;
}

.payment-icons{ margin:0; padding:0 }
.payment-icons li i {
  font-size: 20px;
  color: #fff;
  transition: 0.3s ease;
}

.payment-icons li i:hover {
  color: #0059a6;
  transform: scale(1.1);
}

/* ================= MAIN CONTENT ================= */

main {
  padding: 0 0 0px 0;
}

/* ================= FOOTER ================= */

footer {
  background: #002b52;
  color: #fff;
  padding: 0px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ================= HOME SLIDER ================= */

.home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-item {
  position: relative;
}

.slider-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Overlay 
.slider-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 59, 111, 0.6);
}
*/
/* Content */
.slider-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.slider-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.slider-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.slider-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e74c3c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: #c0392b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .slider-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .slider-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .slider-item img {
    height: 400px;
  }

  .slider-content h1 {
    font-size: 28px;
  }

  .slider-content p {
    font-size: 16px;
  }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .main-navigation .menu {
    flex-direction: column;
  }

  .main-navigation .menu > li > a {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .main-navigation li div {
    position: static;
    min-width: 100%;
    box-shadow: none;
  }

  .main-navigation li div > div > div > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-search input {
    width: 180px;
  }
}

@media (max-width: 576px) {

  .main-navigation li div > div > div > ul {
    grid-template-columns: 1fr;
  }

  .mini-search input {
    width: 100%;
  }
}


/* ================= HOME SERVICES ================= */

.home-services {
  background: #f6f7f8;
}

.service-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003b6f;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.service-box a {
  color: #e74c3c;
  font-weight: 600;
  text-decoration: none;
}

.service-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
  .service-icon {
    font-size: 40px;
  }
}
/* ================= PRODUCT LIST (NO SLIDER) ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
      margin-bottom: 60px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.product-card img {
  max-width: 100%;
  height: auto;
}

.new-label {
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #003b6f;
}

/* ================= HOME CONTENT / ABOUT ================= */

.home-contet-panel-1 {
  background: #003b6f;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.home-contet-panel-1-inner span {
  font-size: 22px;
  font-weight: 700;
}

.home-contet-panel-1-inner a {
  color: #ffdd57;
  font-weight: 600;
  text-decoration: none;
}

.home-contet-panel-1-inner a:hover {
  text-decoration: underline;
}

/* About Section */

.abtcontent {
  background: #ffffff;
  padding: 60px 0;
}

.abtcontent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.abtcontent-inner h1 {
  font-size: 32px;
  font-weight: 700;
  color: #003b6f;
  margin-bottom: 20px;
}

.abtcontent-inner p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.abtcontent-inner p span {
  font-weight: 700;
  color: #333;
}

/* Read More Button */

.read-1 a {
  display: inline-block;
  padding: 10px 20px;
  background: #003b6f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.read-1 a:hover {
  background: #0059a6;
}

/* Two Boxes */

.aboutbtncontent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.aboutbtncontent img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    max-height: 400px;
    object-fit: cover;
}

.aboutbtncontent h2 {
  font-size: 22px;
  font-weight: 700;
  color: #003b6f;
  margin-bottom: 10px;
}

.aboutbtncontent p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .aboutbtncontent {
    grid-template-columns: 1fr;
  }

  .abtcontent-inner h1 {
    font-size: 26px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #002b52;
  color: #fff;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Top Info Bar */
.footer-1-panel {
  background: #003b6f;
  padding: 20px 0;
}

.footer-top-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.footer-top-info span {
  font-weight: 700;
}

/* Main Footer */
.footer-main {
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Newsletter + Social */
.newsletter-1 {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.newsletter-1 input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 4px;
  border: none;
}

.subscribe {
  background: #e74c3c;
  border: none;
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
  border-radius: 4px;
}

/* Footer Links */
.footer-links {
  background: #001f3d;
  padding: 50px 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

/* Bottom Footer */
.footer-bottom {
  background: #00172d;
  padding: 20px 0;
}

.footer-bottom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.payment-icons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-info {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-grid {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.nhs-bar h1{ font-size:32px; margin:0 0 20px; color:#003b6f; font-weight:700;  }
.content-details h2{font-size: 24px;font-weight: 700;margin: 0 0 10px;  color:#003b6f; }
.content-details h3{font-size: 18px;font-weight: 600;margin: 0 0 10px; color:#000;}
.content-details p{margin-bottom:20px;}


