@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  font-family: 'Catamaran', serif;
  margin: 0;
  padding: 0;
  color: #333;
  text-align: center;
  /* line-height: 25px; */
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 67px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 60px;
  margin-bottom: 40px;
}

h2 {
  line-height: 32px;
  font-family: 'Cormorant Garamond', serif;
}

/* Adjust for tablets and smaller screens */
@media (max-width: 1024px) {
  h1 {
    font-size: 50px;
  }
}

/* Adjust for mobile devices */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

/* Further reduce for very small screens */
@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background: white;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}

.links {
  flex-direction: row;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
nav a {
  text-decoration: none;
  color: #333;
}
.btn {
  background: linear-gradient(to right, #d63800, #f89f00);
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .btn {
    font-size: smaller;
  }
}

.hero {
  padding: 50px;
  background: #ffffff;
  padding-bottom: 70px;
}

.small {
  color: #797979;
  font-size: 16px;
}

.num-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent breaking into new lines */
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  text-transform: capitalize;
  gap: 15px; /* Ensures spacing is even */
}

.num {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  padding: 0 20px;
  color: #797979;
  position: relative;
  white-space: nowrap;
}

.num:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 110%; /* Adjust for better alignment */
  width: 1px;
  background-color: #e1dede;
}

.num span {
  font-weight: bold;
  font-size: 38px;
  color: black;
}

/* Adjust for tablets and smaller screens */
@media (max-width: 1024px) {
  .num {
    font-size: 14px;
    padding: 0 15px;
  }
  .num span {
    font-size: 35px;
  }
}

