:root {
  --primary-color: #69352e;
  --primary-dark: #884b43;
  --primary-light: #f66c49;
  --text-on-primary: #ffffff;
  --background-color: #fff;
  --text-color: #2d2d2d;
  --card-background: #ffd1c5;
}

.montserrat-100 {
  font-family: 'Montserrat', serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.montserrat-200 {
  font-family: 'Montserrat', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-300 {
  font-family: 'Montserrat', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-700 {
  font-family: 'Montserrat', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-900 {
  font-family: 'Montserrat', serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  /* font-family: 'roboto'; */
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.primary-bg {
  background-color: #000;
  color: var(--text-on-primary);
}

.secondary-bg {
  background-color: var(--primary-light);
  color: var(--text-color);
}

header {
  padding: 0.5rem 0;
  position: fixed;
  top: 1rem;
  z-index: 999999999;
  background-color: var(--background-color);
  box-shadow: 0px 1px 10px var(--primary-color);
  border-radius: 100px;
  width: 96%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease-in-out;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo img {
  max-height: 50px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.nav-links li a:hover {
  color: var(--text-color);
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem;
  max-width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
}

#hero-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  z-index: 1;
  font-family: monospace;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 2rem;
  width: 100%;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-item {
  flex: 0 0 100%;
  padding: 1rem;
  min-height: 450px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  background-color: #fadfd8;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: var(--text-color);
  font-size: 1.5rem;
}

.service-card p {
  color: #f66c49;
  font-size: 1rem;
  line-height: 1.6;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  border: none;
  padding: 0.5rem 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}

.carousel-control:hover {
  background-color: var(--primary-light);
  color: var(--text-color);
}
.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicator.active {
  background-color: var(--text-on-primary);
}

footer {
  text-align: center;
  padding: 1rem 0;
}

/*--------------------
 Back to Top Button
---------------------*/
.scrollToTopBtn {
  background-color: var(--text-color);
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  padding: 0.4rem 1rem;
  padding-top: 0.8rem;
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  box-shadow: 0px 2px 15px var(--primary-light);
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}
footer {
  padding: 3rem 2rem 1rem;
  color: var(--text-on-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-section p,
.footer-section ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a,
.footer-bottom a:hover {
  color: var(--text-on-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-bottom a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.hero,
.carousel,
#about,
#contact {
  animation: fadeIn 1s ease-out;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 3rem;
}
.service-card:hover .service-icon {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.intro {
  padding: 4rem 0 0;
}

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

.intro h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-container {
  flex: 1;
}

.intro-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-container {
  flex: 1;
  /* background-color: #fff;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.intro p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
  }

  .image-container,
  .text-container {
    flex: 1;
  }
  .text-container {
    padding: 2rem;
  }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 999;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -2%;
    width: 100%;
    background: linear-gradient(0deg, var(--primary-light), #fff);
    flex-direction: column;
    padding: 1rem 0;
    transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateX(-100%);
    opacity: 0;
    height: 100vh;
    top: -1rem;
    width: 104%;
    justify-content: center;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links li {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
  }
  body.active {
    overflow: hidden;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .carousel {
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  #contact-form-container {
    flex-wrap: wrap;
    height: auto !important;
  }
  #contact-form-container iframe {
    min-height: 450px;
  }

  #contact .contact-info {
    padding-top: 3rem;
    max-width: 100%;
    background: var(--background-color);
    position: relative;
    top: -5rem;
    width: 100%;
  }
  #contact {
    padding: 0rem 2rem !important;
  }

  .about-item {
    padding: 0.5rem !important;
  }
}
section {
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact {
  padding: 4rem 2rem;
  padding-top: 0;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.contact-item {
  flex: 1 1 300px;
  /* text-align: center; */
  padding: 1rem;
  background-color: #fadfd8;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: center;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* Animated Hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

#services h2 {
  color: var(--primary-color);
  margin-bottom: 0;
}
header.hidden {
  transform: translate(-50%, -150%);
  transition: transform 0.3s ease-in-out;
}

.about-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
}

.about-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-items: center;
}

.about-item {
  background-color: var(--card-background);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  height: 280px;
  width: 280px;
  border-radius: 50%;
}

.about-item.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow-y: auto;
}

.card-back {
  transform: rotateY(180deg);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  top: 0;
}

.card-back h2 {
  color: white !important;
  margin-bottom: 1rem;
}

.card-back .read-more-btn {
  background-color: white;
  color: var(--primary-color);
}

.card-back .read-more-btn:hover {
  background-color: var(--background-color);
}

.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.about-item h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.about-item p {
  margin-bottom: 0.5rem;
}

.read-more-content {
  margin: 0;
  overflow: auto;
}

.read-more-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
  align-self: center;
}

.read-more-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  align-items: center;
}

.card-content::-webkit-scrollbar,
.read-more-content::-webkit-scrollbar {
  width: 0;
}

.bg-sec section {
  background-color: #fff;
}

html::-webkit-scrollbar {
  background: transparent;
  width: 10px;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #69352e;
  width: 10px;
  border-radius: 10px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: green;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 99999999;
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-button:hover svg {
  transform: rotate(10deg);
}

.carousel-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s;
  opacity: 0;
}

.carousel-slide-hero.active {
  opacity: 1;
}

.carousel-slide-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.carousel-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s;
  opacity: 0;
}

.carousel-slide-hero.active {
  opacity: 1;
}

.carousel-slide-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
/* BUTTONS */
.carousel-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  z-index: 99999;
}

.prev-btn,
.next-btn {
  background-color: #7777;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #ccc;
}

.flex {
  display: flex;
}
.w-50 {
  width: 50%;
}

.gap-2 {
  gap: 2rem;
}

.pt-4 {
  padding-top: 4rem;
}
.h-100 {
  height: 100%;
}
