* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background: #f7f7f7;
  color: #111;
  font-family: "Comfortaa", sans-serif;
}

h1, h2, h3 {
  font-family: "Science Gothic", sans-serif;
  margin-bottom: 15px;
}

h4 {
  font-family: "Science Gothic", sans-serif;
  font-size: 4ch;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 20px 60px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

nav {
  margin-left: auto;
  margin-right: 40px; 
}

.logo-img {
  height: 85px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

nav a {
  margin-right: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.lang-switch a {
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
}

.lang-switch a:hover {
  opacity: 1;
}


.hero {
    padding: 140px 60px 100px 60px;
    color: #fff;

    background:
        linear-gradient(to right,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.80) 35%,
            rgba(0,0,0,0.80) 70%,
            rgba(0,0,0,0.05) 100%
        ),
        url("img/1306.jpg") no-repeat center center;
        
    background-attachment: fixed;

    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
}


.hero h1 {
  font-size: 54px;
}

.hero p {
  margin: 25px 0;
  font-size: 18px;
  opacity: 0.9;
}

.hero button {
  padding: 14px 30px;
  border: none;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  font-family: "Comfortaa", sans-serif;
  border-radius: 10px;
}

.hero1 {
  padding: 120px 60px 50px 40px;
  background: linear-gradient(120deg, #111, #2b2b2b);
  color: #fff;
}

.sectionff {
padding: 60px 60px;
}

.section {
padding: 60px 60px 60px 60px;
}

.section1 {
  background: #111;
  color: #f0f0f0;
  padding: 50px 60px;
}

.section5 h2 {
  padding: 130px 60px 30px;
}

.light {
  background: #f7f7f7;
}

.dark {
  background: #111;
  color: #fff;
  /* display: flex; */
  gap: 40px;
  margin-bottom: -30px;
}

.global {
  background: linear-gradient(120deg, #111, #2b2b2b);
  color: #fff;
  text-align: center;
}

.footer {
  padding: 40px 60px;
  background: #111;
  color: #777;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.why {
  background: #fff;
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  transform: translateY(-4px);
}

.why1-img,
.why2-img,
.why3-img,
.why4-img {
  height: 45px;
}

/* .card {
  background: #1c1c1c;
  padding: 40px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
} */

.card {
  background: #1c1c1c;
  padding: 40px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;

  display: flex;           
  flex-direction: column;  
  justify-content: space-between; 
}

.text-btn-up {
   display: flex;         
  flex-direction: column;  
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-4px);
}

.card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  justify-content: center;
  display: flex;
}

.card-btn:hover {
  background: #f0f0f0;
  color: #000;
}

.animate-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease;
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.animate-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}


.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease;
  z-index: 20;
}

.mobile-menu.active {
  right: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
}

.mobile-lang {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.mobile-lang a {
  cursor: pointer;
  opacity: 0.7;
}

.mobile-lang a:hover {
  opacity: 1;
}

.carddw {
  margin-bottom: 30px;
}

@media (min-width: 1180px) {
.dark {
  display: flex;
}

}

/* @media (max-width: 550px) {

  .logo-text {
    display: none;
  }

  .desktop-lang {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  * {
    font-size: -15%;
  } 

} */

.hero h1 {
  font-size: clamp(35px, 5vw, 54px);
}


.mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.mobile-close:hover {
  opacity: 1;
} 





.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
    z-index: 20;
}

.mobile-menu.active {
    right: 0;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-links a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
}

.mobile-lang {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.mobile-lang a {
    cursor: pointer;
    opacity: 0.7;
}

.mobile-lang a:hover {
    opacity: 1;
}


@media (max-width: 700px) {
   
    .logo-text {
        display: none;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    * {
        font-size: -15%;
    }


    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.8);
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 50%;
        z-index: 20;
        transition: background 0.3s;
    }

    .scroll-btn:hover {
        background: rgba(255,255,255,1);
    }

    .scroll-btn.left {
        left: 5px;
    }

    .scroll-btn.right {
        right: 5px;
    }
    .lang-switch {
      display: none;
    }
}






