:root {
  --primary-color: #f79b72;
  --text-color: #00809D;
  --bg-color: #dddddd;
  --bg-color-2: #eeeeee;
  --color-1: #A7C1A8;
  --font-1: "Montserrat", sans-serif;
  --font-2: "Inter", sans-serif;
}

/* header section----------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-optical-sizing: auto;
  font-style: normal;
  padding: 0;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding: 10px 20px;
}

.mob-email,
.social-media {
  display: flex;
  gap: 15px;
}

.logo img {
  width: 70px;
  padding: 5px;
}

.menubar {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 100;
}

.menu-icon {
  display: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 40px;
}

.menubar ul {
  display: flex;
  list-style-type: none;
}

.menubar li {
  margin-top: -9px;
}

.menubar ul li a {
  font-family: var(--font-1);
  color: var(--text-color);
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 10px;
  margin: 0 10px;
  position: relative;
  transition: all 0.5s;
  animation: navbarMoving;
  animation-duration: 3s;
}

.menubar ul li a:hover {
  color: var(--bg-color);
  background-color: var(--text-color);
}

.menubar ul li a.active {
  background-color: var(--text-color);
  color: var(--bg-color-2);
  border-radius: 2px;
}

@media (max-width:850px) {

  .menubar ul {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    text-align: center;
    background-color: var(--bg-color);
    overflow: hidden;
  }

  .menubar ul li {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .menu-icon {
    display: block;
  }

  #menu-list {
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 100;
    padding: 0;
  }
}


@media (max-width:600px) {
  .carousel-inner {
    height: 300px !important;
  }

  .banner-image {
    height: 300px !important;
  }
}

.heroBannerTitle {
  font-size: 1.5rem !important;
  margin-top: -9rem !important;
}

.lead {
  font-size: 0.9rem !important;
  display: none;
}

@media (min-width:600px) {
  .heroBannerTitle {
    font-size: 3rem !important;
    margin-top: 0 !important;
  }

  .lead {
    display: block;
  }
}



/* ------------------home feature section----------------- */
.feature-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.471);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  text-align: center;
}

.feature-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(135deg, var(--text-color), #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-bottom: 5px;
}

.underline {
  background-color: var(--text-color);
  height: 1px;
  margin-bottom: 20px;
}

.header-left {
  font-family: var(--font-1);
}

.feature-desc {
  font-family: var(--font-1);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  display: flex;
  justify-content: space-between;
  background-color: #03A6A1;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: var(--color-1);
}

.featured-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.featured-img>img {
  width: auto;
  height: 5rem;
}

.feature-card:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.feature-card h3 {
  font-family: var(--font-2);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.feature-card h3:hover {
  color: var(--text-color);
}

.feature-card p {
  margin-bottom: 20px;
  text-align: center;
}

.feature-card p:hover {
  color: var(--text-color);
}

@media (min-width:600px) {
  .feature-card {
    display: flex;
    flex-direction: column;
  }
}


@keyframes navbarMoving {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes moving {
  0% {
    transform: translateY(50px);
    opacity: 0.1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* quality section */

.quality-home-section {
  width: 100%;
  overflow: hidden;
}

.quality-home-section-header {
  background: white;
  color: #00809D;
  text-align: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quality-home-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-color), #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-bottom: 5px;
}

.quality-home-section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}

.quality-home-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 500px;
}

.quality-home-image-section {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.quality-home-doctor-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  transition: transform 0.3s ease;
}

.quality-home-doctor-image:hover {
  transform: scale(1.05);
}

.quality-home-content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.quality-home-main-heading {
  font-size: 1.8rem;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.3;
}

.quality-home-sub-heading {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
}

.quality-home-list {
  list-style: none;
  padding: 0;
}

.quality-home-item {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.quality-home-item:hover {
  background: #f8f8f8;
}

.quality-home-icon {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 20px;
}

.quality-home-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 150px;
  padding: 1rem;
  color: white;
  background: var(--text-color);
  border-radius: 0px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quality-home-content-wrapper {
    grid-template-columns: 1fr;
  }

  .quality-home-section-title {
    font-size: 1.8rem;
  }

  .quality-home-main-heading {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  @media (min-width: 769px) {
    .quality-home-doctor-image {
      height: 1000px;
      width: 1000px;
    }
  }
}

/* Animation for feature items */
.quality-home-quality-item {
  opacity: 1;
  transform: translateX(0);
}

/* quality section */

/* homeabout section */
.homeabout-section {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.homeabout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.homeabout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Home About Content */
.homeabout-content {
  padding: 20px 0;
}

.homeabout-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.homeabout-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 25px;
  line-height: 1.2;
}

.homeabout-title-highlight {
  color: #00809D;
  position: relative;
}

.homeabout-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00809D, #22d3ee);
  border-radius: 2px;
}

.homeabout-description {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
}

.homeabout-text {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}

.homeabout-highlights {
  margin: 30px 0;
}

.homeabout-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 8px 0;
}

