@import url(https://fonts.googleapis.com/css?family=Lily+Script+One);
*{
  margin:0;
  padding:0;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #2c3e50;
  color: #fff;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ccc;
}


.quote-btn {
  background-color:white;
  color: #2c3e50;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quote-btn:hover {
  background-color:#ff5e14;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #2c3e50;
    width: 100%;
    padding: 1em;
    flex-direction: column;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .hamburger {
    display: block;
  }

  .nav-links.show {
    display: flex;
  }

  .quote-btn {
    display: none;
  }

  .logo span {
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}
}
/*Home*/

#homediv{
  margin-right:25px;
}

.contactt{
  
  border:2px solid rgba(153, 151, 151, 0.288);
  width:23em;
  height:18em;
  padding:1.4em;
  margin:15px;
  text-align: center;
}

@media all and (max-width:640px){
  .contactt{  
  border:2px solid rgba(153, 151, 151, 0.288);
  width:17em;
  height:19em;
  padding:1.4em;
  margin:8px;
  text-align: center;
  }
}


/*cons*/
.services img{
  border-top-right-radius: 100px;
}


/*home*/

@media all and (max-width:640px){
  .img_content img{
    width:130%;
  }
}

/*Testimonials*/





.testimonial-container{
  background-color: #393E46;
  color: #fff;
  border-radius: 5px;
  margin: 20px auto;
  padding: 50px 80px;
  max-width: 768px;
  position:relative;
}

.fa-quote{
  color:#FFD369;
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-right{
  left: 40px;
}

.fa-quote-left{
  right: 40px;
}

.testimonial{
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
}

.user{
  display:flex;
  align-items:center;
  justify-content: center;
}



.user .user-details{
  margin-left: 10px;
}

.user .username{
  margin: 0;
}

.user .role{
  font-weight: normal;
  margin: 10px 0;
}

.progress-bar{
  background-color: #FFD369;
  height: 4px;
  width: 100%;
  margin-bottom: 40px;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

@keyframes grow{
  0%{
    transform: scaleX(0);
  }
}




@media(max-width: 768px){
  .testimonial-container{
    padding: 20px 30px;
  }
  
  .fa-quote{
    display: none;
  }
}


/* general styling */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --clr-bg: #222;
  --clr-primary: #f5f5f5;
  --clr-secondary: #075985; 
}

html {
  background-color: var(--clr-bg);
  font-family: system-ui;
  font-family: system-ui;
}

/*body {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 1.5rem;
  font-size: clamp(0.9rem, 2.5vw,1.4rem);
  color: var(--clr-primary);
  padding: 1rem;
  background-image: radial-gradient(circle, rgba(175, 208, 84, .25) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 40px 40px;
}*/

body::after {
  content: "";
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 32px;
  height: 32px;
  background-size: cover;
  }
/*h1 {
  font-size: clamp(1rem, 2.5vw + 0.25rem, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.testimonials{
    --_trans-speed: 300ms;
    --_avatar-size: 4rem;
    --_quote-bg-clr: var(--clr-secondary);
    --_quote-padding: 1rem;
    --_quote-pointer-offset: 1rem;
    --_quote-offset: 1rem; /* this is to allow for the bottom arrow indicator*/
    --_quotemarks-size: 60px;
    --_quotemarks-offset-x: -1rem;
    --_quotemarks-offset-y: -2rem;
    --_clip-text: polygon(0 0, 0 0, 0 100%);
    --_clip-text-width: 80px;
    --_dots-size: 1.5rem;
    --_dots-bg-clr: var(--clr-secondary);
    --_dots-inset: 100%;
    --_dots-border-clr: var(--clr-secondary);
  
    width: min(calc(100% - 2rem), 600px);
    margin-inline: auto;
    background-color: rgba(0 0 0 / .5);
    border: 1px solid var(--clr-secondary);
    padding: 3rem;
}
@media (min-width:600px) {
    .testimonials {
        --_quotemarks-offset-x: -1rem;
        --_quotemarks-offset-y: -1rem;
        --_quotemarks-size: 80px;
      --_quote-padding: 1rem 1.5rem 3rem 3rem ;
        --_box-clip-start-x: 100px;
        --_clip-text: polygon(0 0, 70% 0, 0 100%);
    }
}


.quotes{
    --_box-clip: polygon(var(--_box-clip-start-x) 0,
        100%  0,
        100% calc(100% - var(--_quote-offset)),
        calc(100% - var(--_quote-pointer-offset)) calc(100% - var(--_quote-offset)),
        calc(100% - (var(--_quote-pointer-offset) + 1rem)) 100%,
        calc(100% - (var(--_quote-pointer-offset) + 2rem)) calc(100% - var(--_quote-offset)),
        0 calc(100% - var(--_quote-offset))
    );
    display: grid;
    place-content: center;
    grid-template-areas: 'stack';
    width: 100%;
    transition: width var(--_trans-speed) ease-in-out;
}

