:root {
  --primary-color: #e67e22;
  --hover-color: #d35400;
  --active-color: #c0392b;
  --text-color: white;
  --border-color: #ffffff80;
  --contact-text-color: #333;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

/*logo*/
.top-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 40px;
  background: white;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 100px;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 20px;
  color: var(--contact-text-color);
}

/* Navbar */
.navbar {
  /*background-color: var(--primary-color);*/
  /* background: linear-gradient(to right, #f12711, #f5af19);*/
   background: #E77A08;
   background: linear-gradient(270deg, #E77A08, #E4AE58);
  text-align: center;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar ul li {
  position: relative;
  border-right: 1px solid var(--border-color);
}

.navbar ul li:first-child {
  border-left: 1px solid var(--border-color);
}

.navbar ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  padding: 20px 30px;
  display: block;
  transition: background-color 0.3s, color 0.3s;
}

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

.navbar ul li a.active {
  background-color: var(--active-color);
  color: var(--text-color);
}

.hamburger {
  display: none;
  font-size: 28px;
  color: var(--text-color);
  cursor: pointer;
}

/* hero */
.herosection {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-container {
  display: flex;
  transition: transform 1s ease-in-out;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dots .dot.active {
  background-color: #fff;
}

/*home content */
.homecontent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 120px 60px 120px;
  gap: 40px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.left,
.right {
  flex: 1;
  min-width: 300px;
}

.left p {
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 30px;
}

.left h2 {
  color: #e67e22;
  margin-bottom: 20px;
}

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

.imgcontainer img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}


.imgcontainer img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.right {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 350px;
}

.right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.right h3 {
  color: #e67e22;
  margin-bottom: 15px;
}

.right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/*footer*/

footer {
  background-color: #0f1f33;
  color: #fff;
  padding: 40px 150px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.foot {
  flex: 1;
  min-width: 220px;
  margin-right: 20px;
}

.foot h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.foot ul {
  list-style: none;
  padding: 0;
}

.foot ul li {
  margin-bottom: 10px;
}

.foot ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.foot ul li a:hover {
  color: #fff;
}

.foot p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.9;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background-color: #3b5998; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icons a:nth-child(2) {
  background-color: #dd4b39; 
}

.social-icons a:nth-child(3) {
  background-color: #1da1f2; 
}

.social-icons a:hover {
  transform: scale(1.2);
}


/*responsive*/
@media (max-width: 874px) {

    .navbar ul li a {
    padding: 12px 15px;
    font-size: 14px;
  }

  .herosection {
    height: 250px;
  }

  .image-container img {
    height: 250px;
  }

  .logo {
    height: 70px;
  }

  footer {
    padding: 30px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .foot {
    margin-right: 0;
  }
}


@media (max-width: 620px) {
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 32px;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    flex-wrap: wrap;
  }

  .navbar ul {
    flex-direction: column;
    position: relative;
    width: 100%;
    background: linear-gradient(270deg, #E77A08, #E4AE58);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
  }

  .navbar ul.active {
    max-height: 500px; 
    transition: max-height 0.5s ease;
  }

  .navbar ul li {
    border: none;
  }

  .navbar ul li a {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar ul li:first-child {
    border-left: none; 
  }

  .top-header {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .logo {
    height: 80px; 
    margin-bottom: 10px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
}

@media (max-width: 747px) {
  .herosection {
    height: 150px;
  }

  .image-container img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width:550px) {
  .homecontent {
    flex-direction: column;
    align-items: flex-start; 
    padding: 40px 20px;
    gap: 30px;
  }

  .left,
  .right {
    width: 100%;
    max-width: 100%;
  }

  .left {
    text-align: left; 
  }

  .imgcontainer {
    justify-content: flex-start;
  }
    .herosection {
    height: 100px;
  }

  .image-container img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width:355px){
  .herosection {
    height: 80px;
  }

  .image-container img {
    height: 100%;
    object-fit: cover;
  }
}