@import url('https://fonts.googleapis.com/css2?family=Rubik+Vinyl&family=Space+Grotesk&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #ffffff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-logo a {
  text-decoration: none;
  /* font-size: 2.5rem; */
}

.navbar-logo img {
  width: 230px;
  margin-right: 10px;

}

.navbar-logo img:hover {
  opacity: 0.6;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-item {
  margin-left: 20px;
}

.navbar-links {
  color: #3C4151;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.navbar-links:hover {
  color: #0066ff;
}

/* Mobile Styles */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #0066ff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: rgb(231, 230, 230);
    text-align: center;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-item {
    margin: 15px 0;
  }

  .navbar-toggle {
    display: flex;
  }
}


.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}





/* content */
.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}

.classical-img {
  margin-right: 72px;
  height: auto;
  width: 50%;
}

/* projects start */
.projectsdesc {
  margin-top: 40px;
}


.project1 {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.project1 .content1 {
  width: 545px;
  margin-right: 80px;
  margin-bottom: 80px;
}

.project1 .img1 {
  position: relative;
  float: right;
  width: 300px;
}




.project2 {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.project2 .content2 {
  width: 545px;
  margin-right: 80px;
  margin-bottom: 80px;
}

.project2 .img2 {
  position: relative;
  float: right;
  width: 300px;
}




.project3 {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.project3 .content3 {
  width: 545px;
  margin-right: 80px;
  margin-bottom: 80px;
}

.project3 .img3 {
  position: relative;
  float: right;
  width: 300px;
}

.project3 .img3 .project31 {
  margin-bottom: 20px;
}

.project1 .content1 p,
.project2 .content2 p,
.project3 .content3 p {
  font-size: 20px;
}





























footer {
  background-color: #333333;
  color: white;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  width: 49%;
}

.footer-left p,
.footer-right p {
  margin: 0;
  color: #9d9d9d;
}

.footer-right nav a {
  color: #9d9d9d;
  text-decoration: none;
  margin-right: 15px;
  display: inline-block;
  font-size: 35px;
}

.footer-right nav a:hover {
  color: #0066ff;
}

.copyright {
  margin-top: 10px;
  background-color: #222222;
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.copyright p {
  margin: 0;
  color: #9d9d9d;
  margin-left: 20px;
  margin-right: 20px;
}


@media screen and (max-width: 1024px) {
  
  footer {
    padding: 25px;
  }
}
@media screen and (max-width: 768px) {
  
  footer {
    padding: 25px;
  }
}

@media screen and (max-width: 750px) {

  footer iframe {
    display: none;
  }

  iframe {
    display: block;
    margin: auto;
    margin-bottom: 25px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

}