/* RESET 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f7f7f7;
    color: #111;
    font-family: "Comfortaa", sans-serif;
}

h1, h2, h3 {
    font-family: "Science Gothic", sans-serif;
    margin-bottom: 15px;
}

h4 {
    font-family: "Science Gothic", sans-serif;
    font-size: 4ch;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    padding: 20px 60px;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
}

nav {
    margin-left: auto;
    margin-right: 40px;
}

.logo-img {
    height: 85px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

nav a {
    margin-right: 30px;
    text-decoration: none;
    color: #111;
    font-weight: 400;
}

.lang-switch a {
    margin-left: 12px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.6;
}

.lang-switch a:hover {
    opacity: 1;
}

.hero {
    padding: 140px 60px 100px 60px;
    color: #fff;

    background:
          linear-gradient(to right,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.80) 35%,
            rgba(0,0,0,0.70) 70%,
            rgba(0,0,0,0.05) 100%
        ),
        url("img/1306.jpg");

    background-size: 100%;
    background-attachment: fixed;


    background-repeat: no-repeat;
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
}


.hero h1 {
    font-size: 54px;
}

.hero p {
    margin: 25px 0;
    font-size: 18px;
    opacity: 0.9;
}

.hero button {
    padding: 14px 30px;
    border: none;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.hero1 {
    padding: 120px 60px 50px 40px;
    background: linear-gradient(120deg, #111, #2b2b2b);
    color: #fff;
}

.section {
    padding: 60px 60px;
}

.section1 {
    background: #111;
    color: #f0f0f0;
    padding: 50px 60px;
}

.section5 h2 {
    padding: 130px 60px 30px;
}

.light {
    background: #f7f7f7;
}

.dark {
    background: #111;
    color: #fff;
    gap: 40px;
}

.global {
    background: linear-gradient(120deg, #111, #2b2b2b);
    color: #fff;
    text-align: center;
}

.footer {
    padding: 40px 60px;
    background: #111;
    color: #777;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.why {
    background: #fff;
}

.why-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.why1-img, .why2-img, .why3-img, .why4-img {
    height: 45px;
}

.card {
    background: #1c1c1c;
    padding: 40px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

    transform: translateY(-4px);
}

.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    
}

.card-btn:hover {
    background: #f0f0f0;
    color: #000;
}

.animate-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.animate-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.animate-down {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translate(0, 0);
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
    z-index: 20;
}

.mobile-menu.active {
    right: 0;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-links a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
}

.mobile-lang {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.mobile-lang a {
    cursor: pointer;
    opacity: 0.7;
}

.mobile-lang a:hover {
    opacity: 1;
}

@media (max-width: 1275px){
  .dark {
    display: flex;
  }
  .papa_text {
    margin-top: br;
  }
}

@media (max-width: 550px) {
    .logo-text {
        display: none;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    * {
        font-size: -15%;
    }

    #products {
       
        overflow-x: auto;
        gap: 20px;
        padding: 20px 40px;
        scroll-snap-type: none;
        position: relative;
    }

    #products .card {
        flex: 0 0 250px;
        scroll-snap-align: none;
    }

    #products::-webkit-scrollbar {
        display: none;
    }

    .dark {
      background: #111;
      color: #fff;
      gap: 40px;
    }

    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.8);
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 50%;
        z-index: 20;
        transition: background 0.3s;
    }

    .scroll-btn:hover {
        background: rgba(255,255,255,1);
    }

    .scroll-btn.left {
        left: 5px;
    }

    .scroll-btn.right {
        right: 5px;
    }
}



  

.hero h1 {
    font-size: clamp(35px, 5vw, 54px);
}

.mobile-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.mobile-close:hover {
    opacity: 1;
}