.homeabout-highlight-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00809D, #006B83);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.homeabout-highlight-icon::before {
  content: '✓';
}

.homeabout-highlight-text {
  color: #374151;
  font-weight: 500;
}

.homeabout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.homeabout-stat-item {
  text-align: center;
  padding: 15px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 3px solid #00809D;
}

.homeabout-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00809D;
  display: block;
  margin-bottom: 5px;
}

.homeabout-stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.homeabout-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.homeabout-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #006B83, #005F73);
  transition: left 0.3s ease;
}

.homeabout-cta-button:hover::before {
  left: 0;
}

.homeabout-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

.homeabout-cta-text {
  position: relative;
  z-index: 2;
}

.homeabout-cta-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.homeabout-cta-button:hover .homeabout-cta-arrow {
  transform: translateX(5px);
}

/* Home About Image */
.homeabout-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;
}

.homeabout-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.homeabout-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.homeabout-image-container:hover .homeabout-main-image {
  transform: scale(1.05);
}

/* Home About Decorative Elements */
.homeabout-image-container::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00809D, #22d3ee);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.homeabout-image-container::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
  z-index: -1;
}

.homeabout-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 128, 157, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Background Pattern */
.homeabout-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,128,157,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.homeabout-wrapper {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 968px) {
  .homeabout-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .homeabout-title {
    font-size: 2rem;
  }

  .homeabout-image-container {
    transform: none;
    order: 1;
  }

  .homeabout-content {
    order: 2;
  }

  .homeabout-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .homeabout-section {
    padding: 50px 0;
  }

  .homeabout-title {
    font-size: 1.8rem;
  }

  .homeabout-stats {
    grid-template-columns: 1fr;
  }

  .homeabout-cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Animation */
.homeabout-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: homeaboutFadeInUp 0.8s ease forwards;
}

.homeabout-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.homeabout-fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes homeaboutFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* homeabout section */

/* ----------home category section----------------- */
/* Container setup */
.category-section {
  padding: 60px 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-section-title {
  text-align: center;
  margin-bottom: 20px;
}

.cat-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-color), #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding-bottom: 5px;
}

.cat-short-title {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  margin: 24px auto;
  border-radius: 2px;

}

.see-more {
  text-align: center;
  margin-bottom: 50px;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: 2px solid #3b82f6;
  background: transparent;
}

.see-more-btn:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  padding: 0 20px;
}

.category-card {
  background: rgb(235, 236, 255);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.category-icon {
  margin-bottom: 24px;
}

.cat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem !important;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-card:hover .cat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.category-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.category-card:hover .category-name {
  color: #3b82f6;
}

.category-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-btn {
  background: linear-gradient(135deg, var(--text-color), var(--color-1));
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  justify-self: center;
  min-width: 180px;
}

.category-btn span,
.category-btn {
  position: relative;
  z-index: 2;
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .category-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .cat-title {
    font-size: 2.2rem;
  }

  .category-card {
    padding: 30px 20px;
  }

  .cat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem !important;
  }
}

