 :root {
    --font-primary: 'Manrope', sans-serif !important;
    --colors-primary: #000000;
    --colors-grey: #eeeeee;
    --colors-blackish: #283338;
    --colors-white: #ffffff;
    --text-size-heading: 44px;
    --text-size-subheading: 32px;
    --text-size-section-heading: 18px;
    --text-size-body: 15.5px;
    --text-size-label: 16px;
    --size-container: 1192px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  image-rendering: pixelated;
  shape-rendering: crispEdges;
}

html {
  scroll-behavior: smooth;
}

a,
button {
  text-decoration: none;
  background: none;
  border: none;
  color: #000000 !important;
}

.contacthover: hover
{
  color: white !important;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: 'Manrope', sans-serif !important;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--colors-white);
  border-radius: 0 0 4px 4px;
  width: 100%;
  max-width: var(--size-container);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 24px;
  z-index: 100;
}

.navigation__hamburger {
  display: none;
}

.navigation__linkrow {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navigation__link {
  color: var(--colors-primary);
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px;
  font-size: 12px;
  cursor: pointer;
}

.navigation__link:hover {
  text-decoration: underline;
}

.navigation__link--highlight {
  border: 1px solid var(--colors-primary);
  border-radius: 0.5rem;
}

.navigation__link--highlight:hover {
  color: var(--colors-white);
  background-color: var(--colors-primary);
  text-decoration: none;
}

.navigation__sidebar {
  display: none;
}

/* hero section styles  */

.hero {
  height: 100vh;
  display: flex;
  align-items: stretch;
}

.heroSwiper {
  width: 50vw;
}

.heroSwiper > .swiper-wrapper > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  width: 50vw;
}

.hero__content {
     background-color: var(--colors-primary);
    color: var(--colors-grey);
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 9px;
    padding: 88px 100px 20px 70px;
    width: 50vw;
}

.hero__title {
  font-size: var(--text-size-heading);
  font-weight: 800;
  letter-spacing: -3%;
  line-height: 54px;
}

.hero__subtitle {
  font-size: var(--text-size-body);
  font-weight: 500;
  line-height: 32px;
}

/* end of hero section styles  */

/* projects section styles  */

.projects {
  /*min-height: 100vh;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--colors-white);
  position: relative;
  padding: 10px 20px;
}

.projects__bars {
  width: 100%;
  max-width: var(--size-container);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100vh;
  position: absolute;
}

.projects__bars > span {
  border: 0.5px solid hsla(0, 0%, 93%, 0.3);
  height: 100%;
}

.projects__main {
  width: 100%;
  max-width: var(--size-container);
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 20;
}

.projects__title {
  font-size: var(--text-size-subheading);
  font-weight: 800;
  letter-spacing: -3%;
}

.carousal__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousal__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fffaf8;
  border: 1px solid var(--colors-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.carousal__button--disabled {
  background: rgb(255, 250, 248);
  opacity: 0.3;
  pointer-events: none;
}

.projects__carousal {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 19px;
  width: 100%;
  max-width: var(--size-container);
  z-index: 20;
  overflow: scroll;
  transition: all 1s ease;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none;
}

.projects__carousal::-webkit-scrollbar {
  display: none;
}

.projects__carousal > * {
  flex: 1;
}

.projects__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 387px;
}

.projects__project-image {
  height: 256px;
  width: 100%;
  overflow: hidden;
}

.projectSwiper > .swiper-wrapper > img {
  height: 256px;
  object-fit: cover;
}

.projects__project-title {
  font-size: var(--text-size-section-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.projects__project-description {
  font-size: var(--text-size-body);
  font-weight: 500;
  line-height: 27px;
}

/* end of project styles  */

/* why us styles  */
.why-us {
  background-color: var(--colors-grey);
  min-height: 100vh;
}

.why-us__container {
  display: flex;
  max-width: var(--size-container);
  margin: 0px auto;
  padding: 100px 20px;
  gap: 120px;
}

.why-us__container > * {
  flex: 1;
}

.why-us__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-us__title {
  color: var(--colors-primary);
  font-size: var(--text-size-heading);
  font-weight: 800;
  line-height: 54px;
  letter-spacing: -3%;
}

.why-us__subtitle {
  font-size: var(--text-size-body);
  color: var(--colors-blackish);
  font-weight: 500;
  line-height: 32px;
}

.why-us__certifications {
  margin-top: 10px;
}
.why-us__certifications > img {
  height: 50px;
}

.why-us__certifications--mobile {
  display: none;
}
.why-us__certifications--mobile > img {
  height: 34px;
}

.why-us__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us__point {
  display: flex;
  flex-direction: column;
  width: 488px;
  gap: 4px;
}

.why-us__point-title {
  font-size: var(--text-size-section-heading);
  font-weight: 700;
  line-height: 32.78px;
}

.why-us__point-description {
  font-size: var(--text-size-body);
  font-weight: 500;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.56);
}

