/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* utils */
.brchure-btn {
  padding: 1rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  background-color: #db262d;
  color: #ffffff;
  outline: none;
  border: none;
  margin-top: 1rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.brchure-btn:hover {
  transform: scale(1.1);
}

body {
  font-family: "Poppins", sans-serif;
  max-width: 1800px;
  margin: 0 auto;
}

header {
  background-color: #121212;
  color: white;
  padding: 3rem;
  text-align: center;
  width: 100%;
  padding: -2rem 8rem;
}

header p,
h1 {
  margin-top: 1rem;
}

.main-logo {
  width: 120px;
}

h2 {
  margin-top: 1rem;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 3rem;
}

main h2 {
  margin-bottom: 1rem;
}

#category-list,
#project-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

#category-list .card {
  position: relative;
  background-color: #db262d;
  width: 200px;
  height: 240px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgb(167, 167, 167);
}

#category-list .card img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

#category-list .card .card-title {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  z-index: 2;
  color: white;
}

#category-list .card .card-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #121212; */
  z-index: 1;
  background: linear-gradient(360deg, rgba(2,0,36,1) 3%, rgba(38,38,47,0.2) 32% 100%);
  border-radius: 10px;
}

.category-item,
.project-item {
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.category-item:hover,
.project-item:hover {
  background-color: #ddd;
}

.footer {
  background-color: #121212;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #DB262D;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  color: white;
}

.footer-bottom a{
  margin-top: 20px;
  font-size: 12px;
  color: white;
}

/*--------------------------------------------------------------
  9. Footer
----------------------------------------------------------------*/

.cs_footer {
  color: #c1c1c1;
  background-color: var(--primary);
  background-color: #121212;
}

.cs_footer_in {
  padding: 150px 0 90px;
}

.cs_copyright {
  font-size: 18px;
  border-top: 1px solid #454545;
  padding: 35px 0;
}

.cs_footer_nav {
  list-style: none;
  padding: 0 0 40px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.6em;
  color: #fff;
}

.cs_footer_nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs_footer_nav a:hover {
  color: #DB262D;
}

.cs_footer_nav > li {
  margin: 5px 25px;
}



.cs_footer_social {
  display: grid;
  grid-gap: 15px 30px;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
}

.cs_footer_social a {
  padding: 10px 15px;
  min-height: 70px;
}

.cs_footer_social a:hover {
  border-color: var(--accent);
}

.cs_footer_contact_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.6em;
  margin: -10px -20px;
}

.cs_footer_contact_list li {
  padding-left: 30px;
  position: relative;
  margin: 10px 20px;
  max-width: 200px;
}

.cs_footer_contact_list li i {
  color: #fff;
  position: absolute;
  left: 0;
  top: 8px;
  display: flex;
}

.cs_footer_info img {
  width: 120px;
  margin-bottom: 20px;
}

.cs_footer_info p {
  margin-bottom: 50px;
  /* padding-right: 250px; */
  margin: 10px;
}

.cs_footer_info a {
  font-size: 30px;
  display: inline-block;
  color: var(--white);
  font-weight: 900;
  line-height: 1.2em;
}

.cs_footer_info a:hover {
  color: var(--accent-color);
}

@media screen and (max-width: 1199px) {
  /* Add styles for max-width 1199px here if needed */
}

@media screen and (max-width: 991px) {
  .cs_footer_social {
    grid-template-columns: repeat(1, 1fr);
  }
  .cs_footer_info a {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .cs_footer_info p {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  /* Add styles for max-width 767px here if needed */
}

.row{
  display:flex;
  flex-direction: row;
  padding: 110px;
}

.social-btn {
  padding: 1rem 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: white;
  background-color: transparent;
  outline: none;
  border: 1px solid white;
  margin-top: 1rem;
  transition: all 0.5s ease;
  cursor: pointer;
}

.rights{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.cs_height_60{
  padding: 40px;
}

.cs_height_60 ul li{
  padding: 30px;
  list-style: none;
}

.left{
  width: 50%;
}

@media screen and (max-width: 1208px) {
  .row{
    display:flex;
    flex-direction: column;
    padding: 30px;

  }

  .cs_height_60{
    padding: 0;
    align-items: center;
  }

  #category-list,
#project-list {
  display: flex;
  gap: 2rem;
}

.left{
  width: 100%;
}

.cs_height_60{
  padding: 40px;
}
}
