@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;700&display=swap');

/* Basic Reset and Font Family */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Sans Condensed', sans-serif;
}

/* Custom Color Variables */

:root {
  --grey: #899499;
  --black: #2B2B2B;
  --green: #E9D4C8;
  --white: #2d2d2d;
  --purple:	#BAB2B5;
}

/* Body Styles */
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--green);
}
a:hover{
  color: black;
}
.heading {
  margin: 10px 0;
  color: var(--white);
}
.sec-title {
  margin: 7rem 0 1.3rem 0;
  color: var(--white);
  font-weight: 700;
  font-size: 2.9rem;
  text-align: center;
}

.text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
  font-weight: 400;
}



/* CSS */
.button-6 {
  align-items: center;
  background-color: var(--green);
  border: 1px solid var(--white);
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
  background-color: #F0F0F1;
  color:var(--green)
}

.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

label{
  color:var(--white);
  margin: 10px 0 ;
}
/* Navbar Styles */
.navbar {
  background-color: var(--green);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand-content h4 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.brand-content p {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

/* Custom Toggler Icon */
/* Custom Toggler Button */
.navbar-toggler {
  border: none; /* Remove the default border */
  background: transparent; /* Ensure background is transparent */
}

/* Adjust Font Awesome Icon for Toggler */
.navbar-toggler .fa-bars {
  color: var(--black); /* Change the color to black or any desired color */
  font-size: 24px; /* Adjust the size as needed */
}

.navbar-toggler:focus {
  outline: none; /* Remove the focus outline */
}
.navbar-nav{
  gap:15px
}
.navbar-nav .nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  border: 1px solid white;
  border-radius: 23px;
  padding: 10px 20px;
  margin: 5px 0;
  transition: all 0.3s ease;
  letter-spacing: 2px;
width: 8rem;
text-align: center;
}

@media (max-width: 980px) {
  .navbar-nav .nav-link{
    width: 100%;
    
  }
}
.navbar-nav .nav-link:hover {
  background-color: black;
  color: var(--green);
  font-weight: bold;
  border: 1px solid black;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--green);
    width: 100%;
  }
  
  .navbar-nav {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  
  .nav-link {
    display: block;
    width: 100%;
  }
}



/* intro   */

/* Circle Image Container */
.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--white);
  padding: 2px;
}
.circle img {
  height: 100%;
  object-fit: cover; /* Ensure the image covers the circle area */
}
.social-icon {
  background-color: var(--white);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  margin: 0 1px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background-color: var(--green);
  color: var(--white);
}


/* highliht client */


/* Section Subtitle */
.sec-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}

/* Image Container */
.image-container {
  width: 100%;
  height: 200px; /* Reduced height for better visibility */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-container:hover {
  transform: scale(1.05);
}

/* carasoul */
  /* Custom CSS for the sliders */
  .swiper-container {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%; /* Make images cover the slider area */
    object-fit: cover; /* Ensure the image covers the area */
  }

  .slider-column {
    padding: 10px 5px; /* Adds some spacing between the columns */
  }
  .swiper-button-next, .swiper-button-prev{
    color: #2B2B2B;
  }
  .swiper-pagination-bullet-active{
    background-color: #2B2B2B;
  }
/* servics/ */
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  margin:auto
}

.service {
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  text-align: center;
  padding:20px;
  border-radius: 5px;
  font-size: 10px;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  transition: transform 0.5s, background 0.5s;
  border: 2px solid var(--white);
  width: 23rem;
  height: 17rem;
  color: var(--black);
  margin: auto;
  
}
@media (max-width: 1002px) { 
.service{
  width: 23rem;
  height: 18rem;
}

}
@media (max-width: 740px) { 
  .service{
    width: 18rem;
    height: 18rem;
  }}
  @media (max-width:308px) { 
    .service{
      width: 16rem;
      height: 15rem;
      font-size: 8px;
    }}
.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}

.service .service_heading {
  font-weight: 200;
  margin-bottom: 8px;
  color: var(--black);
}



.service_para {
  flex: 1;
  margin: 20px 0;
}

/* .service {
  transform: translateY(-22px); /* Move the card 5px upwards 
  transition: transform 7.5s, background 7.5s;
  animation: hoverAnimation 8s infinite alternate; /* Apply animation 
} */

@keyframes hoverAnimation {
  0% {
    transform:scale(0.7); /* Initial position */
  }
  10% {
    transform: scale(0.8); /* Move the card 30px upwards */
  }
  20% {
    transform: scale(0.7); /* Move the card 30px upwards */
  }
  30% {
    transform: scale(0.8); /* Move the card 30px upwards */
  } 
  40% {
    transform: scale(0.7); /* Move the card 30px upwards */
  } 50% {
    transform: scale(0.8); /* Move the card 30px upwards */
  } 60% {
    transform: scale(0.7); /* Move the card 30px upwards */
  } 70% {
    transform: scale(0.7); /* Move the card 30px upwards */
  } 80% {
    transform: scale(0.8); /* Move the card 30px upwards */
  }90% {
    transform: scale(0.7); /* Move the card 30px upwards */
  } 100% {
    transform: scale(0.8); /* Move the card 30px upwards */
  } 
 
}



#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black); /* assuming you have defined --black in a CSS variable */
  color: white;
  height: 90px;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
}

.footer-content span {
  margin-right: 10px;
}

.footer-content a {
  color: white;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}























/* work */
#workcomp{
  background-color: var(--green);
}

.card-title {
  font-weight: bold;
  font-size: 1.6rem;
  color: #013747;
}

.card {
  cursor: pointer;
}





