@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  user-select: none;
}

body,
html {
  font-size: 14px;
  line-height: 1.8076923077;
  overflow-y: auto;
  font-family: "Poppins", sans-serif;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  line-height: inherit;
  background: #000;
  color: var(--secondary-main);
}

:root {
  --h1-font: 3.5rem;
  --h2-font: 3rem;
  --h3-font: 2.5rem;
  --h4-font: 2rem;
  --h5-font: 1.8rem;
  --p-font: 1.7rem;
  --small-font: 1.2rem;

  --extra-bold-text: 800;
  --bold-text: 700;
  --semi-bold-text: 600;
  --medium-bold-text: 500;
  --regular-text: 400;
  --light-text: 300;

  --main-color: #eb595f;
  --border: #41303e;
  --highlight-text: #f6ab2f;
  --whatsApp-color: #55ce6c;
  --getLink-color: #b3b3b3;
  --facebook-color: #485893;
  --linkedin-color: #007aaa;
  --twitter-color: #55acee;
  --pinterest-color: #cb2027;
  --background-main: #f5f4f5;
}

div {
  display: block;
  unicode-bidi: isolate;
}


.header {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(Images/Interiors/43\ \(1\).jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 1px 20px;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: fixed;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    margin-top: 0px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  z-index: 999;
}

nav a {
  font-size: 1.8rem;
  margin-left: 1%;
  color: var(--main-color);
  text-decoration: none;
  font-weight: var(--semi-bold-text);
  letter-spacing: 2px;
}


.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 9px 20px;
  position: relative;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;

}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: var(--primary-main);
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.header-content {
  width: 80%;
  color: #fff;
  position: absolute;
  top: 70%;
  left: 45%;
  text-align: left;
  transform: translate(-50%, -50%);
}

.header-content h1 {
  font-size: var(--h1-font);
  color: var(--highlight-text);
}

.header-content p {
  margin: 10px 0 40px;
  font-size: var(--p-font);
  font-weight: var(--semi-bold-text);
}

nav .fa {
  /* display: flex;
    color: #fff; */
  display: none;
}