/* Mobile-friendly styling */
@media (max-width: 768px) {
  .num-container {
    flex-wrap: nowrap; /* Ensure one row on small screens */
    gap: 10px;
  }

  .num {
    font-size: 13px;
    padding: 0 10px;
  }

  .num span {
    font-size: 28px;
  }

  .num:not(:last-child)::after {
    height: 60%;
    right: -5px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .num {
    font-size: 12px;
    padding: 0 5px;
  }

  .num span {
    font-size: 22px;
  }

  .num:not(:last-child)::after {
    height: 50%;
    right: -3px;
  }
}

.trusted {
  background: linear-gradient(to left, #d63800, #f89f00);
  overflow: hidden;
  display: flex;
}

.contact {
  padding: 50px;
}

.btn-trusted {
  background-color: orange;
  padding: 10px 20px;
  border-radius: 20px;
  width: 250px;
  margin: 0 auto;
  transform: translateY(20px);
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Add animation to the logos section */
/* Add animation to the logos section */
.logos {
  display: grid;
  grid-template-columns: repeat(10, 1fr); /* Default: 10 equal-width columns */
  gap: 30px; /* No space between the grid items */
  align-items: center; /* Center items vertically */
  justify-items: center; /* Center items horizontally */
  width: 100%; /* Ensure the grid takes full width */
  animation: slideLogos 40s linear infinite; /* Apply the animation */
}

@keyframes slideLogos {
  0% {
    transform: translateX(0); /* Start at the initial position */
  }
  100% {
    transform: translateX(
      -100%
    ); /* Move to the left, effectively sliding the whole row out of view */
  }
}

.logos-container {
  display: flex;

  gap: 30px;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  align-items: start;
  justify-content: space-between;
}

/* Logo container styling */
.logo-c img {
  max-width: 120px;
  max-height: 50px;
}

.logo-c {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Responsive grid layout */
@media (max-width: 1200px) {
  /* .logos {
    grid-template-columns: repeat(8, 1fr); 
  } */

  .logos-container {
    display: flex;
    flex-wrap: nowrap;
  }

  .logo-c img {
    max-width: 100px;
    max-height: 60px;
  }

  .logo-c {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 992px) {
  /* .logos {
    grid-template-columns: repeat(6, 1fr);
  } */
}

@media (max-width: 768px) {
  /* .logos {
    grid-template-columns: repeat(
      4,
      1fr
    );
  } */

  .logo-c img {
    max-width: 80px;
    max-height: 40px;
  }

  .logo-c {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  /* .logos {
    grid-template-columns: repeat(
      2,
      1fr
    ); 
  } */

  h1 {
    font-size: 46px;
    line-height: 46px;
  }

  .hero {
    padding-top: 0;
  }

  .btns-container {
    padding-left: 16px;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items */
  gap: 20px; /* Space between items */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* Centering */
  align-items: center;
  padding-top: 50px;
}

.feature {
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  min-width: 300px; /* Prevents items from getting too small */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature p {
  max-width: 230px;
  font-size: 16px;
  color: #797979;
  /* transform: translateY(-30px); */
  font-weight: 200;
  margin-top: 5px;
}

.feature h2 {
  text-transform: capitalize;
  margin-bottom: 0px;
  font-size: 40px;
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .feature {
    flex: 1 1 100%; /* 1 column */
  }

  .feature h2 {
    font-size: 35px;
  }
}

/* galery style */
/* Ensure Swiper container takes full width */
/* General Gallery Style */
.gallery {
  max-width: 800px;
  margin: 50px auto;

  /* border: 1px solid orange; */
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
  height: 300px;
  background-size: cover; /* Ensures the full image is visible */
  background-position: center;
  background-repeat: no-repeat;
}

/* Creative Showcase Label */
.creative-showcase {
  display: block;
  margin: 0 auto;
  background: #ffc107;
  color: #fff;
  padding: 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
  transform: translateY(-40px);
  width: 150px;
}

#gallery-container {
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Image Container */
/* Gallery Container */
.gallery-content {
  width: 100%;
  max-width: 900px;
  height: 300px; /* Adjust height as needed */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  opacity: 1; /* Initial opacity */
  transform: translateY(-200px);
  z-index: -10;
  transition: all 0.5s ease-out; /* Subtle opacity transition */
  display: flex;
}

.gallery-content img {
  max-width: 100%;
  height: 500px;
  border-radius: 10px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.gallery-content img.active {
  opacity: 1;
}

/* Arrows */
.gallery .arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
}

.left,
.right {
  font-size: 30px;
  cursor: pointer;
  color: #f89f00;
  background-color: #f6f5f4;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
}

/* Gallery Dots (Separate from Comments) */
.gallery-dot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  gap: 10px;
  z-index: 10;
  position: absolute;
  top: 250px;
  right: 43%;
}

.gallery-dot-container span {
  color: #ffffff;
  font-size: 12px;
}

/* Navigation Arrows */
.arrows2 {
  position: absolute;
}

/* test */
/* aqui style */

.aqui {
  /* padding-top: 50px; */
}

.aqui h2 {
  font-size: 40px;
}

.aqui p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .aqui h2 {
    font-size: 35px;
  }

  .aqui p {
    font-size: 14px;
  }
}

/* comments style */
.coments {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid orange;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 20px;
  font-size: 16px;
  padding: 20px;
}

.coments p {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}

.somone {
  color: #f89f00;
  font-size: 14px;
}

.coments img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* arrows */
.arrows {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}

.coments .left,
.coments .right {
  font-size: 30px; /* Adjust size as needed */
  cursor: pointer;
  color: #ffffff; /* Arrow color */
  background-color: #f89f00;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* dots */

.dot-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  gap: 10px;
}

.dot-container span {
  color: #f89f00;
  font-size: 10px;
}

/* form style */

.contact {
  background: linear-gradient(to right, #d63800, #f89f00, #bad606);
}

.contact-div {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact img {
  width: 200px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
  margin-right: 20px;
}
input,
textarea {
  padding: 10px 10px;
  padding-right: 200px;
  border: transparent;
  border-radius: 5px;
  background-color: rgba(
    0,
    0,
    0,
    0.1
  ); /* Light gray background with transparency */
  color: white;
  text-align: left;
}

textarea {
  height: 60px;
}

input[type='text']::placeholder,
input[type='email']::placeholder,
textarea::placeholder {
  color: white;
  text-align: left; /* Left-aligned placeholder text */
  opacity: 0.7; /* Slight transparency for placeholder */
  font-size: 14px;
}

.btns-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;

  /* Removes underline from LinkedIn link */
  color: inherit; /* Matches text color */
}

.btns-container p,
.btns-container a {
  font-size: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  justify-content: center;
}

.btns-container .material-icons-outlined {
  font-size: 20px; /* Adjust size if needed */
  vertical-align: middle;
}

button {
  background: rgb(255, 255, 255);
  color: rgb(253, 131, 31);
  padding: 10px 32px;
  border: none;
  border-radius: 5px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}
.btns-container img {
  width: 16px !important;
  height: 16px;
}
a {
  text-decoration: none;
  color: white;
}

/* Responsive styles for small screens (mobile) */
@media (max-width: 600px) {
  .contact-div {
    padding: 15px;
    width: 100%;
  }

  .contact img {
    width: 150px;
    /* margin-bottom: 20px; */
  }

  .contact form {
    width: 100%;
    margin-right: 0;
  }

  input,
  textarea {
    padding-right: 20px;
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  button {
    padding: 10px 30px;
    font-size: 12px; /* Adjust font size for smaller screens */
  }

  .btns-container {
    /* flex-direction: column; */
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: start;
  }

  .gallery-dot-container {
    right: 35%;
  }
}

/* For very small screens (portrait mobile) */
@media (max-width: 400px) {
  .contact img {
    width: 120px;
  }

  .contact form {
    padding: 10px;
  }

  input,
  textarea {
    padding-right: 15px;
    font-size: 12px; /* Further reduce font size for very small screens */
  }

  button {
    padding: 8px 20px;
    font-size: 10px;
  }
}

footer {
  padding: 20px;
  background: #ffffff;
  color: rgb(127, 125, 125);
  font-size: 16px;
}

/*  */
