* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 
            'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: url(pic/background3.jpg);
            background-position: center;
            background-size: cover;
            height: fit-content;
        }

        header {
            background: linear-gradient(135deg,#8b8585 , #3a3f41 100%);
            width: 100%;
            top: 0px;
            color: #2ece06;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: fixed;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            /* position:; */
            
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #2ece06;
            font-size: 17px;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }


        .hero {
            background-image: url(pic/IMG_20251006_134507.jpg);
            background-position: center;
            color: white;
            background-repeat: no-repeat;
            margin-top: 90px;
            margin-left: 40px;
            margin-right: 40px;
            text-align: center;
            padding: 6rem 2rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: #de6e3a;
            color: white;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #c55a28;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color:  #1ece21;
        }

       /* Services section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #de6e3a;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: #1ece21;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card p {
    color: #333;
    line-height: 1.5;
}

/* Languages section */
.languages {
    background: linear-gradient(135deg,#8b8585 , #3a3f41 100%);
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    padding: 2rem 0;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.lang-item {
    background: white;
    padding: 1rem;
    border-left: 4px solid #de6e3a;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
}

.lang-item strong {
    font-size: 1.1rem;
    color: #333;
}

.lang-item span {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}


        /* About section */

        .about {
            background: linear-gradient(135deg, #18c402 0%, #3e4b39 100%);
            margin-left: 40px;
            margin-right: 40px;
            margin-top: 30px;
            box-shadow: 0px .5px 4px rgba(0,0,0,0.3); 
            color: #ffff;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
             box-shadow: 0px .7px 7px rgba(0,0,0,0.3);
        }

        .about-text p {
            margin-bottom: 1rem;
            padding-left: 30px;
            padding-top: 30px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-box {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            color: #de6e3a;
            font-weight: bold;
        }

        /* Contact section */

        .contact {
           background:url(pic/BACK2.jpg);
           background-position: center;
           background-size: cover;
           height: fit-content;
        }

        .contact-form {
            background: linear-gradient(135deg, #52535e 0%, #3a3f41 100%);
            max-width: 600px;
            box-shadow: 1px 2px 10px rgba(0,0,0,0.3);
            margin: 0 auto; 
            padding: 50px;

        }

        .form-group input{
            width: 80%;
            padding: 12px;
            border-radius: 7px;
            border: none;
            box-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
            
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        footer {
            background: #2c5f2d;
            color: white;
            text-align: center;
            padding: 2rem;
        }



.container-translation {
  max-width: 690px;
  width: 100%;
  padding: 30px;
  background: #8b8585;
  border-radius: 7px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.01);
  color: #0a0808;
  margin-left: 320px;
}

.wrapper {
  border-radius: 5px;
  border: 1px solid #ccc;
}

.wrapper .text-input {
  display: flex;
  border-bottom: 1px solid #000000;
}

.text-input .to-text {
  border-radius: 0px;
  border-left: 1px solid #000000;
}

.text-input textarea {
  height: 250px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  background: none;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
}

.text-input textarea::placeholder {
  color: #000000;
}

.controls,
li,
.icons,
.icons i {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls {
  list-style: none;
  padding: 12px 15px;
}

.controls .row .icons {
  width: 38%;
}

.controls .row .icons i {
  width: 50px;
  color: #adadad;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
  justify-content: center;
}

.controls .row.from .icons {
  padding-right: 15px;
  border-right: 1px solid #ccc;
}

.controls .row.to .icons {
  padding-left: 15px;
  border-left: 1px solid #ccc;
}

.controls .row select {
  color: #04d104;
  border: none;
  outline: none;
  font-size: 18px;
  background: none;
  padding-left: 5px;
}

.text-input textarea::-webkit-scrollbar {
  width: 4px;
}

.controls .row select::-webkit-scrollbar {
  width: 8px;
}

.text-input textarea::-webkit-scrollbar-track,
.controls .row select::-webkit-scrollbar-track {
  background: #ffffff;
}

.text-input textarea::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 8px;
}

.controls .row select::-webkit-scrollbar-thumb {
  background: #2ece06;
  border-radius: 8px;
  border-right: 2px solid #ffffff;
}

.controls .exchange {
  color: #adadad;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.controls i:active {
  transform: scale(0.9);
}

.container button {
  width: 100%;
  padding: 14px;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  font-size: 17px;
  border-radius: 5px;
  background:#2ece06 ;
}

@media (max-width: 660px) {
  .container {
    padding: 20px;
  }

  .wrapper .text-input {
    flex-direction: column;
  }

  .text-input .to-text {
    border-left: 0px;
    border-top: 1px solid #ccc;
  }

  .text-input textarea {
    height: 200px;
  }

  .controls .row .icons {
    display: none;
  }

  .container button {
    padding: 13px;
    font-size: 16px;
  }

  .controls .row select {
    font-size: 16px;
  }

  .controls .exchange {
    font-size: 14px;
  }
}


        

































        @media only screen and  (max-width: 768px) {
            .nav-links {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: repeat(1fr);
            }

            .stats {
                grid-template-columns: 1fr;
            }

            header {
            background: aliceblue;
            width: 100%;
            top: 0px;
            color: rgb(0, 128, 73);
            padding: 1rem 0;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            position: fixed;
            z-index: 1000;
        }

        .logo {
            font-size: 1.2rem;
            font-weight: bold;
        }


        .hero {
            background-image: url(/pic/IMG_20251006_134507.jpg);
            background-position: center;
            color: white;
            background-repeat: no-repeat;
            margin-top: 120px;
            margin-left: 20px;
            margin-right: 20px;
            text-align: center;
            padding: 6rem 2rem;
            height: 470px;
        }

        .container{
            padding: 0;
            padding-left: 10px;
            padding-right: 10px;
            padding-top: 15px;
            padding-bottom: 10px;
        } 

        .about {
            background: white;
            margin-left: 20px;
            margin-right: 10px;
            margin-top: 5px;
            box-shadow: 1px 2px 10px rgba(0,0,0,0.5); 
        }

        .about-content {
            display: block;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            box-shadow: 0px 2px 7px rgba(0,0,0,0.5);
        }

        .about-text p {
            margin-bottom: 1rem;
            padding-left: 30px;
            padding-top: 0px;
            display: flex;
            flex-direction: row;

        }

        .section-title{
            margin: 0;
            padding: 0;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .1rem;
            text-align: center;
        }

        .stat-box {
            padding-left: 4px;
            margin: 0;
        }

        .stat-number {
            font-size: 1.5rem;
            color: #de6e3a;
            font-weight: bold;
            display: block;
        }

        .btn{
            border: none;
        }

    }