@media (max-width:1024px) {
  .header-content {
    width: 90%;
    text-align: center;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    margin-top: 55px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }

  nav .fa {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  .nav-links ul {
    padding: 30px;
  }
}

@media (max-width:425px) {
  .header-content {
    text-align: center;
    top: 50%
  }
}

.about {
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 180px 0;
  align-content: center;
}

.about-content {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.about img {
  height: auto;
  width: 600px;
  max-width: 100%;
  border: 2px solid var(--main-color);
  border-radius: 4%;
  transition: .5s ease;
}

.about img:hover {
  border: 2px solid var(--main-color);
  box-shadow: 0 0 5px var(--main-color), 0 0 25px #2a2a2a;
  cursor: pointer;
  transform: scale(1.2);
}

.about-text {
  width: 650px;
  max-width: 100%;
  padding: 0 10px;
}

.about-text h2 {
  font-size: var(--h2-font);
  text-transform: capitalize;
  margin: 0;
}

strong {
  letter-spacing: 8px;
  font-size: var(--small-font);
  color: var(--main-color);
}

.about-text p {
  font-size: var(--p-font);
  margin-bottom: 45px;
  margin-top: 20px;
}

.button {
  color: var(--background);
  font-size: var(--small-font);
  font-weight: bold;
  text-decoration: none;
  border: 2px solid var(--main-color);
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 30px;
  transition: 0.4s ease;
}

.button:hover {
  background: transparent;
  box-shadow: 0 0 5px var(--border), 0 0 5px #2a2a2a;
  cursor: pointer;
  transform: scale(1.2);
}

@media screen and (max-width:1024px) {
  .about {
    width: 100%;
    height: auto;
    padding: 70px 0;
  }
}

@media screen and (max-width:768px) {
  .about img {
    margin-bottom: 35px;
  }

  .about-text h1 {
    font-size: 60px;
    margin-bottom: 25px;
  }

    .nav-links {
      background: linear-gradient(135deg, #eb595f);
    }
}
@media screen and (max-width:425px) {
  .nav-links {
      background: linear-gradient(135deg,#eb595f);
     
    }
  }

/* Services Page Start */

.service {
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 80px 0;
  align-content: center;
}

.service-content {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.service-content h2 {
  font-size: var(--h2-font);
  text-align: center;
  margin-bottom: 1rem;
}

.service .service-container .service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-item {
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  display: flex;
  display: -ms-flexbox;
  max-width: 33%;
  flex: 0 0 33%;
  -ms-flex: 0 0 33%;
}

.service-box {
  border: 2px solid #202020;
  position: relative;
  height: 25rem;
}

.service-box::before {
  content: '';
  position: absolute;
  border-left: 4px solid var(--pinterest-color);
  border-top: 4px solid var(--pinterest-color);
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
}

.service-box .service-inner {
  padding: 10px;
}

.service-box::after {
  content: '';
  position: absolute;
  border-right: 3px solid var(--pinterest-color);
  border-bottom: 3px solid var(--pinterest-color);
  bottom: 0;
  right: 0;
  width: 40px;
  height: 30px;
  transition: .5s ease;
}

.service-box:hover {
  transform: scale(1.1);
}

.service-box .service-inner h5 {
  font-size: var(--h5-font);
  text-align: center;
  color: var(--highlight-text);

}

.service-box .service-inner p {
  font-size: var(--small-font);
  opacity: .8;
  text-align: center;
}

.service-box .service-inner .service-icon {
  height: 35px;
  width: 35px;
  display: block;
  margin: 0 auto 10px;
  transition: .5s ease;
  border-radius: 50%;
  text-align: center;
  align-content: center;
}

.service-box .service-inner:hover .service-icon {
  background-color: var(--main-color);
}

.service-box .service-inner .service-icon i {
  font-size: 20px;
  transition: all 0.5s ease;
}


@media (max-width:1024px) {
  .service-item {
    max-width: 48%;
    flex: 0 0 48%;
    -ms-flex: 0 0 48%;
  }
}

@media (max-width:768px) {
  .service-item {
    max-width: 90%;
    flex: 0 0 90%;
    -ms-flex: 0 0 90%;
  }
}

@media (max-width:768px) {
  .service-box {
    height: 17rem;
  }
}

@media (max-width:425px) {
  .service-box {
    height: 30rem;
  }
}

.partners {
  background: #000;
  color: #fff;
  min-height: 10vh;
  width: 100%;
  padding: 0px 0;
  display: grid;
  place-items: center;
}

.partners-content {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.partners-content h2 {
  font-size: var(--h2-font);
  padding-top: 4%;
  margin-bottom: 2rem;
}

.partners-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 2px solid var(--main-color);
}

.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}

.slider-items img {
  width: 12%;
  margin: 10px;
}


/* Budget Page Start */

.budget-section {
  background: #000;
  min-height: 100vh;
  width: 100%;
  padding: 80px 0;
  color: #fff;
  align-content: center;
}

.budget-content {
  width: 1280px;
  max-width: 90%;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.budget-section h2 {
  color: #fff;
  font-size: var(--h2-font);
  text-align: center;
}

.budget-section p {
  font-size: var(--p-font);
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.budget-images {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 5px;
  max-width: 45%;
  flex: 0 0 45%;
  -ms-flex: 0 0 45%;
  position: relative;
  text-align: center;
}

.budget-images img {
  width: 100%;
  height: 30rem;
  border-radius: 1rem;
  display: block;
  margin-bottom: 13px;
  box-shadow: 4px 4px 5px rgba(255, 0, 0, 0.2);
  transition: all .5s ease;
}

.budget-images img:hover {
  transform: scale(1.1);
}

.budget-images .budget {
  background: var(--main-color);
  padding: 3px 9px;
  border-radius: 30px;
  border: 2px solid #000;
  font-size: var(--h5-font);
  font-weight: var(--semi-bold-text);
  position: absolute;
  color: #fff;
  top: 5%;
  left: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.budget-images h5 {
  font-size: var(--h5-font);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

@media (max-width:1024px) {
  .budget-images img {
    height: 25rem;
  }

  .budget-images {
    margin-top: 3rem;
  }
}

@media (max-width:768px) {
  .budget-images {
    max-width: 90%;
    flex: 0 0 90%;
    -ms-flex: 0 0 90%;
  }

  .budget-images img {
    width: 100%;
    height: 25rem;
    border-radius: 1rem;
    display: block;
    margin-bottom: 13px;
    box-shadow: 4px 4px 5px rgba(255, 0, 0, 0.2);
    transition: all .5s ease;
  }
}

@media (max-width:425px) {
  .budget-content h2 {
    font-size: 2.5rem;
  }
}

/* Projects Page Start */

.slider-container {
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.project-content {
  width: 1280px;
  max-width: 90%;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.slider-container h2 {
  font-size: var(--h2-font);
  text-align: center;
}

.slider-images {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.slider-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.slider-img {
  width: 100px;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}

.slider-images .slider-img:first-child,
.slider-images .slider-img:last-child {
  height: 480px;
}

.slider-images .slider-img:nth-child(2),
.slider-images .slider-img:nth-child(6) {
  height: 560px;
}

.slider-images .slider-img:nth-child(3),
.slider-images .slider-img:nth-child(4),
.slider-images .slider-img:nth-child(5) {
  height: 665px;
}

.slider-images h4 {
  font-size: var(--h5-font);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: var(--main-color);
  padding: 9px 27px;
  border-radius: 2rem;
  position: absolute;
  box-shadow: 0 0 5px var(--border), 0 0 5px #2a2a2a;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}

.details {
  position: absolute;
  bottom: 43px;
  left: 5px;
}

.slider-img.active {
  width: 650px !important;
  height: 750px !important;
}

.slider-img .active .details p,
.slider-img .active .details strong {
  display: block;
}

@media (max-width:1024px) {

  .slider-images img {
    width: 100%;
    border-radius: 6px;
  }

  .slider-img {
    width: 60px;
    border-radius: 6px;
  }

  .slider-images .slider-img:first-child,
  .slider-images .slider-img:last-child {
    height: 300px;
  }

  .slider-images .slider-img:nth-child(2),
  .slider-images .slider-img:nth-child(6) {
    height: 400px;
  }

  .slider-images .slider-img:nth-child(3),
  .slider-images .slider-img:nth-child(4),
  .slider-images .slider-img:nth-child(5) {
    height: 500px;
  }

  .slider-img.active {
    width: 450px !important;
    height: 550px !important;
  }
}


@media (max-width:768px) {
  .slider-images img {
    width: 100%;
  }

  .slider-img {
    width: 40px;
  }

  .slider-images .slider-img:first-child,
  .slider-images .slider-img:last-child {
    height: 300px;
  }

  .slider-images .slider-img:nth-child(2),
  .slider-images .slider-img:nth-child(6) {
    height: 400px;
  }

  .slider-images .slider-img:nth-child(3),
  .slider-images .slider-img:nth-child(4),
  .slider-images .slider-img:nth-child(5) {
    height: 500px;
  }

  .slider-img.active {
    width: 400px !important;
    height: 550px !important;
  }

  .slider-images h4.active {
    top: 80%;
    left: -10%;
    transform: rotate(270deg);
  }
}

@media (max-width:425px) {

  .slider-images {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .slider-img {
    width: 100%;
    height: 20rem;
    padding: 1rem;
  }

  .slider-img img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
  }

  .slider-img img:hover {
    transform: perspective(500px) translate3d(10px, 0, 20px) rotateY(10deg);
  }

  .slider-images h4 {
    top: 75%;
    left: 10%;
    text-align: center;
    transform: rotate(0deg);
  }

}

/* Blog Page Start */

.blog-section {
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 80px 0;
  align-content: center;
}

.blog-content {
  width: 1280px;
  width: 90%;
  margin: 20px auto;
}

.blog-title {
  width: 60%;
  align-items: center;
  margin: auto;
}

.blog-title h2 {
  font-size: var(--h2-font);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.blog-title p {
  font-size: var(--p-font);
  text-transform: uppercase;
  color: #fff;

  margin-top: 20px;
  text-align: center;
}

.blog-section .blog-content .blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin: 25px auto;
}

.blog-section .blog-content .blog-cards .blog-card {
  width: 100%;
  background: #fff;
  position: relative;
}

.blog-section .blog-content .blog-cards .blog-card .blog-image-section img {
  width: 100%;
  height: auto;
}

.blog-section .blog-content .blog-cards .blog-card .blog-article {
  padding: 15px 20px;
}

.blog-section .blog-content .blog-cards .blog-card .blog-article h4 {
  font-size: var(--h4-font);
  color: var(--main-color);
  font-weight: var(--bold-text);
}

.blog-section .blog-content .blog-cards .blog-card .blog-article p {
  font-size: var(--p-font);
  color: #000;
  margin: 10px 0;
}

.blog-section .blog-content .blog-cards .blog-card a {
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  padding: 8px 15px;
  margin-left: 20px;
  color: #000;
  margin-bottom: 20px;
  font-size: var(--small-font);
}

.blog-section .blog-content .blog-cards .blog-card .blog-posted-date p {
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: var(--main-color);
  padding: 6px 15px;
  font-size: var(--p-font);
  color: var(--white);
}

@media (max-width:1024px) {
  .blog-section .blog-content .blog-cards {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (max-width:768px) {
  .blog-section .blog-content .blog-cards {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
}

/* Contact Page Start */

.contact-section {
  background: #000;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 80px 0;
  align-content: center;
}

.contact-content {
  width: 1280px;
  max-width: 90%;
  margin: 20px auto;
}

.contact-section h2 {
  font-size: var(--h2-font);
  text-align: left;
}

.contact-section p {
  font-size: var(--p-font);
  text-align: left;
  color: #fff;

}

.contact-section .list {
  color: #6a6a6a;
  font-size: var(--h5-font);
  list-style: none;
  margin-bottom: 5rem;
}

.list li a {
  display: block;
  font-size: var(--p-font);
  text-decoration: none;
  color: #fff;
  transition: all .45s ease;
}

.list li a:hover {
  color: var(--main-color);
  transform: translateX(5px);
}


.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 10rem;
}

.footer-box h3 {
  font-size: var(--h4-font);
  text-decoration: none;
  color: var(--highlight-text);
  justify-content: flex-end;
  margin-bottom: .5rem;
}

.footer-box a {
  color: #fff;
  transition: all 0.50s ease;
  font-size: var(--p-font);
  text-decoration: none;

}

.footer-box a:hover {
  transform: translateX(-5px);
  color: var(--main-color);
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  background: var(--main-color);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  margin-right: 1rem;
  transition: transform 0.5s;
}

.social a:hover {
  background: #23d25d;
  color: #fff;
  transform: translateX(-4px);
}

/* ------------------------------------------End Section Start------------------------------------------------ */

.end {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.end p {
  color: #202020;
  font-size: 9px;
  transition: transform 0.6s;
}

.end p:hover {
  background: var(--facebook-color);
  color: #fff;
  transform: translateX(-4px);
}

@media (max-width:1024px) {

  .about-content {
    align-items: center;
    text-align: center;
  }

  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width:425px) {
  .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--main-color);
    color: #fff;
    font-size: 1.8rem;
    border-radius: 50%;
    margin-right: .3rem;
    transition: transform 0.5s;
  }

  .social a:hover {
    background: #23d25d;
    color: #fff;
    transform: translateX(-4px);
  }

  .contact-section h2 {
    text-align: center;
  }

  .contact-section p {
    text-align: center;

  }

  .contact-section .list {
    text-align: center;
  }
}