@media (max-width: 480px) {
  .category-list {
    grid-template-columns: 1fr;
  }
}

/* Animation for cards on load */
.category-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

.category-card:nth-child(1) {
  animation-delay: 0.1s;
}

.category-card:nth-child(2) {
  animation-delay: 0.2s;
}

.category-card:nth-child(3) {
  animation-delay: 0.3s;
}

.category-card:nth-child(4) {
  animation-delay: 0.4s;
}

.category-card:nth-child(5) {
  animation-delay: 0.5s;
}

.category-card:nth-child(6) {
  animation-delay: 0.6s;
}

.category-card:nth-child(7) {
  animation-delay: 0.7s;
}

.category-card:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced hover effects for icons with different colors */
.cat-icon {
  position: relative;
  display: inline-flex !important;
}

.cat-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.category-card:hover .cat-icon::after {
  transform: translate(-50%, -50%) scale(1.4);
}

/* Add subtle grid animation */
.category-list::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.05) 50%, transparent 52%);
  border-radius: 20px;
  opacity: 0;
  animation: gridGlow 3s ease-in-out infinite;
}

@keyframes gridGlow {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}


/* -------------------all product page--------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Banner */
.top-banner {
  background: linear-gradient(135deg, #00809D 0%, #006B83 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.top-banner-details {
  text-align: center;
  position: relative;
  z-index: 2;
}

.top-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.top-banner p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Filter Section */
.filter-section {
  background: white;
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid #e2e8f0;
}

.search-bar {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.filter,
.search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 16px 24px;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  min-width: 280px;
}

.filter:hover,
.search:hover {
  border-color: #00809D;
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.15);
}

.filter .material-symbols-outlined,
.search .material-symbols-outlined {
  color: #00809D;
  font-size: 1.5rem;
}

