/* General styles */

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}
.video {
  text-align: center;
  padding-top: 100px;
}
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 70%
  );
}

.video-container {
  width: 20%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  border-radius: 1rem;
}

#header {
  display: flex;
  justify-content: space-between;

  color: #fff;
}
.space {
  margin-bottom: 20px;
}
header h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.li {
  margin-top: 10px;
  font-size: 1.3rem;
}
nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  padding: 20px;
  margin-top: 20px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  background-color: #f9f9f9;
}

.service h3 {
  margin-bottom: 10px;
}

.service p {
  color: #666;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* real */

body {
  font-family: "Montserrat", sans-serif;
  background: #1e293b;
  color: #f8fafc;
}

.app {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header {
  h1 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;

    @media (min-width: 768px) {
      font-size: 3rem;
    }
  }

  p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
  }

  a {
    color: #7393c1;
  }
}

.tag-list {
  width: 30rem;
  max-width: 95vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  background-color: #334155;
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  box-shadow: 0 0.1rem 0.2rem rgb(0 0 0 / 20%), 0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);

  span {
    font-size: 1.2rem;
    color: #64748b;
  }
}

.fade {
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #1e293b,
    transparent 30%,
    transparent 70%,
    #1e293b
  );
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .tag-list {
    max-width: 100vw; /* Ensure the tag list uses the full viewport width */
    padding: 1rem; /* Adjust padding for smaller screens */
  }

  .tag {
    font-size: 0.8rem; /* Adjust font size for readability */
    padding: 0.6rem 0.8rem; /* Adjust padding to fit smaller screens */
    margin-right: 0.5rem; /* Reduce margin between tags */
  }

  .fade {
    background: linear-gradient(
      90deg,
      #1e293b,
      transparent 20%,
      transparent 80%,
      #1e293b
    ); /* Adjust fade for mobile */
  }
}
header h1 {
  margin: 0;
  font-size: 24px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
}

nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: yellow;
  transition: width 0.3s;
  position: absolute;
  bottom: -3px;
  left: 0;
}

nav ul li a:hover::after {
  width: 100%;
}

header {
  background-color: #080707;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* 3 */

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: 100%;
  user-select: none;
}
.desc {
  font-weight: 50px;
}
/*===== CARD =====*/
.container {
  height: 100%;
  width: 850px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.card {
  position: relative;
  padding: 1rem;
  width: 350px;
  height: 450px;
  box-shadow: -1px 15px 30px -12px rgb(234, 230, 230);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #f06, #f79); /* Gradient background */
  color: #fff; /* Text color */
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
  border: 5px solid transparent; /* Transparent border for background clipping */
  background-clip: padding-box; /* Clips background to the padding box */
}

.card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  border-radius: 0.9rem; /* Match the border radius */
  background: linear-gradient(89deg, #f06, #f79, #06f, #79f);
  background-size: 400% 400%; /* Larger background for animation */
  animation: borderAnimation 6s ease infinite; /* Animation for the border */
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card:hover {
  transform: translateY(-10px) scale(1.05); /* Slightly lift and enlarge the card on hover */
  box-shadow: -1px 25px 40px -12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Optional: Adding a subtle animation to the gradient background */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card {
  background-size: 200% 200%;
  animation: gradientAnimation 5s ease infinite;
}

/*card demo*/

.card-blue {
  background: var(--blue-card);
}

.product-image {
  height: 230px;
  width: 100%;
  transform: translate(0, -1.5rem);
  transition: transform 500ms ease-in-out;
  filter: drop-shadow(5px 10px 15px rgba(8, 9, 13, 0.4));
}
.product-info {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.card:hover .product-image {
  transform: translate(-1.5rem, -7rem) rotate(-30deg);
}

.product-info h2 {
  font-size: 1.4rem;
  font-weight: 600;
}
.product-info p {
  margin: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  body {
    height: auto;
  }
  .container {
    padding: 2rem 0;
    width: 100%;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
  }
}

.wrapper {
  max-width: 75%;
  margin: auto;
  font-family: "Roboto", sans-serif;
}

.wrapper > p,
.wrapper > h1 {
  margin: 1.5rem 0;
  text-align: center;
}

.wrapper > h1 {
  letter-spacing: 3px;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.6rem;
}

.active,
.accordion:hover {
  background-color: #f1f7f5;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #f1f7f5;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}
.faq.active {
  border: none;
}

/* contact form */

.contact-section {
  background: #ccd6e1;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  max-width: 45%;
  margin: 0;
}

#map {
  flex: 1;
  max-width: 45%;
  height: 400px;
  background: url("/path-to-your-map-image.jpg") no-repeat center center;
  background-size: cover;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline-color: transparent !important;
}

.contact-form button {
  width: 100%;
  padding: 10px 15px;
  background: #64748b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #475569;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 20px 10px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  #map {
    max-width: 100%;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 16px;
  }
}
.submit {
  margin-bottom: 1rem;
}

/* banner image */

.banner {
  min-height: 80vh;
  margin-top: 20px;
  line-height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.5rem;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url("./tax-image-new.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

.banner h1 {
  margin: 0 0 20px 0;
  padding-top: 7rem;
}

.button-91 {
  background-color: #ffffff;

  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 7rem;
  list-style-type: none;
}

.button-91:hover {
  background-color: #475569;
}

.button-91 a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .banner {
    font-size: 0.8rem;
    line-height: 2rem;
    padding: 10px;
  }

  .button-91 {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* About us Page  */

main {
  padding: 20px;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
  padding: 20px;
}

.text h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #1e293b;
}

.text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.image {
  width: 20rem;
  flex: 1;
  padding: 20px;
}

.image img {
  max-width: 100%;
  width: 25rem;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .content.reverse {
    flex-direction: column;
  }

  .text,
  .image {
    padding: 10px;
  }
}

/* button style */

/* client feedback */
.client-head {
  font-family: "Montserrat", sans-serif;
}
.client-feedback {
  font-family: "Montserrat", sans-serif;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;

  text-align: center;
}

.feedback-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.feedback-item {
  min-width: 300px;
  margin: 10px;
  background-color: #0c0202;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: slide 20s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-item img {
  width: 100px; /* Set a fixed width */
  height: 100px; /* Set a fixed height to match width for a perfect circle */
  border-radius: 50%;
  object-fit: cover; /* Ensures the image covers the entire circle */
  margin-bottom: 10px;
}

.client-info {
  padding: 15px;
  color: #fff; /* Changed text color to white for better visibility */
}

.client-name {
  font-weight: bold;
  margin: 10px 0 5px;
}

.client-rating {
  color: #ffa500;
  margin-bottom: 10px;
}

.client-comment {
  font-style: italic;
  color: #fff;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-100px * 9)
    ); /* Adjust this value based on the number of items */
  }
}

/* Founder and CEO */

.founder-ceo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #1e293b;
  padding: 20px;
}

.founder-ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2d3748;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  text-align: center;
  transition: transform 0.3s ease;
}

.founder-ceo-card:hover {
  transform: translateY(-10px);
}

.founder-ceo-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #73ff00;
}