.why-us__point-bar {
  height: 0.5px;
  background-color: var(--colors-primary);
  width: 100%;
}

/* end of why us styles  */

/* about us styles  */

.about {
  margin: 100px 20px;
  /*background-image: url('/assets/images/about-us-bg.webp');*/
}

.about__container {
  max-width: var(--size-container);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__container > * {
  flex: 1;
}

.about__card {
  background-color: var(--colors-white);
  border-radius: 8px;
  padding: 0px 40px;
  font-size: var(--text-size-body);
  line-height: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--colors-blackish);
}

.about__card-title {
  color: var(--colors-primary);
  font-size: var(--text-size-heading);
  letter-spacing: -3%;
  line-height: 54px;
}

.about__card-content--highlight {
  font-weight: 700;
}

/* end of about us styles  */

/* contact us styles  */
.contact {
  background-color: var(--colors-white);
  padding: 120px 20px;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  max-width: var(--size-container);
  margin: 0 auto;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__title {
  color: var(--colors-primary);
  font-size: var(--text-size-heading);
  line-height: 54px;
  font-weight: 800;
  letter-spacing: -3%;
}
.contact__address {
  display: flex;
  flex-direction: column;
}

.contact__address-text {
  font-size: var(--text-size-body);
  font-weight: 500;
  line-height: 32px;
}

.containt__address-text--link {
  cursor: pointer;
}

.contact__address-text--link:hover {
  text-decoration: underline;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* end of contact us styles  */

/* footer styles  */
.footer {
  background-color: var(--colors-blackish);
  color: var(--colors-grey);
  padding: 40px 20px;
}

.footer__container {
  width: 100%;
  max-width: var(--size-container);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer__brand > img {
  height: 64px;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 600;
  line-height: 32px;
}



.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__row {
  display: flex;
  justify-content: center;
  gap: 20px;
  /*margin-bottom: 20px;*/
  flex-wrap: wrap;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 330px; /* Adjust based on your design */
  margin: 10px;
}

.service__icon {
  width: 50px; /* Adjust the size of the icons */
  height: 50px;
  margin-bottom: 10px;
}

.service__title {
  font-size: 18px;
  margin: 5px 0;
}

.service__description {
  font-size: 15.5px;
}

a:hover
{
  color: #838383 !important;
}

.custom-button {
 
border: 2px solid rgb(0 0 0);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
 /* background-color: rgb(247 82 25 / 22%);*/
  color:#fff;
}

.button-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}



.image-section {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px; /* Adjust as needed */
}

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

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
 /* background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background */
  padding: 20px;
  border-radius: 8px; /* Optional: Adds rounded corners */
}

.overlay-text h2 {
  margin: 0;
  font-size: 2em;
}

.overlay-text p {
  margin: 0;
  font-size: 1.2em;
}

.section {
  padding: 40px 0; /* Space between sections */
}

.section__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.section__row {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}

.section__row--reverse {
  flex-direction: row-reverse; /* Reverse the order of columns */
}

.section__image {
  flex: 1;
  padding: 10px;
}

.section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.section__content {
  flex: 1;
  padding: 50px;
}

.section__title {
  font-size: 24px;
  margin-bottom: 10px;
}

.section__text {
  font-size: 14pxpx;
  line-height: 28px;
}



.project-gallery {
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.project-column {
  flex: 1;
  margin: 0 10px;
}

.project-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.project-image:hover img {
  transform: scale(1.1); /* Hover effect */
}

.project-info {
  padding: 20px;
}

.project-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-synopsis {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.project-button {
  display: inline-block;
  padding: 5px 10px;
  background-color:#ffffff;
  border: #000000 .5px solid;
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.project-button:hover {
  background-color: #eeeeee;
}



.contact-section {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  max-width: 45%;
  background-color: #333;
  color: #fff;
  padding: 30px;
  text-align: left;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-icon img {
  max-width: 40px;
  margin-bottom: 20px;
}

.contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #f5f5f5;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: none;
  height: 150px;
}

.submit-btn {
  padding: 15px 30px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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


/* Base styles for the contact section */
.contact-section {
  padding: 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust spacing between columns as needed */
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px; /* Adjust minimum width for better responsiveness */
}

.contact-info {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.contact-info p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #333;
}

.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: #f75219;
  
  color: #fff !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
 float: left;
}

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


.contact-icon {
  position: relative;
  text-align: center; /* Center the content */
  margin-bottom: 20px ;
}

.contact-icon img {
  display: block; /* Remove any unwanted space below the image */
  margin: 0 auto;
}


.contact-divider {
  border: none;
  height: 5px; /* Adjust the thickness of the line */
  background-color: #fff; /* White color for the line */
  width: 50%; /* Adjust the width as needed */
  margin: 10px auto 0; /* Center align the line and adjust spacing */
}


.footer__container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #283338; /* Adjust the background color as needed */
}

.footer__column {
  flex: 1;
  margin-right: 20px; /* Space between columns */
}

.footer__column:first-child {
  flex: 2.5; /* Increase the width of the first column */
}


.footer__logo img {
  max-width: 100%; /* Make sure the logo is responsive */
}

.footer__column h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff; /* White text for headings */
}

.footer__column p, .footer__column ul {
  font-size: 14px;
  color: #ccc; /* Light grey text for paragraphs and menu items */
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column ul li {
  margin-bottom: 8px;
}

.footer__column ul li a {
  color: #ccc !important;
  text-decoration: none;
}

.footer__column ul li a:hover {
  text-decoration: underline;
  color: #fff;
}


.footer__social-icons {
  margin-top: 15px; /* Space between paragraph and icons */
}

.footer__social-icons a {
  display: inline-block;
  margin-right: 10px; /* Space between icons */
}

.footer__social-icons img {
  width: 24px; /* Adjust the size of the icons */
  height: 24px;
  transition: transform 0.3s ease;
}

.footer__social-icons a:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}


.shrink-text {
  position: relative;
  max-height: 3.6em; /* Approx. 2 lines of text */
  overflow: hidden;
  line-height: 1.8em; /* Adjust based on your font size */
  width: 200px;  
}

.shrink-text p {
  margin: 0;
}

.read-more {
  display: none; /* Initially hidden */
  position: absolute;
  bottom: 0;
  right: 0;
  background: white; /* Adjust to match your background color */
  padding-left: 5px;
}

.shrink-text:after {
  content: '...';
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 10px;
  background: white; /* Adjust to match your background color */
}

.shrink-text.expanded {
  max-height: none; /* Allows the full text to be shown */
}

.shrink-text.expanded:after {
  content: ''; /* Remove the ellipsis */
}

.shrink-text.expanded .read-more {
  display: none; /* Hide the "Read more" link once expanded */
}

.ellipsis-text {
  white-space: nowrap;        /* Prevents text from wrapping to the next line */
  overflow: hidden;           /* Hides any overflow */
  text-overflow: ellipsis;    /* Adds the ellipsis at the end */
}


.header-image-about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}

.header-image-services::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-projects::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-career::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}




