body {
  margin: 0;
  font-family: "TT Commons", sans-serif;
  background: #ffffff;
  color: #3a2f2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f8f8f8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease-out forwards;
}

.logo {
  height: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(181, 101, 29, 0.5);
}

.header-text {
  font-family: "TT Background", serif;
}

.header-text h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  transition: color 0.3s ease;
  font-family: "TT Moons";
}

.header-text h1:hover {
  color: #b5651d;
  font-family: "TT Moons";
}

.header-text p {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header-text p:hover {
  color: #b5651d;
}

/* Navigation Bar Styles */
.navbar {
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #3a2f2d;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  font-family: "TT Commons Pro";
}

.nav-menu a i {
  margin-right: 8px;
  font-size: 22px;
}

.nav-menu a:hover {
  color: #b5651d;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #3a2f2d;
  cursor: pointer;
}

@media (min-width: 769px) {
  .header-text {
    margin-top: -70px;
    padding-left: 100px;
  }
}

@media (max-width: 768px) {
  .header {
    /* flex-direction: column; */
    text-align: center;
    padding: 20px;
  }

  .header > div {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo and text horizontally */
    flex-direction: row; /* Keep logo and text side by side */
    gap: 15px;
  }

  .logo {
    margin: 0; /* Remove bottom margin */
    height: 80px; /* Adjust logo size for mobile */
  }

  .header-text {
    text-align: left;
  }

  .header-text h1 {
    font-size: 14px;
    width: 138px;
  }

  .header-text p {
    font-size: 12px;
  }


  .navbar {
    width: 100%;
  }

  .nav-container {
    justify-content: flex-end;
    width: 100%;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: #f8f8f8;
    padding: 20px;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-menu a {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }
}

hr {
  border: none;
  border-top: 2px solid #888;
  margin: 0;
  width: 100%;
  margin-bottom: 20px;
}

ul {
  font-family: arimo;
  font-size: 20px;
}

@media (max-width: 768px) {
  ul {
    
  font-family: arimo;
  font-size: 14px;
  text-align: justify;

  }
}

@media (max-width: 468px) {
  ul {
    
  font-family: arimo;
  font-size: 14px;
  text-align: justify;

  }
}

/* Hero Slider Styles */
.hero {
  text-align: center;
  margin: 40px 0;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide video,
.slide img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  animation: fadeIn 1.5s ease-out 0.5s forwards;
  transition: box-shadow 0.3s ease;
}

.slide video:hover,
.slide img:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(181, 101, 29, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {
  .slider {
    max-width: 100%;
  }
}

.trusted-section {
  text-align: center;
  margin: 40px 0;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.trusted-section h2 {
  font-size: 72px;
  font-weight: 800;
  font-family: "TT Backwards";
  color: #735e59;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  text-align: left;
  max-width: 1400px;
  margin: 0 auto 20px;
  transition: color 0.3s ease;
}

.trusted-section h2:hover {
  color: #b5651d;
}

.circle-stats {
  display: flex;
  justify-content: center;
  gap: 150px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.circle {
  background-color: #e8cfc9;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "TT Commons Pro";
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 1s ease-out forwards;
  transition: box-shadow 0.3s ease, transform-0.3s ease;
}

@media (max-width: 768px) {
  .circle {
    width: 150px;
    height: 150px;
    display: inline-flex;
  }

  .circle-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
  }
}

.circle:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
  transform: scale(1.05);
}

.circle:nth-child(1) {
  animation-delay: 1s;
}
.circle:nth-child(2) {
  animation-delay: 1.2s;
}
.circle:nth-child(3) {
  animation-delay: 1.4s;
}

.circle h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #1c1c1c;
  transition: color 0.3s ease;
}

.circle h3:hover {
  color: #b5651d;
}

.circle p {
  font-size: 18px;
  margin: 5px 0 0;
  color: #1c1c1c;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .circle p {
    font-size: 15px;
  }

  .circle h3 {
    font-size: 30px;
  }
}

.circle p:hover {
  color: #b5651d;
}

.services-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.services-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  transition: box-shadow 0.3s ease;
}

.services-banner img:nth-child(1) {
  animation-delay: 1.6s;
  margin-right: 2%;
}

