/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  overflow-x: hidden;
  padding-top: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
}

/* Top Bar styles */
.prm-top-bar {
  background-color: #10a5c8;
  color: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

.prm-contact-info {
  display: flex;
  align-items: center;
  gap: 20px; /* Add spacing between contact elements */
}

.prm-contact-info i {
  margin-right: 5px;
}

.prm-contact-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 15px; /* Additional spacing between contact links */
}

.prm-contact-link:last-child {
  margin-right: 0; /* Remove margin from last item */
}

.prm-contact-link i {
  margin-right: 6px;
  font-size: 16px;
}

.prm-social-icons {
  display: flex;
  align-items: center;
}

.prm-follow-text {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
}

.prm-social-icons a {
  color: #0057FF;
  margin-left: 10px;
  text-decoration: none;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.prm-social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive design - Mobile optimization */
@media (max-width: 768px) {
  .prm-top-bar {
    padding: 8px 4%;
    align-items: center;
    flex-direction: row; /* Ensure it stays as row on mobile */
    justify-content: space-between; /* Keep items at opposite ends */
  }
  
  .prm-contact-info {
    /* Keep display flex but hide specific elements */
    display: flex;
    align-items: center;
    gap: 0;
  }
  
  /* Only show phone number in mobile view */
  .prm-contact-info a:not([href^="tel"]) {
    display: none; /* Hide email */
  }
  
  /* Keep phone number visible */
  .prm-contact-info a[href^="tel"] {
    display: flex;
    margin-right: 0;
  }
  
  .prm-follow-text {
    display: none;
  }
  
  .prm-social-icons {
    gap: 8px;
  }
  
  .prm-social-icons a {
    width: 22px;
    height: 22px;
    font-size: 12px;
    margin-left: 5px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .prm-top-bar {
    padding: 6px 3%;
  }
  
  .prm-contact-link span {
    font-size: 13px;
  }
  
  .prm-social-icons a {
    width: 20px;
    height: 20px;
    font-size: 11px;
    margin-left: 4px;
  }
}
/* Main Header styles */
.prm-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  height: 80px;
  box-sizing: border-box;
}

/* Logo styles */
.prm-logo {
  display: flex;
  align-items: center;
  height: 80%;
  overflow: visible;
}

.prm-logo img {
  height: 150%;
  width: auto;
  max-height: 70px;
  object-fit: contain;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.prm-logo img:hover {
  transform: scale(1.2);
}

.prm-brand-name {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

/* Navigation Menu styles */
.prm-nav-menu {
  display: flex;
  list-style: none;
}

.prm-nav-menu li {
  position: relative;
  margin: 0 15px;
}

.prm-nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 10px 0;
  display: block;
}

.prm-nav-menu a:hover {
  color: #0057FF;
}

.prm-dropdown::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Dropdown styles */
.prm-dropdown-container {
  position: relative;
}

.prm-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.prm-dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.prm-dropdown-content a:hover {
  background-color: #f8f8f8;
  color: #0057FF;
}

.prm-dropdown-container:hover .prm-dropdown-content {
  display: block;
}

/* Utility Navigation styles */
.prm-utility-nav {
  display: flex;
  align-items: center;
}

.prm-search-icon {
  margin-right: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.prm-search-icon:hover {
  color: #0057FF;
}

.prm-cart-icon {
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}

.prm-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #0057FF;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.prm-cta-button {
  background-color: #0057FF;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 87, 255, 0.3);
}

.prm-cta-button:hover {
  background-color: #0048d5;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 87, 255, 0.4);
}

/* Hamburger Menu styles */
.prm-hamburger-menu {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 210;
}

.prm-hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.prm-hamburger-menu span:nth-child(1) {
  top: 0px;
}

.prm-hamburger-menu span:nth-child(2) {
  top: 8px;
}

.prm-hamburger-menu span:nth-child(3) {
  top: 16px;
}

.prm-hamburger-menu.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.prm-hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.prm-hamburger-menu.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Hero Section styles */
.prm-hero-image-container {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.prm-hero-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.prm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.prm-hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Breadcrumb styles */
.prm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.prm-breadcrumb i {
  font-size: 1.2rem;
}

.prm-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.prm-breadcrumb a:hover {
  color: #02b7d5;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item i {
  margin-right: 0.3rem;
}

/* Search Modal styles */
.prm-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.prm-search-modal.active {
  opacity: 1;
  visibility: visible;
}

.prm-search-form {
  width: 80%;
  max-width: 600px;
  position: relative;
}

.prm-search-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.prm-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.prm-search-button {
  position: absolute;
  right: 20px;
  top: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.prm-close-search {
  position: absolute;
  top: 40px;
  right: 40px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prm-close-search:hover {
  transform: rotate(90deg);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0a2e, #02b7d5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 183, 213, 0.3);
}

/* Media Queries for Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
  .prm-cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .prm-hero-image-container {
    height: 45vh;
  }
  
  body {
    padding-top: 70px;
  }
  
  .prm-logo img {
    height: 145%;
    max-height: 58px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .prm-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: auto;
    padding: 10px 5%;
  }
  
  .prm-main-header {
    top: 40px;
    justify-content: space-between;
    padding: 15px 5%;
    height: 80px;
  }
  
  .prm-logo {
    position: relative;
    left: 0;
    transform: none;
    z-index: 1;
    height: 80%;
  }
  
  .prm-logo img {
    height: 160%;
    max-height: 65px;
  }
  
  body {
    padding-top: 120px;
  }
  
  .prm-hamburger-menu {
    display: block;
    position: relative;
    z-index: 210;
    margin-left: 15px;
  }
  
  .prm-nav {
    position: static;
  }
  
  .prm-nav-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 120px;
    right: -300px;
    width: 250px;
    height: calc(100vh - 120px);
    background-color: white;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  
  .prm-nav-menu.active {
    right: 0;
  }
  
  .prm-nav-menu li {
    margin: 15px 0;
    width: 100%;
  }
  
  .prm-nav-menu a {
    padding: 10px 0;
    display: block;
    width: 100%;
  }
  
  .prm-utility-nav .prm-cta-button {
    display: none;
  }
  
  .prm-dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f8f8f8;
    display: none;
    margin-top: 10px;
    border-radius: 4px;
  }
  
  .prm-dropdown-content.active {
    display: block;
  }
  
  .prm-mobile-arrow {
    float: right;
    transition: transform 0.3s ease;
  }
  
  .prm-mobile-arrow.active {
    transform: rotate(180deg);
  }
  
  .prm-hero-overlay h1 {
    font-size: 2.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .prm-top-bar {
    padding: 10px 4%;
    height: 50px;
  }
  
  .prm-contact-info {
    font-size: 14px;
  }
  
  .prm-follow-text {
    font-size: 14px;
  }
  
  .prm-main-header {
    top: 50px;
    height: 80px;
    padding: 10px 4%;
  }
  
  .prm-logo img {
    height: 150%;
    max-height: 50px;
  }
  
  .prm-brand-name {
    font-size: 20px;
  }
  
  body {
    padding-top: 130px;
  }
  
  .prm-utility-nav {
    display: flex;
    align-items: center;
  }
  
  .prm-search-icon,
  .prm-cart-icon {
    font-size: 20px;
    margin-right: 15px;
  }
  
  .prm-cart-count {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  
  .prm-hero-overlay h1 {
    font-size: 2rem;
  }
  
  .prm-breadcrumb {
    font-size: 0.9rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
}


