/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Poppins';
  background-color: black;
  color: #ffde00;
  background-image: url('slider/anastese.webp');
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.whatsappus {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  /* WhatsApp green */
  color: #fff;
  font-size: 28px;
  /* icon size */
  border-radius: 50%;
  display: flex;
  /* better centering */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover effect */
.whatsappus:hover {
  transform: scale(1.1);
  background-color: #20c65a;
  /* darker green */
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}


body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  /* adjust darkness (0.4–0.7 usually looks good) */
  z-index: -1;
  /* stay behind everything */
}

/* NAVBAR BASE */
.navbar {
  background: black;
  color: #ffde00;
  /* padding: 10px 40px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100vw;
}

.sociallinks a {
  font-size: .75rem;
}

/* TOP ROW - Desktop */
.top {
  width: 100%;
  background-color: #ffde00;
  color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-weight: bold;
  margin-top: 0%;
  height: 50px;
}

.top .phone-header {
  justify-self: center;
  padding-left: 20px;
}

.top .email-header {
  justify-self: center;
}

.top .sociallinks {
  justify-self: center;
  display: flex;
  padding-right: 30px;
  gap: 15px;
}

.top .sociallinks a {
  color: #ffde00;
  background-color: #000;
  width: 30px;
  font-size: .5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.top a {
  color: #000000;
  text-decoration: none;
}

/* BOTTOM ROW - Desktop */
.bottom {
  height: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.bottom .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  justify-self: center;
  font-size: 1.2rem;
}

.image-logo {
  width: 70px;
  height: 70px;
}

.sections {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sections a {
  text-decoration: none;
  color: #ffde00;
  font-weight: bold;
}

.getquote {
  justify-self: center;
  font-weight: bold;
  cursor: pointer;
  padding-right: 30px;
}

.getquote a {

  text-decoration: none;
  color: #ffde00;
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffde00;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  z-index: 999;
}

.mobile-menu a {
  color: #ffde00;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.mobile-menu a:hover {
  color: orange;
}

.mobile-menu.active {
  display: flex !important;
  background-color: #000;
}


/* Home section */
.home {
  height: 100vh;
  width: 100%;
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.your-carousel {
  width: 100vw;
  height: 100%;
  display: block;
  /* margin: 0 auto; */
  overflow: hidden;
}

/* Carousel Images */
.your-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* overflow: hidden; */
}

.categories {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.categories .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 equal columns */
  gap: 20px;
  width: 100%;
}

.categories .card {
  position: relative;
  background-size: cover;
  background-position: center;
  border: #ffde00 2px solid;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bolder;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  min-height: 300px;
}

.categories .card .span{
  color: #fff;
}

/* Overlay layer */
.categories .card::after {
  content: "";
  position: absolute;
  bottom: -100%;
  /* hidden */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s ease-in-out;
  z-index: 1;
}

/* Contact button inside card */
.categories .card a {
  position: absolute;
  bottom: -60px;
  /* hidden below initially */
  background: #ffde00;
  color: black;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: bottom 0.4s ease-in-out;
  z-index: 2;
}

/* Hover effect */
.categories .card:hover::after {
  bottom: 0;
}

.categories .card:hover a {
  bottom: 50%;
  transform: translateY(50%);
}

.categories .card .categoriesspan{
  background-color: #000;
  opacity: 0.5;
}

/* Keep span visible above overlay */
.categories .card span {
  position: relative;
  z-index: 2;
  color: #ffde00;
  padding: 4px;
}

.categories .card:hover span {
  display: none;
}

/* Last card centered */
.categories .card:nth-child(5) {
  grid-column: 1 / span 2;
  /* spans across both columns */
  justify-self: center;
  /* centers itself */
  width: 50%;
  /* only half of full width */
}


.aboutus {
  margin-bottom: 30px;
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #ffde00;
}

.aboutus h1 {
  margin-top: 15px;
  font-family: "Poppins Black", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  -webkit-text-stroke: 1px black;
}

.aboutustext {
  width: 50%;
  text-align: center;
  font-size: large;
  font-weight: normal;
  color: #ffffff;
  line-height: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px;
}


.feedback-section {
  background: #FFD300;
  /* Yellow background */
  text-align: center;
  /* height: auto; */
  padding: 60px 20px;
}

.feedback-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
  margin-bottom: 100px;
}

.feedback-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  /* add space for image below */
  height: 60%;
}

.feedback-container button {
  align-self: center;
  height: 60px;
  width: 50px;
  background-color: #ffde00;
  color: #000;
  border: 1px rgb(0, 0, 0) solid;
  font-weight: bolder;
  font-size: 3rem;
}

.feedback-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.feedback-card {
  background: #222;
  color: #fff;
  width: 100%;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  font-style: italic;
  align-items: center;
}

.feedback-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFD300;
  margin-top: 15px;
  /* space below card */
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: #000;
}