.header-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}


.footer-img
{
  background-image: url(assets/images/samplebanner.jpg);
   background-size: cover;
    background-position: center center;
}


.header-image-contact
{
  background-image: url(assets/images/contactus.jpg);
     height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}



.header-image-career
{
  background-image: url(assets/images/career.jpg);
     height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.header-image-projects
{
  background-image: url(assets/images/projects.jpg);
     height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}


.header-image-services
{
  background-image: url(assets/images/services.jpg);
     height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}


.header-image-about
{
  background-image: url(assets/images/aboutus.jpg);
     height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}


.header-image
{
  background-image: url(assets/images/samplebanner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.headerimage-content
{
  position: absolute;
    top: 25%;
    text-align: center;
    width: 100%;
    color: white;
}



.header-image-emirateshills::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-emirateshills
{
  background-image: url(assets/images/tgcprojects/emirateshills-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}



.header-image-hamilton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-hamilton
{
  background-image: url(assets/images/tgcprojects/hamilton-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}





.header-image-rosemont::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-rosemont
{
  background-image: url(assets/images/tgcprojects/rosemont-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}




.header-image-lamer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-lamer
{
  background-image: url(assets/images/tgcprojects/lamervilla-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}







.header-image-warehouse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); /* Change the color and opacity as needed */
}
.header-image-warehouse
{
  background-image: url(assets/images/tgcprojects/warehouse-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}




.header-image-hillmont::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); 
}
.header-image-hillmont
{
  background-image: url(assets/images/tgcprojects/hillmont-banner.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}



.header-image-ellington-house::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%); 
}
.header-image-ellington-house
{
  background-image: url(assets/images/tgcprojects/ellingtonhouse4.jpg);
    height: 80vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}








.overlay-text-2 h2 {
    margin: 0;
    font-size: 2em;
}
.banner-heading
{
  width: 50%;

}

.headerimage-content-about
{
  position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    color: white;
}

.footer-section
{
  width: 100%;
  background-color: #283338;
}

.contact__form span
{
  color: white !important;
}

.submit-form-btn
{
 color: #f85219;
    background-color: #ffffff;
    padding: 6px 16px;
    border: 1px solid #f85219;
}

.submit-form-btn:hover
{
 color: #f85219;
    background-color: #ffffff;
    padding: 6px 16px;
    border: 1px solid #f85219;
}







/* Responsive styles */
@media (max-width: 768px) {

  .mob-padding-footer
  {

    padding: 0px 30px;
  }
  .contact-row {
    flex-direction: column;
  }
  .navigation__link {
  font-size: 16px !important;
}

.carousel {
    
    height: 600px !important;
    width: 97% !important;
}
.mob1-padding
{
  padding: 20px 40px;
}


.mob-center
{
  text-align: center;
}

.header-image
{
  background-image: url(assets/images/samplebanner.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.headerimage-content
{
  position: absolute;
    top: 18%;
    text-align: center;
    width: 100%;
    color: white;
}

.footer__column h4
{
  text-align: center !important;
}

.footer__column p
{
  text-align: center !important;
  padding: 5px 0px;
}

.footer__column ul
{
  text-align: center !important;
  padding: 5px 0px;
}
.footer__social-icons
{
  text-align: center;
  padding: 5px 0px;
}


.banner-heading
{
  width: 100%;
  padding: 0px 20px;
  
}



}




/* Responsive adjustments */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .project-column {
    margin-bottom: 20px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section__row,
  .section__row--reverse {
    flex-direction: column;
  }

  .section__image,
  .section__content {
    padding: 0;
    margin-bottom: 20px;
  }
}



/* end of footer styles  */

/* responsive styles  */

/* large screens  */
@media (max-width: 1024px) {
  :root {
    /* text variables  */
    --text-size-heading: 32px;
    --text-size-subheading: 24px;
    --text-size-section-heading: 18px;
    --text-size-body: 14px;
    --text-size-label: 16px;

    /* sizing variables */
    --size-container: 100vw;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* navigation styles  */
  .navigation {
    background-color: var(--colors-white);
    border-radius: 0 0 4px 4px;
    padding: 20px;
    z-index: 100;
    position: relative;
  }

  .navigation__linkrow {
    display: none;
  }
  .navigation__brand {
    z-index: 60;
  }

  .navigation__hamburger {
    display: block;
    z-index: 60;
  }

  .navigation__sidebar {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--colors-white);
    min-height: 100vh;
    padding: 40px 0;
    transform: translateY(-100%);
    transition: all 0.5s ease;
  }

  .navigation__sidebar--active {
    transform: translateY(0);
    transition: all 0.5s ease;
  }

  .navigation__sidebar__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 100%;
  }

  .navigation__sidebar__link {
    font: var(--font-primary);
    font-weight: 800;
    font-size: var(--text-size-subheading);
    color: var(--colors-blackish);
  }
  /* end of navigation styles  */

  /* hero styles  */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero > * {
    width: 100%;
  }

  .heroSwiper > .swiper-wrapper > img {
    width: 100vw;
    height: 70vh;
  }

  .heroSwiper > .swiper-wrapper > img {
    width: 100vw;
  }

  .hero__content {
    gap: 20px;
    padding: 64px 20px;
  }

  .hero__title {
    line-height: 44px;
  }

  .hero__subtitle {
    line-height: 22px;
  }
  /* end of hero styles  */

  /* projects styles  */
  .projects {
    min-height: 80vh;
    padding: 0 20px;
  }

  .projects__bars {
    display: none;
  }

  .projects__main {
    padding: 0 20px;
    gap: 24px;
    
  }

  .carousal__buttons {
    display: none;
  }

  .projects__carousal {
    gap: 20px;
    padding: 0 20px;
    overflow: scroll;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none;
  }

  .projects__carousal::-webkit-scrollbar {
    display: none;
  }

  .projects__carousal > * {
    min-width: 240px;
    flex: 1;
  }

  .projects__card {
    gap: 10px;
  }

  .projects__project-image > img {
    height: 160px;
  }

  .projects__title {
    margin-top: 10px;
    line-height: 24px;
  }

  .projects__project-description {
    line-height: 22px;
  }
  /* end of projects styles  */

  /* why us styles  */

  .why-us__container {
    flex-direction: column;
    padding: 120px 20px;
    gap: 60px;
  }

  .why-us__main {
    gap: 20px;
  }

  .why-us__title {
    line-height: 43px;
  }

  .why-us__subtitle {
    line-height: 22px;
  }

  .why-us__certifications {
    display: none;
  }

  .why-us__certifications--mobile {
    display: block;
  }

  .why-us__points {
    gap: 24px;
  }

  .why-us__point {
    width: 100%;
    gap: 11px;
  }

  .why-us__point-title {
    line-height: 24px;
  }

  .why-us__point-description {
    line-height: 22px;
  }
  /* end of why us styles  */

  /* about us styles  */
  .about {
    padding: 0px 20px;
  }

  .about__container {
    gap: 42px;
  }
  .about__logo > img {
    height: 49px;
  }

  .about__container {
    flex-direction: column;
    width: fit-content;
  }

  .about__card {
    border-radius: 5px;
    padding: 40px 16px;
    line-height: 22px;
  }

  .about__card-title {
    line-height: 32.78px;
  }
  /* end of about us styles  */

  /* contact us styles  */
  .contact {
    padding: 100px 20px;
  }

  .contact__container {
    width: fit-content;
    flex-direction: column;
    gap: 42px;
  }

  .contact__content {
    gap: 20px;
  }

  .contact__title {
    line-height: 32.78px;
  }

  .contact__address-text {
    line-height: 22px;
  }

  /* end of contact us styles  */

  /* footer styles  */
  .footer {
    padding: 40px 0;
  }

  .footer__container {
    flex-direction: column;
  }

  .footer__brand > img {
    height: 32px;
  }

  .footer__copyright {
    font-size: 10px;
    line-height: 22px;
  }
  /* end of footer styles  */
}

/* extra large screens  */
@media (max-width: 1280px) {
}

/* double extra large screens  */
@media (max-width: 1536px) {
}

/* end of responsive styles  */



/*my button code*/
.custom-button-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ff5000;  /* Orange color */
    text-decoration: none;
    border: 2px solid #000000;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.custom-button-1 .arrow-1 {
    margin-left: 8px;
    transition: margin-left 0.3s ease-in-out;
}

.custom-button-1:hover {
    background: #000000;
    color: white;
    text-decoration: none;
}

.custom-button-1:hover .arrow-1 {
    margin-left: 12px;  /* Moves arrow slightly on hover */
}
