@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');


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

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  background-color: #fff;
  font-size: 18px;
}


.projects-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 32px;
	margin-top: 10vh;
	margin-bottom: 30vh;
}

.projecttitle {
	margin-top: 30vh;
}

.projectpara {
	color: #000;
	
}

.projecto {
	text-align: center;
	font-size: 18px;
}

.project-card {
    position: relative;
    width: 300px;
    height: 400px;
    background: #ffffff;
    border-radius: 4px;
    margin: 0 auto;

}

.project-card::before,
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    z-index: -1;
    transition: .5s;
}

.project-card:hover::after {
    transform: rotate(10deg);
}

.project-card:hover::before {
    transform: rotate(20deg);
}

.project-img-box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fff;
    z-index: 1;
	border-radius: 4px;
    transition: .5s;
}

.project-card:hover .project-img-box {
    bottom: 75px;
}

.project-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-details {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 55px;
}

.project-details h2 {
    margin-top: 5px;
    padding: 0;
    font-weight: 900;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 1.15em;
}

.project-details h2 span {
    font-weight: 400;
    font-size: 18px;
    color: #c69320;
}


/* Banner styling */
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.banner-image {
  display: none;
}

.banner {
  background: url("../img/workers6.jpg") no-repeat center center / 100%;
  width: 100%;
  height: 100%;
}

.banner-inner {
  height: calc(100vh + 97px);
  display: flex;
  align-items: center;
}

.banner-content h1 {
  color: #ffff;
  font-weight: 300;
  font-size: 47px;
  line-height: 70px;
  margin-bottom: 40px;
}

.banner-content h1 b {
  font-weight: 700;
}

.banner-content span {
  color: #c69320;
  font-weight: 700;
}

.theme-btn {
  background-color: #c69320;
  padding: 16px 50px;
  text-decoration: none;
  color: #000;
  display: inline-block;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.5s;
  border-radius: 5px;
}

.theme-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #c69320;
}

.foottheme-btn {
  background-color: #000;
  border: 1px solid #c69320;
  color:#c69320;
  padding: 16px 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.5s;
  border-radius: 5px;
}

.foottheme-btn:hover {
  background-color: #f0c96e;
  border: 1px solid #0000;
  color: #0000;
}

/* Additional styling for content sections */
main {
  padding: 20px;
}

section {
  padding: 40px 0;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #c69320;
  text-align: center;
}

h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #c69320;
  text-align: center;
  font-weight: 500;
}

.about p, .services p, .contact form {
  font-size: 18px;
  color: #000;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  flex: 1;
  min-width: 300px;
  background: #c69320;
  padding: 20px;
  border-radius: 5px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact button {
  padding: 10px;
  background-color: #c69320;
  color: #3d4244;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: transparent;
  border: 1px solid #c69320
}

/* Media queries */
@media (min-width: 1450px) and (max-width: 1599px) {
  .container {
    width: 1310px;
  }

}

@media (min-width: 1600px) and (max-width: 1920px) {
  .container {
    width: 1510px;
  }
  
  .projectpara {
	padding: 10px 20px;
	margin: 20vh;
	
}
}

@media (min-width: 992px) and (max-width: 1199px) {

  .container {
    width: 960px;
  }
  .banner-content h1 {
    font-size: 37px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .theme-btn {
    padding: 14px 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  
  .container {
    width: 720px;
  }
  .banner-content h1 {
    font-size: 27px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .theme-btn {
    padding: 14px 40px;
  }
}

@media (max-width: 767px) {

  .banner {
    background: transparent;
  }
  .banner-image {
    display: block;
  }
  .banner-image img {
    display: block;
    max-width: 100%;
  }
  .banner-inner {
    flex-direction: column;
    margin-top: 100px;
    height: auto;
  }
  .banner-content {
    margin-top: 15px;
    text-align: center;
  }
  .container {
    width: 100%;
  }
  .banner-content h1 {
    padding-top: 20vh;
    font-size: 28px;
    line-height: 36px;
	color: #000;
	font-weight: 500;
  }
  .theme-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}


.page_container {
  width: 100%;
  max-width: 940px;
  min-height: 400px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  background-color: #d1d1d1;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  color: #000;
}

.serve {
	text-align: center;
}

.servepara {
	padding: 10px 20px;
	color: #000;
}

.servecontra {
	padding: 10px 20px;
	text-align: center;
	font-size: 18px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-top: 50px;
  padding-bottom: 50px;
}

.card_container_sm {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.card_container_md {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.card {
  height: auto;
  margin: 10px;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
}

.card01 {
  background-image: url(../img/team1.jpg);
}

.card02 {
  background-image: url(../img/workers2.jpg);
}

.card03 {
  background-image: url(../img/stadium4.jpg);
}

.card04 {
  background-image: url(../img/telteam4.jpg);
}

.card_category {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card_title {
  color: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
}

.card_button {
  position: relative;
  left: 5px;
  bottom: 10px;
  display: block;  
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: 20px;
  margin-bottom: 2px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #c69320;
}

.card_button:active {
  color: #0000;
}

.card_container_md .card_title {
  max-width: 80%;
}

/* Media Queries */
@media (max-width: 768px) {
  .card_container_sm, .card_container_md {
    width: 100%;
    max-width: none;
  }
  
  .card_container_md .card_title {
    max-width: 100%;
  }
  
  .row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .card_button {
    left: 15px;
    bottom: 15px;
    padding: 8px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .card_container_sm, .card_container_md {
    width: 100%;
    max-width: none;
  }
  
  .card {
    padding: 20px;
  }
  
  .card_button {
    left: 10px;
    bottom: 10px;
    padding: 6px 15px;
    font-size: 10px;
  }
}