.Sendamessage {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/* Contact Form */
.message-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #111;
  /* dark background */
  border: 2px solid #ffde00;
  border-radius: 12px;

  box-shadow: 0 4px 10px rgba(255, 255, 0, 0.2);
}

.message-form h2 {
  text-align: center;
  color: rgb(255, 255, 0);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.message-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #ffde00;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ffde00;
  border-radius: 8px;
  font-size: 1rem;
  background: black;
  color: #ffde00;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
  color: rgba(255, 255, 0, 0.6);
}

.message-form textarea {
  min-height: 120px;
  resize: vertical;
}

.message-form button {
  display: block;
  width: 100%;
  padding: 14px;
  background: #ffde00;
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.message-form button:hover {
  background: orange;
}


.footer {
  background: #000;
  color: #ffde00;
  padding: 40px 24px;
  font-family: Arial, sans-serif;
}

/* main grid: 5 columns x 2 rows (4 content columns + 1 gap column) */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr .5fr 0.75fr 0.75fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 24px 0;
  align-items: start;
  margin-bottom: 20px;
  margin-left: 60px;
  margin-right: 60px;
}

/* Logo (row 1, col 1) */
.logo-wrap {
  /* Placed in the first content column (1/2) */
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  height: 100px;
  width: 100px;
  display: block;
}

.logo-wrap p{
  font-size: 1rem;
  font-weight: bold;
}

/* Headings: explicit placement in row 1 */
/* MODIFIED: Shifted to columns 3, 4, and 5 */
.site-heading {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  margin-left: 30px;
}

.categories-heading {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
  margin-left: 30px;
}

.address-heading {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
  margin-left: 30px;
}

.site-heading,
.categories-heading,
.address-heading {
  align-self: center;
}

.heading h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #ffde00;
}

/* Description (row 2 col 1) */
.description {
  /* Placed in the first content column (1/2) */
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  color: #ffffff;
  line-height: 1.4;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* Lists (row 2 columns 3,4,5) */
/* MODIFIED: Shifted to columns 3, 4, and 5 */
.site-list {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  margin-left: 20px;
}

.address-list p {
  word-break: break-word; /* avoids awkward wrapping mid-word */
  white-space: normal;    /* ensures long lines wrap naturally */
  line-height: 30px;
}

.categories-list {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  margin-left: 20px;
}

.address-list {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
  margin-left: 20px;
}


.list ul {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}

.list ul li {
  margin-bottom: 10px;
}

.list ul li a {
  color: #ffffff;
  text-decoration: none;
}

.list p {
  margin: 8px 0;
  color: #ffffff;
}

.categories-list {
  color: #fff;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 6px;
  padding-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #bdbdbd;
  font-size: 0.9rem;
}



/* Media Queries */
@media (max-width: 768px) {

  .feedback-section{
    display: none;
  }

  #prev-button{
    display: none;
  }

  #next-button{
    display: none;
  }

  .categories .wrapper {
    display: flex;
    flex-direction: column;
  }

  .categories .card {
    min-height: 200px;
  }

  .categories .card:hover::after {
    bottom: -100%;
  }

  .categories .card:hover a {
    bottom: -50px;
    transform: none;
  }

  .categories .card:hover span {
    display: inline;
  }

  .categories .card.active::after {
    bottom: 0;
  }

  .categories .card.active a {
    bottom: 50%;
    transform: translateY(50%);
  }

  .categories .card.active span {
    display: none;
  }

  .categories .card:nth-child(5) {
    width: 100%;
  }

  .top {
    display: none;
  }

  .top .email-header,
  .top .sociallinks,
  .top .phone-header {
    display: none;
    /* hide email + socials */
  }

  /* BOTTOM ROW */
  .bottom {
    display: flex;
    /* logo left, hamburger right */
    flex-direction: row;
    justify-content: space-around;
    font-size: 1rem;
    height: 80px;
  }

  .bottom img {
    width: 70px;
    height: 70px;
  }


