* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}





.about-us{
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.card-about-us{
    height: 500px;
    width: 80%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #c49a24;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    align-items: center;
    color: white;
}


.card-about-us h1{
    font-weight: 700;
}

.img-card img{
    height: 200px;
    padding-left: 50px;
    width: 400px;
}


.info-txt h1{
   font-weight: 700;
   font-size: 30px;
}
.info-txt h2{
   font-size: 20px;
   text-wrap: wrap;
   font-weight: 300;

}
.links-about{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 20px;
    color: white;
    font-weight: 600;
    padding-top: 30px;
}


/* Media query for responsiveness */
@media (max-width: 768px) {
    .carouselExample{
        height: fit-content;
    }

    .about-us {
        padding: 20px;
        height: fit-content;
    }

    .card-about-us {
        width: 90%;
        max-width: 400px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        background-color: #c49a24;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        padding: 20px;
        height: fit-content;
        margin-top: 100px;
    }

    .img-card img {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .info-txt {
        text-align: center;
    }

    .links-about {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .links-about p {
        margin: 5px 0;
    }
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    flex: 0 0 calc(20% - 20px);
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100px;
    height: 100px;
    display: block;
}

.card-content {
    padding: 20px;
}

.feature {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card:hover .overlay {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .card {
        flex: 0 0 calc(100% - 20px);
        margin-right: 0;
        align-items: center;
    }
}



.projects {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.projects h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 800px;
    display: flex;
    margin: 20px 0;
    height: 300px;
    background: linear-gradient(to right, #ffffff, #c49e34);
}

.project-card.left {
    flex-direction: row;
}

.project-card.right {
    flex-direction: row-reverse;
}

.project-card .image-wrapper {
    width: 50%;
    padding: 20px;
    background-color: #fff;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.project-info h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
    font-weight: 700;
}

.project-info p {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    
}

.project-card:hover {
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card, .project-card.left, .project-card.right {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .project-card .image-wrapper {
        width: 100%;
    }

    .project-card img {
        width: 100%;
        height: auto;
    }

    .project-info {
        text-align: center;
        width: 100%;
    }

    .project-info h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        color: #333;
        font-weight: 600;
    }

    .project-info {
        margin: 0 0 10px;
        font-size: 1rem;
        color: #333;
        font-weight: 700;
    }
}


.custom-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    margin: 20px 0;
}

.custom-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 200px;
    padding: 10px;
    background: #dca453;
}

.custom-slide h1{
    margin: 0;
    font-family:'montserrat';
    
    padding: 20px;
    font-weight: 700;
}
.custom-slide p{
    font-weight: 700;
       font-family:'montserrat';
}

.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

@media (max-width: 600px) {
    .custom-slider-container {
        height: 150px;
    }

    .custom-slide h1 {
        font-size: 1.2em;
    }

    .custom-slide p {
        font-size: 0.9em;
    }

    .custom-prev, .custom-next {
        padding: 8px;
    }
}


/* Navbar styles */
.nav-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other elements */
    background-color: #333; /* Adjust background color as needed */
}


/* Image slider styles */
.image-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-image {
    width: 100%;
    height: auto;
}



.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.slider-heading {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Adjust button styles as needed */
.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Navigation buttons */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}



@media only screen and (max-width: 767px) {
    
    .image-slider {
      padding-top: -5px; 
    }
  
    /* Adjust font size for mobile devices */
    .slider-heading {
      font-size: 20px; 
      padding-top: 100px;
    }
  
    /* Adjust button size for mobile devices */
    .btn {
      padding: 8px 16px; 
      font-size: 14px; 
    }
  }
  
  
  @media only screen and (min-width: 768px) {
    .slider-heading {
      font-size: 50px; 
    }
  
    .btn {
      padding: 10px 100px; 
      font-size: 18px;
    }
  }
  @media only screen and (max-width: 768px) {
    .info-txt btn {
      margin-right: 100px;
      font-size: 18px;
    }
  }




  .project-card .btn-secondary {
    background-color: #fff;
    color: black;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.project-card .btn-secondary:hover {
    background-color: #5a6268;
}


.footer-container {
    background: linear-gradient(to bottom, #ffffff,#c49a24) ;
    color: black;
    padding: 30px 20px;
    font-size: 14px;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-col {
    flex: 1 1 300px;
    margin-bottom: 20px;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}
.footer-col h4 {
    color: black;
    margin-bottom: 15px;
}
.footer-col p, .footer-col a {
    color: black;
    margin-bottom: 10px;
}
.footer-col a {
    text-decoration: none;
    color: black; /* Set link color to black */
}
.footer-socials {
    display: flex;
    margin-bottom: 10px;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: black;
    text-decoration: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid black;
}
.footer-socials a:hover {
    color: black;
    border-color: black;
}
.footer-bottom {
    border-top: 1px solid #6c757d;
    padding-top: 20px;
    text-align: center;
    color: black;
}
iframe {
    border: 0;
    width: 100%;
    height: 200px;
}



/* About Us */

.about-main{
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-main{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

}

.about-img{
    margin-left: 60px;
   }
.about-img img{
 height: 320px;
}

.about-card {
    width: 800px;
    height: 420px;
    border-radius: 15px;
    background:#c49a24;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  .about-card::before {
    content: "";
    height:500px;
    width: 500px;
    position: absolute;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    border: 35px solid rgba(184, 152, 9, 0.188);
    transition: all .8s ease;
    filter: blur(8rem);
    background:rgb(255, 255, 255);
  }
  
  .text-about {
    flex-grow: 1;
    padding: 15px 0 0 30px;
    display: flex;
    flex-direction: column;
    color: black;
    font-weight: 900;
    font-size: 1.2em;
    z-index:100;
    width: 600px;
  }

  .text-about span{
    font-size: 30px;
  }
  .text-about p{
    color: black;
    font-size: 15px;
    font-weight: 400;
  }
  
  
  .about-card:hover::before {
    width: 500px;
    height: 500px;
    top: -10%;
    left: 80%;
    filter: blur(0rem);
  }


/* next about us cards */



.cards-info-main {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 40px;
    border-radius: 50px;
  }
  
  .cards_item {
    display: flex;
    padding: 1rem;
    max-width: 350px;
    margin: 0 auto;
    height: fit-content;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    border-radius: 20px;height: 500px;
    margin-bottom: 30px;
    height: 600px;

  }
  
  .card_image {
    max-height: 250px;
    margin-top: -24px;
    img {
      width: 100%;
      max-width: 800px;
      height: 100%;
      object-fit: cover;
    }
    
    &:after {
      content: "";
      display: block;
      width: 100%;
      height: 100px;
      position: relative;
      top: -100px;
      background: linear-gradient(0deg, #091014 10%, rgba(0, 0, 0, 0) 100%);
    }
  }
  
  .card-info {
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .card_content {
    padding: 1rem;
    z-index: 1;
    display: block;
  }
  
  .card_title {
    font-size: 30px;
    line-height: 72px;
    margin-top: -50px;
    text-shadow: rgba(58, 57, 57, 0) 1px 0 5px;
    color: black;
    font-weight: 700;
  }
  
  .card_text {
    color: black;
    font-weight: 400;
  }
  
  
  
  #item_fig .card-info:after {
    color: rgba(234, 225, 175, 0.8);
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    display: block;
    width: 10ch;
    height: 1.5em;
    padding: 0.2em 0.4em;
    position: relative;
    bottom: calc(100% - 2.5em);
    left: 1em;
  }



  /* Gallery */

  .gallery{
    display: flex;
    flex-direction:column;
    align-items: center;
    height: max-content;
    justify-content: center;
    gap: 20px;
  }

  .gallery1 img{
    width: 900px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    height: 400px;
  }


  .img-child{
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .img-child img{
    height: 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
  }

 /* Contact */

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


.main-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form-panel {
  background-color: #c49a24;
  position: relative;
}

.form-circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, rgb(255, 255, 255));
  position: absolute;
}

.form-circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.form-circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.form-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-field-box {
  position: relative;
  margin: 1rem 0;
}

.input-box {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color:black;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.textarea-box .input-box {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.submit-btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.submit-btn:hover {
  background-color: transparent;
  color: #fff;
}

.info-panel {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-title {
  color: #1abc9c;
}

.contact-description {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.info-item-box {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.info-item-box i {
  color: #1ABC9C;
}

.social-link-section {
  padding: 2rem 0 0 0;
}

.social-link-section p {
  color: #333;
}

.social-icon-box {
  display: flex;
  margin-top: 0.5rem;
}

.social-icon-box a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #ffffff, #c49a24);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icon-box a:hover {
  transform: scale(1.05);
}

.main-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #faf7f7, #c49a24);
  bottom: 55%;
  right: 40%;
  transform: translate(-40%, 38%);
}

.main-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.main-box {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .main-box {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .main-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact-description {
    margin: 1rem 0 1.5rem 0;
  }

  .social-link-section {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .main-wrapper {
    padding: 1.5rem;
  }

  .main-box,
  .main-circle {
    display: none;
  }

  form,
  .info-panel {
    padding: 1.7rem 1.6rem;
  }

  .contact-description,
  .info-item-box,
  .social-link-section p {
    font-size: 0.8rem;
  }

  .contact-title {
    font-size: 1.15rem;
  }

  .social-icon-box a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .input-box {
    padding: 0.45rem 1.2rem;
  }

  .submit-btn {
    padding: 0.45rem 1.2rem;
  }
}

.contact-main{
    display: flex;
    align-items: center;
    justify-content: center;
}