.services-banner img:nth-child(2) {
  animation-delay: 1.8s;
  margin-left: 2%;
}

.services-banner img:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  flex-wrap: wrap;
  background-color: #eceada;
  box-sizing: border-box;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.container:nth-of-type(1) {
  animation-delay: 2s;
}
.container:nth-of-type(2) {
  animation-delay: 2.2s;
}
.container:nth-of-type(3) {
  animation-delay: 2.4s;
}
.container:nth-of-type(4) {
  animation-delay: 2.6s;
}

.text-section {
  flex: 1;
  padding-right: 20px;
  min-width: 300px;
}

.heading {
  font-size: 3.5rem;
  font-weight: bold;
  color: #735e59;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: "TT Background", serif;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
  text-align: left;
  transition: color 0.3s ease;
}

.heading:hover {
  color: #b5651d;
}

.subheading {
  font-size: 20px;
  font-weight: bold;
  color: #735e59;
  margin-bottom: 2px;
  font-family: "arimo";
  opacity: 0;
  animation: slideInLeft 1s ease-out 0.2s forwards;
  text-align: left;
  transition: color 0.3s ease;
}

.subheading:hover {
  color: #b5651d;
}

.image-section {
  flex: 0 0 350px;
  max-width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 15%;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

@media (max-width: 768px) {
  .image-section img {
  width: 80%;
}
}

.image-section-ramoji {
  flex: 0 0 350px;
  max-width: 100%;
}

.image-section-ramoji img {
  width: 680px;
  height: auto;
  border-radius: 15%;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section-ramoji img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

/* Read More and View More Buttons */
.section-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.read-more,
.view-more {
  padding: 12px 24px;
  font-size: 18px;
  font-family: "TT Commons", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #b5651d;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more:hover,
.view-more:hover {
  background-color: #8c4a15;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .text-section {
    padding-right: 0;
    padding-bottom: 20px;
    min-width: 100%;
  }

  .heading {
    font-size: 2.8rem;
    text-align: center;
  }

  .subheading {
    font-size: 15px;
    text-align: center;
    text-align: justify;
  }

  

  .image-section {
    flex: 0 0 250px;
  }

  .image-section-ramoji {
    flex: 0 0 250px;
  }

  .image-section-ramoji img{
    width: 100%;
  }

  .services-banner {
    flex-direction: column;
    gap: 20px;
  }

  .services-banner img {
    width: 100%;
    height: 100px;
    max-width: 100%;
    margin: 0 auto;
  }

  .section-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .heading {
    font-size: 2.2rem;
  }

  .subheading {
    font-size: 15px;
    text-align: justify;
  }

  

  .image-section {
    flex: 0 0 200px;
  }

  .image-section-ramoji {
    width: 100%;
    flex: 0 0 200px;
  }

  .image-section-ramoji img{
    width: 100%;
  }

  .trusted-section h2 {
    font-size: 25px;
  }


  .why-us h2 span {
  margin-left:0px;
   font-size:9px;
    font-family:TT Backwards;
}
}

.why-us-items,
.services-items,
.tech-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  font-size: 54px;
  font-family: TT Backwards;
  border-bottom: 2px solid #b5651d;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 20px;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    text-align: center;
  }  
}

h2:hover {
  color: #b5651d;
}

.why-us h2 {
  animation-delay: 2.4s;
}
.services-offered h2 {
  animation-delay: 2.6s;
}
.technology h2 {
  animation-delay: 2.8s;
}
.popular h2 {
  animation-delay: 3s;
}

.why-us span {
  margin-left:110px;
   font-size:30px;
    font-family:TT Backwards;
}

.why-us-item,
.service-item,
.tech-item {
  width: 270px;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-us-item:hover,
.service-item:hover,
.tech-item:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
  transform: translateY(-5px);
}

.why-us-item:nth-child(1) {
  animation-delay: 3.2s;
}
.why-us-item:nth-child(2) {
  animation-delay: 3.3s;
}
.why-us-item:nth-child(3) {
  animation-delay: 3.4s;
}
.why-us-item:nth-child(4) {
  animation-delay: 3.5s;
}
.why-us-item:nth-child(5) {
  animation-delay: 3.6s;
}
.why-us-item:nth-child(6) {
  animation-delay: 3.7s;
}