.cat-option {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.search input {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #1e293b;
  width: 100%;
  outline: none;
  font-weight: 500;
}

.search input::placeholder {
  color: #64748b;
  font-weight: 400;
}

/* Results Info */
.results-info {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.results-count {
  font-size: 1.1rem;
  color: #64748b;
}

.results-count strong {
  color: #00809D;
  font-weight: 700;
}

.view-toggle {
  display: flex;
  gap: 8px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 10px;
}

.view-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.view-btn.active {
  background: white;
  color: #00809D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Product Grid - Big Screen: 4 products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-bottom: 60px;
  transition: all 0.3s ease;
}

/* List View */
.product-grid.list-view {
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-grid.list-view .product {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  min-height: 180px;
}

.product-grid.list-view .product-image {
  width: 200px;
  min-width: 200px;
  height: 180px;
  border-radius: 20px 0 0 20px;
}

.product-grid.list-view .product-details {
  flex: 1;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
}

.product-grid.list-view .product-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-grid.list-view .product-others {
  font-size: 1rem;
  margin-bottom: 12px;
}

.product-grid.list-view .composition-text {
  font-size: 0.95rem;
}

.product-grid.list-view .product-price {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.product-grid.list-view .product-link {
  align-self: flex-start;
  min-width: 140px;
}

.product {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #00809D;
}

.product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.product-details {
  padding: 20px;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-others {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.product-composition {
  margin-bottom: 16px;
}

.composition-label {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.composition-text {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.4;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid #00809D;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #00809D;
  margin-bottom: 16px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.product-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #006B83, #005F73);
  transition: left 0.3s ease;
}

.product-link:hover::before {
  left: 0;
}

.product-link span {
  position: relative;
  z-index: 2;
}

.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

/* Empty State */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #64748b;
}

.no-products .icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-products h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #374151;
}

.no-products p {
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pagination */
.pagination-wrapper {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* Tablet: 3 products */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .top-banner h1 {
    font-size: 3rem;
  }

  .search-bar {
    gap: 20px;
  }

  .filter,
  .search {
    min-width: 250px;
  }
}

/* Mobile: 2 products */
@media (max-width: 640px) {
  .top-banner {
    padding: 40px 0;
  }

  .top-banner h1 {
    font-size: 1.8rem;
  }

  .top-banner p {
    font-size: 1rem;
  }

  .filter-section {
    padding: 20px 0;
  }

  .search-bar {
    gap: 15px;
    flex-direction: column;
  }

  .filter,
  .search {
    padding: 12px 16px;
    min-width: 100%;
    max-width: none;
  }

  .results-info {
    padding: 15px 0;
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-bottom: 20px;
  }

  .product {
    border-radius: 12px;
  }

  .product-image {
    height: 140px;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
  }

  .product-details {
    padding: 12px;
  }

  .product-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .product-others {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .product-composition {
    margin-bottom: 10px;
  }

  .composition-label {
    font-size: 0.7rem;
    margin-bottom: 3px;
  }

  .composition-text {
    font-size: 0.75rem;
    padding: 4px 8px;
    line-height: 1.2;
    border-radius: 6px;
  }

  .product-price {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .product-link {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .pagination-wrapper {
    padding: 20px 0;
  }

  /* List view on mobile */
  .product-grid.list-view {
    grid-template-columns: 1fr;
  }

  .product-grid.list-view .product {
    flex-direction: column;
    min-height: auto;
  }

  .product-grid.list-view .product-image {
    width: 100%;
    height: 140px;
    border-radius: 12px 12px 0 0;
  }

  .product-grid.list-view .product-details {
    height: auto;
    padding: 12px;
  }

  .product-grid.list-view .product-name {
    font-size: 0.95rem;
  }

  .product-grid.list-view .product-others {
    font-size: 0.75rem;
  }

  .product-grid.list-view .product-price {
    font-size: 1.1rem;
  }

  .view-toggle {
    display: none;
  }
}

/* Out of Stock Styling for Product Grid */
.out-of-stock-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Alternative: Gray out the entire product card */
.product.out-of-stock {
  opacity: 0.7;
  position: relative;
}

.product.out-of-stock::before {
  content: 'OUT OF STOCK';
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.product.out-of-stock:hover {
  transform: translateY(-4px);
  /* Less hover effect */
}

/* Mobile responsive */
@media (max-width: 640px) {
  .out-of-stock-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* -------------------all product page--------------------- */

/* -------------------product details page--------------------- */




/* Product Details Page - Unique Classes */
.product-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner Section */
.product-banner {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #00809D 0%, #006B83 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.product-banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.product-banner-overlay h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-banner-overlay p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Breadcrumb */
.product-breadcrumb {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.product-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.product-breadcrumb a {
  color: #00809D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
  color: #006B83;
}

.product-breadcrumb .current {
  color: #1e293b;
  font-weight: 600;
}

/* Product Details Wrapper */
.product-details-wrapper {
  background: white;
  margin: 40px 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 600px;
}

/* Product Details Image Section */
.product-details-image-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.product-details-image-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(0, 128, 157, 0.1);
  border-radius: 50%;
}

.product-details-main-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.product-details-image-section:hover .product-details-main-image {
  transform: scale(1.05);
}

/* Product Details Content Section */
.product-details-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-details-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-details-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-details-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #00809D, transparent);
  margin: 20px 0;
}

/* Product Info Grid */
.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.product-info-item {
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #00809D;
  transition: all 0.3s ease;
}

.product-info-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.product-info-label {
  color: #00809D;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info-value {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Product Price Section */
.product-price-section {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 20px 0;
}

.product-price-main {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}

.product-price-note {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Out of Stock Styling */
.product-price-section .out-of-stock {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  display: inline-block;
}

.product-price-section.out-of-stock-box {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Product Uses and Advice Sections */
.product-uses-advice {
  background: #f8fafc;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #00809D;
}

.product-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00809D;
  position: relative;
}

.product-section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #22d3ee;
}

.product-features-list {
  list-style: none;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.product-feature-item:hover {
  background: #f1f5f9;
  padding-left: 10px;
  border-radius: 8px;
  border-bottom: 1px solid transparent;
}

.product-feature-item:last-child {
  border-bottom: none;
}

.product-feature-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00809D, #006B83);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-feature-icon::before {
  content: '✓';
}

.product-feature-text {
  color: #374151;
  line-height: 1.5;
  font-size: 1rem;
}

/* Action Buttons */
.product-action-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.product-btn-primary {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
}

.product-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

.product-btn-secondary {
  background: white;
  color: #00809D;
  border: 2px solid #00809D;
}

.product-btn-secondary:hover {
  background: #00809D;
  color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-details-wrapper {
    grid-template-columns: 1fr;
    margin: 20px 0;
  }

  .product-banner-overlay h1 {
    font-size: 2.2rem;
  }

  .product-banner-overlay p {
    font-size: 1.1rem;
  }

  .product-details-content {
    padding: 30px 25px;
  }

  .product-details-title {
    font-size: 2rem;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-action-buttons {
    flex-direction: column;
  }

  .product-btn {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .product-banner {
    height: 250px;
  }

  .product-banner-overlay h1 {
    font-size: 1.8rem;
  }

  .product-banner-overlay p {
    font-size: 1rem;
  }

  .product-details-image-section {
    padding: 20px;
  }

  .product-details-content {
    padding: 20px;
    gap: 20px;
  }

  .product-uses-advice {
    padding: 20px;
  }

  .product-details-container {
    padding: 0 15px;
  }

  .product-breadcrumb nav {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
}

/* Loading Animation */
.product-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: productFadeInUp 0.6s ease forwards;
}

@keyframes productFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------product details page--------------------- */

/* ----------------------contact pages--------------------- */
.contact-section {
  margin: 0 auto;
  padding: 80px 20px;
  background: #00809D;
  position: relative;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.contact-section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-side {
  padding: 40px;
  border-radius: 20px;
}

.contact-form-side {

  padding: 40px;
  border-radius: 20px;
}

.info-header {
  margin-bottom: 30px;
}

.info-header h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-header p {
  color: white;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-section-logo-div {
  position: absolute;
  height: 7rem;
  width: 3rem;
  top: 0;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.292) 16%, rgb(255, 255, 255) 110%);
  transition: all;

}

@media (max-width:360px) {
  .contact-section-logo-div {
    margin-left: -1rem;
  }
}

@media (min-width:800px) {
  .contact-section-logo-div {
    margin-left: 2rem;
    width: 6rem;
    height: 10rem;
  }
}

.contact-section-logo {
  width: 100%;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: #f8fafce3;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);

}

.contact-item:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0099B8, #007A94);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 128, 157, 0.3);
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
}

.business-hours {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #0099B8;
  backdrop-filter: blur(10px);
}

.business-hours h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hours-day {
  color: rgba(255, 255, 255, 0.8);
}

.hours-time {
  color: white;
  font-weight: 500;
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-header p {
  color: white;
  line-height: 1.6;
}

.submit-msg {
  background: #dcfce7;
  color: #166534;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #22c55e;
  font-weight: 500;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0099B8, #007A94);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007A94, #005F73);
  transition: left 0.3s ease;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

.submit-btn span {
  position: relative;
  z-index: 2;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}






.cta-btn {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #0099B8, #007A94);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 128, 157, 0.3);
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, #007A94, #005F73);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #00809D;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: white;
  color: #005F73;
  border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-info-side,
  .contact-form-side {
    padding: 30px 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Form validation */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #22c55e;
  background: #f0fdf4;
}






/* ----------------------Footer--------------------- */


footer {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-logo-div {
  position: relative;
  margin-top: -5em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 16%, rgb(255, 255, 255) 99%);
  height: 15rem;
  width: 8rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

.footer-logo {
  max-width: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-about h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-about h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #0ea5e9);
  border-radius: 2px;
}

.footer-about p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 25px;
}

.footer-section h4 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #0ea5e9);
  border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-links ul li a::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #22d3ee;
  transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: #22d3ee;
  transform: translateX(5px);
}

.footer-links ul li a:hover::before {
  transform: translateY(-50%) translateX(3px);
}

.footer-contact ul li {
  margin-bottom: 16px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.footer-contact ul li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
  color: #22d3ee;
}

.footer-contact ul li:nth-child(1)::before {
  content: '✉️';
}

.footer-contact ul li:nth-child(2)::before {
  content: '📞';
}

.footer-contact ul li:nth-child(3)::before {
  content: '🏢';
}

.footer-contact ul li:nth-child(4)::before {
  content: '🏪';
}

.footer-contact ul li strong {
  color: #22d3ee;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.certifications {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.8);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 128, 157, 0.4);
}

/* Responsive Breakpoints */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-logo-div {
    grid-column: 1 / -1;
    margin-top: -3em;
    height: 12rem;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
    text-align: center;
  }

  .footer-logo-div {
    margin-top: -2em;
    height: 10rem;
  }

  .footer-about h3::after,
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact ul li {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 16px auto;
  }

  .social-links {
    justify-content: center;
  }

  .certifications {
    justify-content: center;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .footer-grid {
    gap: 25px;
    padding: 30px 0 20px;
  }

  .footer-logo-div {
    margin-top: -1em;
    height: 8rem;
  }

  .footer-logo {
    max-width: 100px;
  }

  .footer-links ul li a {
    padding-left: 0;
    font-size: 0.95rem;
  }

  .footer-links ul li a::before {
    display: none;
  }

  .footer-contact ul li {
    padding-left: 25px;
    font-size: 0.9rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }

  .cert-badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .footer-about h3 {
    font-size: 1.3rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .certifications {
    gap: 8px;
  }

  .cert-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .social-links {
    gap: 12px;
  }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .footer-logo-div {
    margin-top: -1em;
    height: 6rem;
  }

  .footer-grid {
    padding: 20px 0 15px;
  }
}



/* ///about page design// */

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Hero Banner */
.about-hero-banner {
  background: linear-gradient(135deg, #00809D 0%, #006B83 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-banner h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  /* background: linear-gradient(45deg, #ffffff, #e2e8f0);
     */
  color: white;
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

.about-hero-banner p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.6;
}

/* About Floating Elements */
.about-floating-element {
  position: absolute;
  opacity: 0.1;
  animation: aboutFloat 6s ease-in-out infinite;
}

.about-floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.about-floating-element:nth-child(2) {
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.about-floating-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* About Main Content Section */
.about-content-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Image Section */
.about-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s ease;
}

.about-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.about-image-container:hover .about-main-image {
  transform: scale(1.05);
}

/* About Image Decorative elements */
.about-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00809D, #22d3ee);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.about-image-container::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
  z-index: -1;
}

/* About Text Section */
.about-text-content {
  padding: 20px 0;
}

.about-text-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00809D;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.about-text-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00809D, #22d3ee);
  border-radius: 2px;
}

.about-text-content p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text-content p:first-of-type {
  font-size: 1.2rem;
  color: #334155;
  font-weight: 500;
}

.about-text-content strong {
  color: #00809D;
  font-weight: 700;
}

/* About Stats Section */
.about-stats-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 80px 0;
  margin: 60px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.about-stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 128, 157, 0.1), transparent);
  transition: left 0.6s ease;
}

.about-stat-card:hover::before {
  left: 100%;
}

.about-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00809D;
  display: block;
  margin-bottom: 10px;
}

.about-stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-stat-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* About Mission/Vision Section */
.about-mission-section {
  padding: 80px 0;
  background: white;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-mission-card {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #00809D;
  position: relative;
  transition: all 0.4s ease;
}

.about-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-mission-card h3 {
  font-size: 1.8rem;
  color: #00809D;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-mission-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* About Mission Icon */
.about-mission-icon {
  width: 60px;
  height: 60px;
  background: #00809D;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* About Team Section */
.about-team-section {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about-team-header {
  margin-bottom: 50px;
}

.about-team-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-team-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About CTA Section */
.about-cta-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.about-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-cta-content p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 30px;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-btn-primary {
  background: #00809D;
  color: white;
}

.about-btn-primary:hover {
  background: #006B83;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

.about-btn-secondary {
  background: white;
  color: #00809D;
  border: 2px solid #00809D;
}

.about-btn-secondary:hover {
  background: #00809D;
  color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-banner h1 {
    font-size: 3rem;
  }

  .about-image-container {
    transform: none;
    order: 2;
  }

  .about-text-content {
    order: 1;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-hero-banner {
    padding: 60px 0;
  }

  .about-hero-banner h1 {
    font-size: 2.5rem;
  }

  .about-content-section {
    padding: 50px 0;
  }

  .about-stats-section,
  .about-mission-section,
  .about-team-section,
  .about-cta-section {
    padding: 50px 0;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* About Animation */
.about-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeInUp 0.8s ease forwards;
}

.about-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.about-fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.about-fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.about-fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes aboutFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* //contact page */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Hero Banner */
.contact-hero-banner {
  background: linear-gradient(135deg, #00809D 0%, #006B83 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-banner p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
}

/* Contact Content Section */
.contact-content-section {
  padding: 80px 0;
  background: white;
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Information Side */
.contact-info-panel {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #00809D;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.contact-info-header {
  margin-bottom: 30px;
}

.contact-info-header h2 {
  font-size: 2rem;
  color: #00809D;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.contact-office-section {
  margin-bottom: 40px;
}

.contact-office-title {
  font-size: 1.3rem;
  color: #00809D;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-office-title::before {
  content: '🏢';
  font-size: 1.2rem;
}

.contact-office-details {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.contact-office-details p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-office-details strong {
  color: #00809D;
}

/* Contact Details Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.contact-detail-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: #00809D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  flex: 1;
}

.contact-detail-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail-value {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Form Section */
.contact-form-panel {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-form-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-form-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 0.95rem;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  font-family: inherit;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #00809D;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 128, 157, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #9ca3af;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-button {
  width: 100%;
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #006B83, #005F73);
  transition: left 0.3s ease;
}

.contact-submit-button:hover::before {
  left: 0;
}

.contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 128, 157, 0.3);
}

.contact-submit-button span {
  position: relative;
  z-index: 2;
}

/* Contact Map Section Bottom */
.contact-map-section-bottom {
  background: white;
  padding: 80px 0;
  margin: 0;
}

.contact-map-header-bottom {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map-header-bottom h2 {
  font-size: 2.5rem;
  color: #00809D;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-map-header-bottom p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.contact-map-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.contact-map-iframe-bottom {
  width: 100%;
  height: 450px;
  border: none;
}

/* Success Message */
.contact-success-message {
  background: #dcfce7;
  color: #166534;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #22c55e;
  font-weight: 500;
  display: none;
}

/* Bottom CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

.contact-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-button {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-cta-button-primary {
  background: white;
  color: #00809D;
}

.contact-cta-button-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-cta-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-banner h1 {
    font-size: 2.5rem;
  }

  .contact-info-panel {
    position: static;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero-banner {
    padding: 60px 0;
  }

  .contact-hero-banner h1 {
    font-size: 2rem;
  }

  .contact-content-section {
    padding: 50px 0;
  }

  .contact-map-section-bottom {
    padding: 50px 0;
  }

  .contact-map-header-bottom h2 {
    font-size: 2rem;
  }

  .contact-map-iframe-bottom {
    height: 300px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 20px;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta-button {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Animation */
.contact-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: contactFadeInUp 0.6s ease forwards;
}

.contact-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes contactFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* //quality */
.quality-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Quality Hero Banner */
.quality-hero-banner {
  background: linear-gradient(135deg, #00809D 0%, #006B83 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quality-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.quality-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quality-hero-banner h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
  /* background: linear-gradient(45deg, #ffffff, #e2e8f0); */
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}

.quality-hero-banner p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.6;
}

/* Quality Floating Elements */
.quality-floating-element {
  position: absolute;
  opacity: 0.1;
  animation: qualityFloat 8s ease-in-out infinite;
}

.quality-floating-element:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.quality-floating-element:nth-child(2) {
  top: 60%;
  right: 12%;
  animation-delay: 3s;
}

.quality-floating-element:nth-child(3) {
  bottom: 25%;
  left: 15%;
  animation-delay: 6s;
}

@keyframes qualityFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

/* Quality Content Sections */
.quality-content-section {
  padding: 80px 0;
  background: white;
}

.quality-content-section.quality-alt-bg {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.quality-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quality-content-wrapper.quality-reverse-layout {
  grid-template-columns: 1fr 1fr;
}

/* Quality Text Content */
.quality-text-content {
  padding: 20px 0;
}

.quality-text-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00809D;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.quality-text-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00809D, #22d3ee);
  border-radius: 2px;
}

.quality-text-content p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.8;
}

.quality-text-content p:first-of-type {
  font-size: 1.2rem;
  color: #334155;
  font-weight: 500;
}

.quality-text-content strong {
  color: #00809D;
  font-weight: 700;
}

.quality-text-content ul {
  list-style: none;
  margin: 20px 0;
}

.quality-text-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.quality-text-content ul li::before {
  content: '✓';
  background: #00809D;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Quality Image Container */
.quality-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.quality-content-section:nth-child(odd) .quality-image-container {
  transform: perspective(1000px) rotateY(-5deg);
}

.quality-content-section:nth-child(even) .quality-image-container {
  transform: perspective(1000px) rotateY(5deg);
}

.quality-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.quality-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.quality-image-container:hover .quality-main-image {
  transform: scale(1.05);
}

/* Quality Image Decorative elements */
.quality-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00809D, #22d3ee);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.quality-image-container::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
  z-index: -1;
}

/* Quality Standards Section */
.quality-standards-section {
  background: linear-gradient(135deg, #00809D, #006B83);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.quality-standards-header {
  margin-bottom: 50px;
}

.quality-standards-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.quality-standards-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.quality-standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.quality-standard-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.quality-standard-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.quality-standard-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.quality-standard-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.quality-standard-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Quality Certifications */
.quality-certifications-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.quality-certifications-header {
  margin-bottom: 50px;
}

.quality-certifications-header h2 {
  font-size: 2.5rem;
  color: #00809D;
  font-weight: 800;
  margin-bottom: 20px;
}

.quality-certifications-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.quality-certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.quality-certification-badge {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 30px 20px;
  border-radius: 15px;
  border-left: 4px solid #00809D;
  transition: all 0.3s ease;
}

.quality-certification-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quality-certification-badge h3 {
  color: #00809D;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.quality-certification-badge p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .quality-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quality-content-wrapper.quality-reverse-layout {
    grid-template-columns: 1fr;
    /* Add this line */
  }

  .quality-hero-banner h1 {
    font-size: 3rem;
  }

  .quality-image-container {
    transform: none !important;
    order: 2;
  }

  .quality-text-content {
    order: 1;
  }

  .quality-reverse-layout .quality-image-container {
    order: 1;
    /* Image first in reverse layout */
  }

  .quality-reverse-layout .quality-text-content {
    order: 2;
    /* Text second in reverse layout */
  }

  .quality-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .quality-image-container {
    min-height: 250px;
    /* Ensure minimum height */
    width: 100%;
  }

  .quality-main-image {
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    object-fit: cover;
    /* Maintain aspect ratio */
  }

  .quality-hero-banner {
    padding: 60px 0;
  }

  .quality-hero-banner h1 {
    font-size: 2.5rem;
  }

  .quality-content-section {
    padding: 50px 0;
  }

  .quality-standards-section,
  .quality-certifications-section {
    padding: 50px 0;
  }

  .quality-standards-grid,
  .quality-certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation */
.quality-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: qualityFadeInUp 0.8s ease forwards;
}

.quality-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.quality-fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.quality-fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.quality-fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes qualityFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}