*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; 
}

nav{
    width: 100%;
    height: 60px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    p{
        color: white;
        padding-left: 30px;
        font-family: cursive;
    }
}

.logo{
    width: 25%;
    display: flex;
    a{
        text-decoration: none;
    }
}

.list{
  width: 50%;
}

.list ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .list ul li a {
    color: white;
    text-decoration: none;
    transition: 1s;
    font-size: 17px;
}

.list ul li a:hover{
    color: rgb(45, 45, 246);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-right: 20px;
}

.language-selector label {
  font-weight: bold;
  color: white;
}

.language-selector select {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #007bff;
}

header{
    height: 400px;
    background-image: url(../Image/carayutyunnerimage.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}

section{
    height: 550px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.prosthetics-section {
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 30px auto;
    max-width: 600px;
  }
  .prosthetics-section h2 {
    text-align: center;
    margin-bottom: 25px;
  }

  .hamburger {
  display: none;
  font-size: 26px;
  color: white;
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}

  .accordion-item{
    width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid black;
    a{
        margin-left: 20px;
        text-decoration: none;
        p{
            color: black;
            font-weight: 900;
            font-size: 17px;
            transition: 1s;
        }
        span{
                background-color: #00a9e0;
                color: white;
                border-radius: 50%;
                margin-right: 20px;
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
                font-weight: bold;
              }
              
        }
    }

    .accordion-item a p:hover{
        color: blue;
    }

    .accordion-item a span:hover{
        background-color: transparent;
        border: 1px solid black;
    }

  .CarayutyanInfo{
    height: 400px;
    width: 600px;
    h1{
        text-align: center;
        font-weight: 900;
    }
    p{
        padding-top: 20px;
        font-size: 17px;
        line-height: 25px;
        color: gray;
        span{
            font-weight: 900;
            color: black;
        }
    }
    ul{
        margin-top: 10px;
        margin-left: 40px;
        li{
            color: gray;
        }
    }
    h3{
        padding-top: 10px;
        font-size: 17px;
    }
  }

  .pricing-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.pricing-section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

#searchBox {
    display: block;
    margin: 0 auto 30px;
    padding: 10px 15px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.service-category {
    margin-bottom: 40px;
}

.service-category h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    flex: 1 1 250px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.service-card p {
    margin: 0 0 10px;
    color: #666;
}

.service-card span {
    font-weight: bold;
    color: #2c3e50;
}

footer {
  background-color: black;
  color: #f1f1f1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footlogo img {
  width: 200px;
  margin-bottom: 20px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.contact, .social-links {
  width: 45%;
}

.contact h3, .social-links h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.contact ul li {
  font-size: 1em;
}

.contact a {
  color: blue;
  text-decoration: none;
}

.social-links a {
  color: #fff;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-links a:hover {
  color: #00aeef;
}
  

@media (max-width: 768px) {

  nav {
    width: 100%;
    padding: 0 15px;
    position: relative; 
    z-index: 1000;
  }

  nav .list ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    border-radius: 8px;
    z-index: 999;
  }

  nav .hamburger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  nav .list ul.show {
    display: flex;
  }

  nav .list ul li {
    margin: 10px 0;
    text-align: center;
  }

  header{
    width: 100%;
  }

  section{
    display: block;
    height: 850px;
    width: 100%;
  }

  .accordion{
    width: 100%;
  }

  .CarayutyanInfo{
    width: 100%;
  }

  footer .footer-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .contact, footer .social-links {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  footer .contact ul li {
    font-size: 1em;
  }

  footer .social-links a {
    font-size: 1.5em;
  }
}