.founder-ceo-info {
  padding: 0 20px;
}

.founder-ceo-info h2 {
  font-size: 24px;
  margin: 10px 0;
}

.founder-ceo-info h3 {
  font-size: 20px;
  color: #ffa500;
  margin: 5px 0 20px;
}

.founder-ceo-info p {
  font-size: 20px;
  line-height: 1.6;
  margin: 10px 0;
}

/* General Responsive Styles */
@media (max-width: 768px) {
  /* Styles for screens up to 768px wide */
  .container {
    width: 100%;
    padding: 0 20px;
  }

  .video-container {
    width: 80%;
  }

  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  /* Styles for screens up to 480px wide */
  .video-section {
    padding: 10px;
  }

  .video-container {
    width: 90%;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

/* Header Responsive Styles */
@media (max-width: 768px) {
  #header {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 10px;
  }
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .content.reverse {
    flex-direction: column-reverse;
  }

  .text,
  .image {
    padding: 10px;
  }
}

/* Contact Form Responsive Styles */
@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
  }
}

/* Card Responsive Styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    max-width: 400px;
    margin-bottom: 20px;
  }
}

/* Accordion Responsive Styles */
@media (max-width: 768px) {
  .wrapper {
    max-width: 90%;
  }
}

/* Client Feedback Responsive Styles */
@media (max-width: 768px) {
  .client-feedback {
    width: 100%;
    padding: 0 20px;
  }
}

/* Founder and CEO Responsive Styles */
@media (max-width: 768px) {
  .founder-ceo-section {
    height: auto;
    padding: 40px 20px;
  }

  .founder-ceo-card {
    max-width: 100%;
  }
}

/* New css */

/* Remove Horizontal Scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Container */
.container {
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Video Section */
.video-section {
  height: auto;
  min-height: 100vh;
  padding: 80px 0;
}

/* Card Container */
.container {
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  max-width: 350px;
  margin: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }
}

#typing-effect {
  border-right: 2px solid #333;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #333;
  }
}

.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}
.whatsapp_float:hover {
  transform: scale(1.1);
}
.whatsapp-icon {
  margin-top: 16px;
}
/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 10px;
  }
  .whatsapp_float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.popup-content {
  background: #2c3e50;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 100%;
  color: #ecf0f1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: popup 0.5s ease-out;
}

@keyframes popup {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-content h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
}

.popup-content p {
  margin: 20px 0;
  font-size: 18px;
}

.call-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1abc9c;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #16a085;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #ecf0f1;
}

@media (max-width: 600px) {
  .popup-content {
    padding: 15px;
    max-width: 280px;
    margin: 0 auto;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content p,
  .call-button {
    font-size: 16px;
  }

  .close-btn {
    top: 6px;
    right: 16px;
    font-size: 25px;
  }
}
/* Footer */

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer h2 {
  margin: 10px 0;
}

footer p {
  margin: 5px 0;
}

.social-media {
  margin: 20px 0;
}

.social-media a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-media a:hover {
  color: #ddd;
}

.footer-links {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .social-media a {
    font-size: 20px;
    margin: 0 8px;
  }
  .contact-info a {
    font-size: 16px;
  }
}

.contact-info {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info .phone,
.contact-info .email {
  margin: 10px 0;
}

.contact-info a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.contact-info a i {
  margin-right: 8px;
  font-size: 20px;
}

.contact-info a:hover {
  color: #ddd;
}