.feedbackonphone{
  background-color: #ffde00;
  color: #000;
  height: 60vh;
}

.feedback-main-heading{
  width: 100%;
  padding-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.feedbackonphone .your-carousel {
  display: block !important;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.feedbackonphone .slick-track {
  display: flex !important;
  align-items: stretch;
}

.feedbackonphone .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: auto !important;
  width: 100% !important; /* ensures one full card fills screen */
  box-sizing: border-box;
}

.feedbackonphone .feedback-item {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.feedbackonphone .feedback-card {
  background: #000000;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
}




/* Optional: tweak dots for mobile */
.feedbackonphone .slick-dots {
  bottom: -25px;
}


  .home {
    margin-top: 3px;
    height: 30vh;
  }

  .sections,
  .getquote {
    display: none;
    /* hide nav + button */
  }

  .hamburger {
    display: flex;
    /* show hamburger */
  }

  .your-carousel {
    width: 100%;
  }

  .footer-inner {
    display: flex;
    justify-content: center;
  }

  .contact-details,
  .lets-connect {
    flex-direction: column;

  }

  .social-grid {
    grid-template-rows: 1fr;
    /* one per row on mobile */
  }

  .social {
    justify-content: center;
    /* center icon + text */
  }

  .aboutustext {
    text-align: start;
    width: 100%;
    line-height: 35px;
  }

  .footer {
    display: flex;
    flex-direction: column;
  }

  .footer-grid {
    display: grid;
    /* grid-template-rows: .1fr .1fr .1fr .1fr .1fr .1fr .1fr .1fr ; */
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .logo-wrap{
    grid-row: 1/2;
    grid-column: 1;
  }

  .description{
    grid-row: 2/3;
    grid-column: 1;
    text-align: center;
  }
  .site-heading{
    grid-row: 3/4;
    grid-column: 1;
  }
  .site-list{
    grid-row: 4/5;
    grid-column: 1;

  }
  .categories-heading{
    grid-row: 5/6;
    grid-column: 1;
  }
  .categories-list{
    grid-row: 6/7;
    grid-column: 1;
  }
  .address-heading{
    grid-row: 7/8;
    grid-column: 1;
  }
  .address-list{
    grid-row: 8;
    grid-column: 1;
  }

  .site-heading,
.categories-heading,
.address-heading {
  margin-left: 0;
    text-align: center;

}

.site-list,.categories-list,.address-list{
  margin-left: 0;
    text-align: center;

}

}

/* accessibility helper (hidden text for screen readers) */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;

}

@media (max-width: 900px) {

  .home {
    min-height: 30vh;
  }
}

/* Responsive: 1 per row on small screens */
@media (max-width: 500px) {
  .categories .wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
    /* ensure hidden on desktop */
  }
}

/* hover effects (only on larger screens) */
@media (min-width: 901px) {
  .categories .card:hover::before {
    filter: blur(6px);
    transform: scale(1.05);
  }

  .categories .card:hover span {
    transform: scale(1.2);
  }

  
.feedbackonphone{
  display: none;
}

}

@media (max-width: 500px) {
  /* --- Categories safe-guards (ensure stacked, gap preserved) --- */


  /* --- Send a message (last section) --- */
  .Sendamessage {
    padding: 24px 12px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .Sendamessage h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .message-form {
    width: 100%;
    max-width: 520px;
    /* fits nicely on phones */
    padding: 18px;
    margin: 12px 0;
    box-sizing: border-box;
    border-radius: 10px;
  }

  .message-form input,
  .message-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .message-form button {
    padding: 12px;
    font-size: 1rem;
  }

  /* --- Footer adjustments --- */
  .footer {
    padding: 20px 12px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .contact-details,
  .lets-connect {
    flex: 1 1 auto;
    width: 100%;
    padding: 8px 6px;
    align-items: flex-start;
    /* left-align content for readability */
  }

  .contact-details h3,
  .lets-connect h3 {
    text-align: left;
    width: 100%;
  }

  .contact-details a,
  .social {
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 6px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    /* two small buttons per row on phones */
    gap: 10px;
    width: 100%;
  }

  .social {
    width: 100%;
    display: flex;
    align-items: center;
  }

  /* small visual tweaks to avoid overflow */
  html,
  body {
    overflow-x: hidden;
  }
}