.quotes > article {
    grid-area: stack;
    transition: all 300ms;
    margin-block-end: 1rem;
}
.quotes .clip {
    height: 100%;
    width: var(--_clip-text-width);
    shape-outside: var(--_clip-text);
    float: left;
    display: block;
}
.quotes blockquote{
    margin-bottom: 1rem;
    text-align: right;
    transition: scale var(--_trans-speed) ease-in-out;
    scale: var(--_scale, 0);
    display: flex;
}

/* quote mark*/
.quotes blockquote::before{
    content: '';
    position: absolute;
    top: var(--_quotemarks-offset-y);
    left: var(--_quotemarks-offset-x);
    z-index: 2;
    width: var(--_quotemarks-size);
    height: var(--_quotemarks-size);
    transition: translate, opacity, top;
    transition-timing-function: ease-in-out;
    transition-duration:  var(--_trans-speed);
    transition-delay: var(--_trans-delay-quotes, 0ms);
    opacity: var(--_opacity,0);
    scale: var(--_scale,0);
    background-image: url('data:image/svg+xml,<svg fill="white" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>quote</title><path d="M9.563 8.469l-0.813-1.25c-5.625 3.781-8.75 8.375-8.75 12.156 0 3.656 2.688 5.375 4.969 5.375 2.875 0 4.906-2.438 4.906-5 0-2.156-1.375-4-3.219-4.688-0.531-0.188-1.031-0.344-1.031-1.25 0-1.156 0.844-2.875 3.938-5.344zM21.969 8.469l-0.813-1.25c-5.563 3.781-8.75 8.375-8.75 12.156 0 3.656 2.75 5.375 5.031 5.375 2.906 0 4.969-2.438 4.969-5 0-2.156-1.406-4-3.313-4.688-0.531-0.188-1-0.344-1-1.25 0-1.156 0.875-2.875 3.875-5.344z"></path></g></svg>');
  background-repeat: no-repeat;
}


.quotes blockquote > p{
    position: relative;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    padding: var(--_quote-padding);
    isolation: isolate;
    background: var(--_quote-bg-clr);
    clip-path: var(--_box-clip);
    text-wrap: balance;
    color:white;
}

.quotes .user{
    display: flex;
    align-items: start;
    gap: 1rem;
    justify-content: end;
    text-align: right;
}

.quotes .user  *{
  opacity: var(--_opacity,0);
  transition: 
    translate var(--_trans-speed) ease-in-out, 
    opacity var(--_trans-speed) ease-in-out,
    scale var(--_trans-speed) ease-in-out;;
}

/* user - name */
.quotes .user p:first-child{
    font-size: 14px;
    color: var(--clr-primary);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    translate: var(--_translate, 0 2rem);
    transition-delay: var(--_trans-delay-name,0ms);
}
/* user - role */
.quotes .user p:last-child{
    font-weight: 300;
    font-size: 12px;
    color: white;
    translate: var(--_translate, 0 2rem);
    transition-delay: var(--_trans-delay-role, 0ms);
}
/* user - image*/
.quotes .user img{
    border-radius: 2px;
    border: 1px solid var(--clr-primary);
    width: var(--_avatar-size, 60px);
    height:var(--_avatar-size, 60px);
    object-fit: cover;
    transition-delay: var(--_trans-delay-img,0ms);
    scale: var(--_scale,0);
}
/* checked all */
input[type=radio]:checked + article{
  --_scale: 1;
  --_translate: 0 0;
  --_opacity: 1;
  --_trans-delay-quotes: 300ms;
  --_trans-delay-name: 300ms;
  --_trans-delay-role: 400ms;
  --_trans-delay-img: 500ms;
}


.dots {
    padding: .25rem .5rem;
    border-radius: 3px;
    border: 1px dashed transparent;
    width: fit-content;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: border-color 300ms ease-in-out;
}
.dots > label {
    border-radius: 1rem;
    border: 1px solid var(--_dots-border-clr);
    position: relative;
    width: var(--_dots-size);
    height: var(--_dots-size);
    aspect-ratio: 1;
    cursor: pointer;
    transition: border-color var(--_trans-speed) ease-in-out, border-color var(--_trans-speed) ease-in-out;
}


.dots > label::before{
    content: '';
    position: absolute;
    border-radius: inherit;
    inset: var(--_dots-inset);
    background-color: var(--_dots-bg-clr);
    transition: inset 300ms ease-in-out;
}