.service-item:nth-child(1) {
  animation-delay: 3.2s;
}
.service-item:nth-child(2) {
  animation-delay: 3.3s;
}
.service-item:nth-child(3) {
  animation-delay: 3.4s;
}
.service-item:nth-child(4) {
  animation-delay: 3.5s;
}
.service-item:nth-child(5) {
  animation-delay: 3.6s;
}
.service-item:nth-child(6) {
  animation-delay: 3.7s;
}
.service-item:nth-child(7) {
  animation-delay: 3.8s;
}
.service-item:nth-child(8) {
  animation-delay: 3.9s;
}
.service-item:nth-child(9) {
  animation-delay: 4s;
}
.service-item:nth-child(10) {
  animation-delay: 4.1s;
}

.tech-item:nth-child(1) {
  animation-delay: 3.2s;
}
.tech-item:nth-child(2) {
  animation-delay: 3.3s;
}
.tech-item:nth-child(3) {
  animation-delay: 3.4s;
}

.why-us-item img,
.service-item img,
.tech-item img {
  width: auto;
  height: 100px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item img:hover,
.service-item img:hover,
.tech-item img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(181, 101, 29, 0.5);
}

.why-us-item p,
.service-item p,
.tech-item p {
  font-size: 20px;
  color: #4a3c31;
  margin: 0;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.why-us-item p:hover,
.service-item p:hover,
.tech-item p:hover {
  color: #b5651d;
}

.services-items {
  gap: 15px;
}

.tech-items {
  gap: 30px;
  justify-content: center;
}

.tech-item {
  border: 2px solid #000000;
  width: 350px;
  padding-top: 120px;
  border-radius: 220px 220px 0px 0px;
}

.tech-item img {
  width: auto;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology {
  position: relative;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="none" stroke="#b5651d" stroke-width="2"/></svg>')
    repeat;
  padding: 40px 20px;
  border: 3px solid #b5651d;
  border-radius: 15px;
  background-color: #eceada;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.technology:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

.technology .container {
  background-color: #eceada;
}

.technology p {
  font-size: 20px;
  color: #4a3c31;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-family: "TT Commons", sans-serif;
  text-align: center;
  transition: color 0.3s ease;
}

.technology p:hover {
  color: #b5651d;
}

.popular {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.popular img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 2px solid #e0d5cc;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  transition: box-shadow 0.3s ease;
}

.popular img:hover {
  box-shadow: 0 0 15px rgba(181, 101, 29, 0.5);
}

.popular p {
  font-size: 20px;
  color: #4a3c31;
  margin: 15px 0;
  text-transform: uppercase;
  font-family: "TT Commons", sans-serif;
  text-align: center;
  transition: color 0.3s ease;
}

.popular p:hover {
  color: #b5651d;
}


.partners-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 3.2s;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.partners-section h2 {
  font-size: 54px;
  font-family: "TT Background", serif;
  color: #3a2f2d;
  border-bottom: 2px solid #b5651d;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.partners-section h2:hover {
  color: #b5651d;
}

.partners-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #3a2f2d;
  margin-bottom: 20px;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.partners-section p:hover {
  color: #b5651d;
}

.partners-section ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}

.partners-section ul li {
  font-size: 16px;
  color: #3a2f2d;
  margin-bottom: 10px;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.partners-section ul li:hover {
  color: #b5651d;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.carousel img {
  width: 150px;
  height: 80px;
  object-fit: contain;
  margin: 0 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(181, 101, 29, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .partners-section {
    padding: 20px 10px;
  }

  .partners-section h2 {
    font-size: 28px;
  }

  .partners-section p {
    font-size: 14px;
  }

  .partners-section ul {
    padding-left: 15px;
    max-width: 90%;
  }

  .partners-section ul li {
    font-size: 12px;
  }

  .carousel img {
    width: 100px;
    height: 50px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .partners-section h2 {
    font-size: 20px;
  }

  .partners-section p {
    font-size: 12px;
  }

  .partners-section ul {
    padding-left: 10px;
  }

  .partners-section ul li {
    font-size: 10px;
  }

  .carousel img {
    width: 80px;
    height: 40px;
    margin: 0 5px;
  }
}

/* Footer Styles */
footer {
  background-color: #f5f2ed;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.footer-text {
  flex: 1;
  padding: 20px;
  z-index: 2;
}

.footer-text h2 {
  font-size: 36px;
  font-family: "TT Background", serif;
  color: #3a2f2d;
  margin: 0 0 20px;
  border-bottom: 2px solid #b5651d;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-text h2:hover {
  color: #b5651d;
}

.footer-text p {
  font-size: 18px;
  color: #3a2f2d;
  margin: 10px 0;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.footer-text p:hover {
  color: #b5651d;
}

.footer-text p strong {
  font-weight: bold;
  color: #3a2f2d;
  transition: color 0.3s ease;
}

.footer-text p strong:hover {
  color: #b5651d;
}

.footer-contact {
  flex: 1;
  padding: 20px;
  text-align: right;
  z-index: 2;
}

.footer-contact h3 {
  font-size: 24px;
  font-family: "TT Commons Pro", sans-serif;
  color: #3a2f2d;
  margin: 0 0 15px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-contact h3:hover {
  color: #b5651d;
}

.footer-contact p {
  font-size: 16px;
  color: #3a2f2d;
  margin: 8px 0;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.footer-contact p:hover {
  color: #b5651d;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-text h2 {
    font-size: 28px;
  }

  .footer-contact h3 {
    font-size: 20px;
  }

  .footer-text p,
  .footer-contact p {
    font-size: 14px;
  }
}

/* Optional FadeInUp Animation (if not already defined elsewhere) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-social-icons {
  position: fixed;
  top:90%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-social-icons .social-icon {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-social-icons .social-icon:hover {
  transform: scale(1.1);
}

/* Brand colors */
.floating-social-icons .facebook { background-color: #3b5998; }
.floating-social-icons .instagram { background-color: #e4405f; }
.floating-social-icons .youtube { background-color: #ff0000; }




/* Google Reviews Section */
.google-reviews {
  background-color: #eceada;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.reviews-container h2 {
  font-size: 54px;
  font-family: "TT Background", serif;
  color: #3a2f2d;
  border-bottom: 2px solid #b5651d;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.reviews-container h2:hover {
  color: #b5651d;
}

.reviews-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #b5651d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-avatar img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(181, 101, 29, 0.5);
}

.review-content {
  flex: 1;
  text-align: left;
}

.review-content p {
  font-size: 16px;
  color: #3a2f2d;
  margin: 0 0 10px;
  line-height: 1.5;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.review-content p:hover {
  color: #b5651d;
}

.review-content .reviewer-name {
  font-size: 18px;
  font-weight: bold;
  color: #735e59;
  margin: 0;
  font-family: "TT Commons Pro", sans-serif;
  transition: color 0.3s ease;
}

.review-content .reviewer-name:hover {
  color: #b5651d;
}

.review-content .review-date {
  font-size: 14px;
  color: #888;
  margin: 5px 0 0;
  font-family: "TT Commons", sans-serif;
}

.review-prev,
.review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.review-prev:hover,
.review-next:hover {
  background-color: rgba(181, 101, 29, 0.8);
}

.review-prev {
  left: 10px;
}

.review-next {
  right: 10px;
}

.description {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5;
  font-family: "TT Commons", sans-serif;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description:hover {
  color: #b5651d;
}

.description span {
  font-weight: bold;
  color: #735e59;
}

.description span:hover {
  color: #b5651d;
}

.description ul {
  margin: 10px 0 15px;
  padding-left: 20px;
}

.description li {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5;
  font-family: "TT Commons", sans-serif;
  transition: color 0.3s ease;
}

.description li:hover {
  color: #b5651d;
}

.know-more {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-family: "TT Commons", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #b5651d;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.know-more:hover {
  background-color: #8c4a15;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .description {
    font-size: 1.2rem;
  }

  .description li {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .description {
    font-size: 1rem;
  }

  .description li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .reviews-slider {
    max-width: 100%;
  }

  .review-slide {
    flex-direction: column;
    text-align: center;
  }

  .review-content {
    text-align: center;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
