* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif
}

body {
  background-color: #fff;
  color: #000;
  line-height: 1.6
}

@keyframes gradientAnimation {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

a {
  color: inherit;
  text-decoration: none
}

.feature-content:active {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}



.logo-img {
  height: 45px
}

nav {
  display: flex;
  align-items: center;
  gap: 30px
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: .3s ease
}

nav a:hover {
  color: #1e88e5
}

.dropdown {
  position: relative
}
.refing {
  position: relative;
}
.dropbtn {
  background: 0 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #333
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  overflow: hidden
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #333
}

.dropdown-content a:hover {
  background: #f4f4f4
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 8%;
  background: #fff;
  transition: top .3s;

  z-index: 1000
}

nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.menu-toggle {
  display: none
}

.dropdown {
  position: relative
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}
@media (min-width: 769px) {  /* only for screens wider than 768px */
  .dropdown:hover .dropdown-content {
    display: block;
  }
}
.contact-btn {
  background: #1e88e5;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}
.sandwich {
  display: none;
}
@media (max-width:768px) {
  
  .refing {
    display: block;
    width: 100%;
    text-align: center;
  }
   .contact-btn {
    display: block;
    width: 100%;
    text-align: center;

  }
  .dropdown-content.active {
  display: block
}
  .dropdown-content {
    display: none
  }
  #nav-menu {
  display: none; /* hidden by default */
}

#nav-menu.active {
  display: block; /* shown when active */
}
  .sandwich {
    display: block;
    font-size: 28px;
    width: 20%;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  .logo-img {
    margin-left: 0;
    
  }
   #nav-menu .contact-btn {
    align-self: center;     /* overrides stretch and centers this button */
  }


  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none
  }

  nav.active {
    display: flex
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 15px
  }
  
  .dropdown.active .dropdown-content {
    display: block
  }
}

.contact-btn:hover {
  background: #1565c0
}

.logo {
  font-size: 1.4rem;
  font-weight: 700
}

nav a {
  margin-left: 1.5rem;
  font-weight: 500
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  background: linear-gradient(rgba(0, 0, 0, .259), rgba(0, 0, 0, .259)), url(images/20240705_061148.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  color: #fff
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 400;
  font-size: 1.1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, .644);
  border-radius: 5px;
  color: #fff
}

.btn {
  display: inline-block;
  padding: .8rem 1.8rem;
  margin-top: 1rem;
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  transition: .2s ease
}

@media (max-width:600px) {
  .btn {
    padding: .2rem 1rem;
    font-size: .9rem
  }
}

.btn:hover {
  transform: scale(1.05)
}

.logo-img {
  height: 5rem;
  width: auto
}

.highlight {
  color: red;
  text-shadow: 2px 2px 5px #000;
  font-size: 4rem
}

h1 {
  text-shadow: 2px 2px 5px #000
}

@media (max-width:768px) {
  .features {
    padding: 3rem 6%;
    gap: 2.5rem;
    background-size: 12rem 12rem
  }

  .feature,
  .feature-ab {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem
  }

  .feature-content,
  .feature-image {
    width: 100%
  }

  .feature-about img,
  .feature-image img {
    width: 100%;
    height: auto;
    max-height: 16rem
  }

  .feature-content h3 {
    font-size: 1.5rem
  }

  .feature-content p {
    font-size: 1rem;
    line-height: 1.5
  }
}

.features {
  background-color: #fff;
  padding: 5rem 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem
}

@media (max-width:768px) {
  .features {
    grid-template-columns: repeat(1, 1fr)
  }
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #000;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
}

.feature-ab h3 {
  text-align: center
}

.feature,
.feature-ab {
  color: #000;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease-out, transform .7s cubic-bezier(.22, 1, .36, 1)
}

.feature-ab.show,
.feature.show {
  opacity: 1;
  transform: translateY(0)
}

.feature-ab {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 70rem;
  width: 100%;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem;
  color: #000;
  border-radius: 16px
}

.feature-about img {
  width: 40rem;
  height: 20rem;
  border-radius: 10px;
  object-fit: cover
}

.feature-content h3 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: clamp(.9rem, 2vw, 1.2rem);
  background-color: #fff;
  color: #000;
  padding: clamp(.2rem, .5vw, .5rem) clamp(.4rem, 1vw, .6rem)
}

.feature-content {
  position: relative;
  width: 100%;
  height: clamp(15rem, 25vw, 25rem);
  background-image: var(--before);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .35);
  transition: transform .3s ease, box-shadow .3s ease
}

.feature-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--after);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease
}

.feature:hover .feature-content::after {
  opacity: 1
}

@media (max-width:768px) {
  .feature-content {
    height: 18rem
  }
}

@media (max-width:768px) {
  .feature-content {
    height: 20rem
  }
}

button {
  padding: 1rem;
  background-color: #131313;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s
}

button:hover {
  background-color: #fff
}

.feature-image img {
  width: 40rem;
  height: 20rem;
  border-radius: 10px;
  object-fit: cover
}

@media (max-width:768px) {
  .feature {
    flex-direction: column
  }
}

.cta {
  padding: 4rem 10%;
  text-align: center;
  background: #1a1a1a;
  color: #fff
}

.cta h2 {
  margin-bottom: 1rem;
  font-size: 2rem
}

footer {
  padding: 1.5rem;
  text-align: center;
  background: #000;
  color: #777;
  font-size: .9rem
}

@media (max-width:768px) {
  header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 4%;
    align-items: flex-start; /* left align everything */
  }

  /* Top row: logo + sandwich button */
  .header-top {
    display: flex;
    flex-direction: row;       /* side by side */
    justify-content: space-between; /* push sandwich to the right */
    align-items: center;       /* vertical align */
    width: 100%;
  }

  .logo-img {
    display: inline-block;
    height: 3rem;
    width: auto;
  }

  .sandwich {
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color:black;
    
  }

  /* Optional: nav items full width below */
  #nav-menu {
    width: 100%;
    display: flex;
    flex-direction: column; /* stack menu items under top row */
    gap: 0.5rem;
    display: none;
  }

  .logo,
  .logo-img {
    font-size: 1.2rem;
    height: 3rem;
    width: auto
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center
  }

  nav a {
    margin: 0;
    font-size: 1rem
  }

  .hero {
    min-height: 60vh;
    padding: 0 2rem;
    background-size: cover;
    background-position: center top
  }

  .hero h1 {
    font-size: 1rem;
    line-height: 1.2
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto
  }
}

@media (max-width:768px) {
  .highlight {
    color: red;
    text-shadow: 2px 2px 5px #000;
    font-size: 4rem
  }

  .features {
    padding: 2rem 2rem;
    gap: 2rem
  }

  .feature {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem
  }

  .feature-about img,
  .feature-image img {
    width: 100%;
    height: auto
  }

  .feature-content h3 {
    font-size: 1.2rem
  }

  .feature-content p {
    font-size: .9rem
  }
}

@media (max-width:768px) {
  button {
    font-size: .9rem;
    padding: .6rem
  }

  button {
    width: 100%
  }
}

@media (max-width:768px) {

  .feature-about img,
  .feature-image img {
    width: 100%;
    height: auto;
    max-width: 100%
  }
}