.dots > label:hover::before,
.quotes:has(input#option-1:checked) + .dots > label:nth-child(1)::before,
.quotes:has(input#option-2:checked) + .dots > label:nth-child(2)::before,
.quotes:has(input#option-3:checked) + .dots > label:nth-child(3)::before,
.quotes:has(input#option-4:checked) + .dots > label:nth-child(4)::before,
.quotes:has(input#option-5:checked) + .dots > label:nth-child(5)::before  {
    --_dots-inset: .25rem;
}
/* focus using keyboard adds border */
.quotes:has(input:focus-visible) + .dots{
    border-color: var(--clr-primary);
}
/*
.quotes:has(input#option-1:focus-visible) + .dots > label:nth-child(1),
.quotes:has(input#option-2:focus-visible) + .dots > label:nth-child(2),
.quotes:has(input#option-3:focus-visible) + .dots > label:nth-child(3){
  --clr-border: var(--clr-primary);
}
*/

/* About */

.divcont p{
  font-size:15px;
}
.divconti img{
  border-radius: 25px;
  margin:15px;
}
.divcont_peel li{
  font-size:16px;

}

#divcont_peeloff{
  border:2px solid #ff5e14;
  border-radius:40px 40px;
  
}

.buildconst img{
  border-radius: 25px;
}

@media all and (max-width:640px){
  .divconti img{
    margin:0;
  }
  #divcont_peeloff{
    margin:15px;
    border:1px solid #ff5e14;
}
#divcont_peeloff p{
  margin:10px;
}

}

/*Third Part About */
div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}


/*Fifth Part*/
.foundation {
    background-color: #f7f7f7;
    padding: 50px 0;
}

 #drives{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.value h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.value p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */

@media (max-width: 768px) {
    .values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values {
        grid-template-columns: 1fr;
    }
}


/*Sixth Part*/
header {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header h2 {
    font-size: 1.8rem;
    font-weight: lighter;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.intro {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.reflection {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
    font-size:15px;
    line-height: 1.5;
}


/*Services Part*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-content {
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.about {
    padding: 2rem;
    text-align: center;
}

.benefits {
    padding: 2rem;
    background-color: #f7f7f7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process {
    padding: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step span {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 1rem;
}

/*Commericial*/

.portfolio {
  padding: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.project {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.project p {
  font-size: 12px;
  margin-top: 1rem;
}

/* Hover effect */
.project:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.project:hover p {
  color: #333;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .project img {
    height: 100px;
  }
}


/*Renovation & Remodeling*/

/*hr*/
.hr3 {
        height: 15px;
        border: 0;
        box-shadow: inset 0 12px 12px -12px rgba(9, 84, 132);
      }
    

  /*contact*/
  #contact-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 10px;
}

input, select, textarea {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #3e8e41;
}






























/*Footer
ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background:linear-gradient(#5a8eee, #4066e8);
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color:white;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: white;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color:white;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}*/

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: 25%;
  margin: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color:#ff5e14;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ccc;
}

.social-links {
  display: flex;
}

.social-links li {
  margin-right: 10px;
}

.social-links a {
  font-size: 18px;
}

.copyright {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-column {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%;
  }
}

/*Completed Projects*/
.gallery_title {
  text-align: center;
  padding-bottom: 1rem;
}

.gallery {
  box-shadow: 0 0.1rem 0 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 180px;
  grid-gap: 20px;
  padding-bottom: 70px;
}

.gallery .item {
  max-width: 180px;
  height: 180px;
  margin: 0 auto;
  cursor: pointer;
  filter: grayscale(40%);
}

.gallery .item:hover {
  filter: none;
  transition: 0.3s ease-out;
  transform: scale(1.06);
}

.gallery img {
  max-width: 180px;
  height: 70%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px,
    rgba(0, 0, 0, 0.5) 0px 2px 15px 0px;
}

/* Styles for medium screens (tablets) */
@media only screen and (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Styles for small screens (large phones) */
@media only screen and (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Styles for extra small screens (small phones) */
@media only screen and (max-width: 400px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/*Upcoming Projects*/
 .photos {
   column-count: 3;
} 

.photos img {
  width: 100%;
  height: auto;
  filter: contrast(100%);
  transition: all 0.2s ease-in-out;
}

.photos img:hover {
  filter: contrast(125%);
}

/*button for projects*/
.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: white; 
  color: black; 
  border: 2px solid #ff5e14;
  width:50%;
}

.button1:hover {
  background-color: #2c3e50;;
  color: white;
}

.button2 {
  background-color: white; 
  color: black; 
  border: 2px solid #ff5e14;
  width:35%;
  height:15%;
}

.button2:hover {
  background-color: #2c3e50;;
  color: white;
}


/*Whatsapp*/
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 120px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 30px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

