* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
}

.navbar {
  width: 100%;
  height: 115px;
  padding: 0;
  background: #2a9df4;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 100%;
  max-width: 1294px;
  padding: 0 20px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 12.44%;
  flex-shrink: 0;
  height: 100px;
  margin-top: 10px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61.05%;
  flex-shrink: 0;
}

.menu > ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  list-style: none;
}

.menu > ul > li > a,
.menu > ul > li > .services-toggle {
  white-space: nowrap;
  font-size: 13px;
}

.menu > ul > li {
  position: relative;
}

.menu > ul > li > a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.menu > ul > li > a:hover {
  color: #ffa500;
}

.menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu > ul > li > a img {
  width: 10px;
  height: 10px;
  transition: 0.3s ease;
}

.menu ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px 0;
  min-width: 250px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  list-style: none;
  z-index: 999;
  border-radius: 8px;
}

.menu ul li:hover > ul {
  display: block;
}

.menu ul li ul li a {
  display: block;
  padding: 12px 25px;
  text-decoration: none;
  color: #ffa500;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.menu ul li ul li a:hover {
  background: #ffa500;
  color: #fff;
  padding-left: 30px;
}

.menu > ul > li > .services-toggle {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.menu > ul > li > .services-toggle:hover {
  color: #ffa500;
}

.menu > ul > li > .services-toggle img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.menu > ul > li.has-squares.active > .services-toggle img {
  transform: rotate(180deg);
}

.nav-right {
  width: 16.15%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  justify-content: space-between;
}

.language-dropdown {
  position: relative;
  width: 40px;
  height: auto;
  font-family: Arial, sans-serif;
  z-index: 2000;
}

.lang-selected {
  background: #ffa500;
  width: 40px;
  height: 40px;
  color: white;
  padding: 13px 0;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  background: white;
  padding: 10px 3px;
  display: none;
  flex-direction: column;
  gap: 3px;
  z-index: 3000;
  width: 48px;
  height: auto;
}

.lang-options.show {
  display: flex;
}

.lang-option.active {
  background: #ffa500;
  color: white;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  width: 40px;
  height: 40px;
}

.lang-option {
  background: white;
  color: #ffa500;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid#FFA500;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
}

.lang-option:not(.active):hover {
  background: #f0f0f0;
}

.language-dropdown:hover .lang-options.show {
  display: flex;
}

.header-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffa500;
  color: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 40px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.header-btn a span {
  position: relative;
  z-index: 1;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.menu-close {
  display: none;
}

.menu-logo {
  display: none;
}

.menu-social {
  display: none;
}

.menu-contact {
  display: none;
}

.menu-nav-right {
  display: none;
}

.menu.active .menu-nav-right {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .nav-container {
    width: 100%;
    max-width: 1024px;
    padding: 0 30px;
  }

  .menu {
    width: auto;
  }

  .menu > ul > li > a {
    font-size: 14px;
    padding: 20px 10px;
  }

  .header-btn a {
    padding: 12px 30px;
    font-size: 14px;
  }

  .nav-right {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .language-switcher {
    display: none;
  }

  .nav-container {
    padding: 0 20px;
  }

  .logo {
    width: 161px;
    height: 100px;
    order: 1;
  }

  .burger-menu {
    display: flex;
    order: 2;
  }

  .burger-menu span {
    background: #ffa500;
  }

  .nav-right {
    display: none;
    order: 3;
  }

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: #2a9df4;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    transition: left 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .menu.active {
    left: 0;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 32px;
    text-align: center;
    z-index: 10;
  }

  .menu-close::before {
    content: "×";
  }

  .menu-logo {
    display: block;
    width: 100%;
    padding: 25px 30px;
    margin-bottom: 0;
  }

  .menu-logo img {
    width: 200px;
    height: 50px;
    object-fit: contain;
  }

  .menu > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 20px 30px;
  }

  .menu ul li ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .menu > ul > li > a {
    color: #fff;
    padding: 15px 0;
    width: 100%;
    font-size: 16px;
    display: block;
    position: relative;
  }

  .menu > ul > li.has-squares:not(.demos-trigger) > a {
    padding-right: 40px;
  }

  .menu > ul > li.demos-trigger > a::before {
    display: none;
  }

  .menu > ul > li > a:hover {
    color: #ffa500;
  }

  .menu ul li ul {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu ul li.has-squares.active > ul {
    display: block;
    max-height: 500px;
    padding: 10px 0 10px 0;
  }

  .menu ul li ul li {
    border: none;
  }

  .menu ul li ul li a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 14px;
    text-transform: none;
  }

  .menu ul li ul li a:hover {
    background: transparent;
    color: #ffb400;
  }

  .menu ul li ul li ul {
    left: 0;
    box-shadow: none;
  }

  .menu ul li.has-squares::before {
    display: none;
  }

  .menu-nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    padding: 20px 30px;
  }

  .menu-nav-right .language-dropdown {
    position: relative;
    width: auto;
    z-index: 2000;
  }

  .menu-nav-right .lang-selected {
    display: none;
  }

  .menu-nav-right .lang-options {
    position: static;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    z-index: 3000;
    width: auto;
    border: none;
  }

  .menu-nav-right .lang-options.show {
    display: flex;
  }

  .menu-nav-right .lang-option {
    background: white;
    color: #ffa500;
    padding: 8px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ffa500;
    cursor: pointer;
    transition: 0.3s;
    width: 48px;
    height: 36px;
  }

  .menu-nav-right .lang-option.active {
    background: #ffa500;
    color: #fff;
  }

  .menu-nav-right .lang-option:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-nav-right .header-btn {
    display: block;
    width: 100%;
    flex: 1;
  }

  .menu-nav-right .header-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffa500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 40px;
    letter-spacing: 0.5px;
    width: 100%;
    white-space: nowrap;
  }

  .menu-nav-right .header-btn a span {
    position: relative;
    z-index: 1;
  }

  .header-btn {
    display: none;
  }

  .nav-right {
    gap: 5px;
  }

  .menu > ul > li > .services-toggle {
    width: 100%;
    padding: 15px 0;

    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    cursor: pointer;
    position: relative;
  }

  .menu > ul > li > .services-toggle:hover {
    color: #ffa500;
  }

  .menu > ul > li > .services-toggle img {
    width: 12px;
    height: 12px;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo {
    width: 161px;
    height: 100px;
  }

  .menu {
    width: 280px;
  }

  .menu-logo {
    padding: 20px 25px;
  }

  .menu-logo img {
    width: 180px;
    height: 45px;
  }

  .menu > ul {
    padding: 15px 25px;
  }

  .menu > ul > li > a {
    font-size: 15px;
    padding: 12px 0;
  }

  .menu ul li ul {
    padding: 8px 0 8px 0;
  }

  .menu ul li ul li a {
    font-size: 13px;
    padding: 8px 0;
  }

  .nav-right {
    gap: 10px;
  }

  .search-icon img {
    width: 20px;
    height: 20px;
  }

  .header-cart {
    width: 40px;
    height: 40px;
  }

  .header-cart img {
    width: 20px;
    height: 20px;
  }

  .header-cart-badge {
    font-size: 10px;
    padding: 1px 5px;
  }

  .menu-nav-right {
    padding: 15px 25px;
    gap: 10px;
  }

  .menu-nav-right .lang-selected {
    display: none;
  }

  .menu-nav-right .lang-options {
    width: auto;
    gap: 6px;
  }

  .menu-nav-right .header-btn a {
    padding: 10px 15px;
    font-size: 13px;
  }

  .menu > ul > li > .services-toggle {
    font-size: 15px;
    padding: 12px 0;
  }
}

@media screen and (max-width: 375px) {
  .logo {
    width: 161px;
    height: 100px;
  }

  .menu {
    width: 260px;
  }

  .menu-logo {
    padding: 18px 20px;
  }

  .menu-logo img {
    width: 160px;
    height: 40px;
  }

  .menu > ul {
    padding: 12px 20px;
  }

  .menu > ul > li > a {
    font-size: 14px;
  }

  .burger-menu span {
    width: 25px;
  }

  .nav-right {
    gap: 8px;
  }

  .menu-nav-right {
    padding: 12px 20px;
    gap: 8px;
  }
}

.hero-decor-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 260px;
  background: url("../images/main-slider-shape-2-1.png") no-repeat;
  background-size: cover;
  z-index: 2;
  animation: floatTop 4s ease-in-out infinite;
}

@keyframes floatTop {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, 6px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.hero-decor-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  z-index: 5;
  pointer-events: none;
}

.hero-slider-container {
  background-color: #f1eeee;
  position: relative;
  width: 100%;
  height: 608px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hero-content-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 780px;
  width: 100%;
  position: relative;
  z-index: 4;
  padding: 80px 0;
}

.hero-main-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-highlight {
  color: transparent;
  -webkit-text-stroke: 2px #ffa500;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2a9df4;
  border-radius: 2px;
}

.hero-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-buttons-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-btn {
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s ease;
}

.hero-btn::before,
.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  transform: skewX(-50deg);
  transition: all 0.35s ease;
  z-index: -1;
}

.hero-btn::before {
  left: -90px;
}
.hero-btn::after {
  right: -90px;
}

.hero-btn-secondary {
  background: #2a9df4;
  color: #ffffff;
}

.hero-btn-secondary::before,
.hero-btn-secondary::after {
  background: #ffa500;
}

.hero-btn-secondary:hover {
  background: #ffb400;
  color: #000;
  border-color: #ffb400;
}

.hero-btn-secondary:hover::before {
  left: 0;
}

.hero-btn-secondary:hover::after {
  right: 0;
}

.hero-btn-primary:hover .hero-btn-icon img {
  filter: brightness(0) invert(1);
}

.hero-btn-secondary:hover .hero-btn-icon img {
  filter: brightness(0);
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) {
  .hero-row {
    padding: 0 40px;
    gap: 40px;
  }

  .hero-content-wrapper {
    padding: 60px 0;
    max-width: 680px;
  }

  .hero-main-title {
    font-size: 54px;
  }

  .hero-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-slider-container {
    height: 600px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-decor-top {
    z-index: 0;
    opacity: 1;
    display: block;
    transform: scale(0.8);
  }

  .hero-slide {
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
  }

  .hero-row {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .hero-content-wrapper {
    margin-top: 100px;
    padding: 0;
    max-width: 100%;
  }

  .stats-container {
    display: none !important;
  }

  .hero-welcome-badge {
    width: 318px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 10px;
  }

  .hero-welcome-text {
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-images-group {
    display: none;
  }

  .hero-header {
    justify-content: center;
  }

  .hero-main-title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 10px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .hero-buttons-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: flex-start;
  }

  .hero-btn {
    width: 80%;
    max-width: 260px;
    height: 50px;
    justify-content: center;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-row {
    padding: 40px 20px;
  }

  .hero-slide {
    text-align: left;
    align-items: flex-start;
  }

  .hero-header {
    justify-content: flex-start;
  }

  .hero-welcome-badge {
    padding: 10px 20px;
    gap: 8px;
  }

  .hero-main-title {
    font-size: 32px;
    letter-spacing: -1px;
    text-align: left;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
  }

  .hero-buttons-group {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .hero-btn {
    width: 224px;
    height: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .hero-row {
    padding: 30px 15px;
  }

  .hero-slide {
    text-align: left;
    align-items: flex-start;
  }

  .hero-main-title {
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
  }

  .hero-description {
    font-size: 14px;
    text-align: left;
  }

  .hero-welcome-badge {
    transform: scale(0.9);
    padding: 8px 14px;
  }

  .hero-buttons-group {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero-btn {
    width: 224px;
    height: 54px;
    font-size: 14px;
    justify-content: center;
  }
}

.stats-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.stats-photo {
  width: 560px;
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .stats-photo {
    width: 400px;
  }
}

.best-features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tagline-text {
  color: #2a9df4;
  font-size: 20px;
  font-weight: 400;
}

.section-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.section-main-title .highlight {
  color: #ffa500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: center;
  gap: 30px;
}

.feature-card {
  width: 400px;
  min-height: 388px;
  background: #f5f5f5;
  border-radius: 20px 20px 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.card-top-arc {
  width: 100%;
  height: 100px;
  background: transparent;
}

.icon-circle {
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -60px 0 20px 35px;
  transition: all 0.4s ease;
}

.icon-circle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed #2a9df4;
  transition: all 0.4s ease;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  transition: filter 0.4s ease;
}

.feature-card:hover .icon-circle {
  background: #2a9df4;
}

.feature-card:hover .icon-circle::before {
  border-color: #2a9df4;
}

.feature-card:hover .icon-circle img {
  filter: brightness(0) invert(1);
}

.card-inner {
  padding: 0 35px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.card-description {
  color: #5e5b5b;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 40px;
}

.card-button {
  position: absolute;
  bottom: 25px;
  left: 35px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.card-button span {
  text-transform: uppercase;
}

.feature-card:hover .card-button {
  color: #ffa500;
}

.button-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a9df4;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-arrow img {
  width: 14px;
  height: 14px;
  display: block;
}

.feature-card:hover .button-arrow {
  background: #ffa500;
  color: #fff;
}

@media (max-width: 1024px) {
  .best-features-section {
    padding: 50px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-card {
    width: 100%;
    height: auto;
  }

  .icon-circle {
    margin: -50px 0 15px 25px;
  }

  .card-inner {
    padding: 0 25px 35px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .icon-circle {
    margin: -45px 0 15px 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .feature-card {
    height: auto;
  }

  .card-button {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .feature-card {
    width: 360px;
    height: 379px;
  }

  .icon-circle {
    margin: -40px 0 15px 20px;
  }

  .card-inner {
    padding: 0 20px 35px;
  }

  .card-button {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 375px) {
  .features-grid {
    justify-items: center;
    gap: 15px;
  }

  .feature-card {
    width: 360px;
    height: 379px;
  }

  .icon-circle {
    margin: -35px 0 15px 15px;
    width: 75px;
    height: 75px;
  }

  .icon-circle img {
    width: 34px;
    height: 34px;
  }

  .card-inner {
    padding: 0 15px 30px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .card-button {
    bottom: 18px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .section-main-title {
    font-size: 28px;
    line-height: 1.2;
  }
}

.company-about-section {
  padding: 80px 0;
  position: relative;
  background-color: #f5f2ef;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-row {
  display: flex;
  gap: 60px;
  align-items: center;
}

.left-column {
  flex: 1;
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.right-column {
  flex: 1;
  z-index: 2;
}

.images-wrapper {
  position: relative;
}

.main-image-box {
  position: relative;
}

.main-photo {
  width: 80%;
  border-radius: 50%;
  border: 15px solid #fff;
  display: block;
}

.second-image-box {
  position: absolute;
  bottom: -10px;
  right: 50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 10px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.second-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-box-section {
  padding-left: 20px;
}

.header-block {
  margin-bottom: 30px;
}

.header-top-part {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.header-small-title {
  color: #2a9df4;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.header-big-title {
  font-size: 35px;
  color: #222;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}

.header-big-title .color-text {
  color: #ffa500;
}

.intro-text {
  font-size: 16px;
  color: #5e5b5b;
  line-height: 1.8;
  margin-top: -10px;
  margin-bottom: 25px;
}

.service-card {
  margin-bottom: 40px;
}

.service-content {
  display: flex;
  align-items: center;
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #ffa500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: #222;
  background: linear-gradient(to right, #dddddd, #dddddd00);
  padding: 8px 15px 8px 45px;
  margin-left: -30px;
  z-index: 1;
}

.service-text {
  margin: 10px 0 0 110px;
  font-size: 16px;
  line-height: 26px;
  color: #5e5b5b;
  margin: 10px 0 0 0;
}

.service-btn {
  min-width: 205px;
  height: 48px;
  background-color: #2a9df4;
  border-radius: 10px;
  border: none;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.service-btn a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

.service-btn img {
  margin-left: 5px;
}

@media (max-width: 1024px) {
  .main-row {
    gap: 40px;
  }
  .header-big-title {
    font-size: 30px;
  }
  .intro-text {
    font-size: 15px;
  }
  .service-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .main-row {
    flex-direction: column;
    text-align: left;
    gap: 50px;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .content-box-section {
    padding-left: 0;
  }

  .second-image-box {
    right: -20px;
    bottom: -30px;
    width: 220px;
    height: 220px;
  }

  .header-big-title {
    font-size: 28px;
  }

  .service-content {
    gap: 10px;
  }

  .service-text {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .company-about-section {
    padding: 50px 0;
  }

  .main-row {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .left-column {
    order: 1;
    width: 100%;
    margin-top: 30px;
  }

  .right-column {
    order: 2;
    width: 100%;
    text-align: left;
  }

  .main-photo {
    border-width: 12px;
  }

  .second-image-box {
    width: 180px;
    height: 180px;
    bottom: -20px;
    right: -10px;
    border-width: 10px;
  }

  .header-big-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .intro-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-content {
    gap: 10px;
  }

  .service-title {
    font-size: 17px;
    padding: 6px 25px;
  }

  .service-text {
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 375px) {
  .main-photo {
    border-width: 10px;
  }

  .second-image-box {
    width: 160px;
    height: 160px;
    bottom: -15px;
    right: -5px;
  }

  .header-big-title {
    font-size: 22px;
  }

  .intro-text {
    font-size: 14px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-text {
    font-size: 14px;
  }
}

.contact-block {
  position: relative;
  padding: 60px 20px;
  background-color: #2a9df4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.shape-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.icon-wrapper {
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed #2a9df4;
  border-radius: 50%;
  pointer-events: none;
}

.icon-wrapper img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.text-content {
  flex: 1;
}

.contact-title {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.phone-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.phone-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-list li a:hover {
  color: #2a9df4;
}

.phone-separator {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}

.btn-block {
  flex-shrink: 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background-color: #ffffff;
  color: #2a9df4;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 0;
  text-decoration: none;
}

.button-content {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-button::before,
.contact-button::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 100%;
  background: #ffa500;
  transform: skewX(-45deg);
  transition: all 0.4s ease;
  z-index: 1;
}

.contact-button::before {
  left: -60px;
}

.contact-button::after {
  right: -60px;
}

.contact-button:hover {
  background: #ffa500;
  color: #ffffff;
}

.contact-button:hover::before {
  left: 0;
}

.contact-button:hover::after {
  right: 0;
}

.contact-button:hover .arrow-element {
  color: #ffffff;
}

.contact-button:hover .arrow-element img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .contact-title {
    font-size: 26px;
  }
  .icon-wrapper {
    width: 110px;
    height: 110px;
  }
  .icon-wrapper img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .shape-overlay::before {
    display: block !important;
    top: 0;
    right: 0;
    width: 120px;
    height: 100px;
    background: #fbbf24;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 2;
  }

  .shape-overlay::after {
    display: block !important;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 100px;
    background: #1d4ed8;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 1;
  }

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

  .contact-title br {
    display: none;
  }

  .contact-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .phone-list {
    justify-content: center;
  }

  .shape-overlay::before,
  .shape-overlay::after {
    display: none;
  }

  .btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    gap: 25px;
  }

  .icon-wrapper {
    width: 95px;
    height: 95px;
  }

  .icon-wrapper img {
    width: 52px;
    height: 52px;
  }

  .contact-title {
    font-size: 20px;
  }

  .phone-list {
    gap: 12px;
  }

  .contact-button {
    padding: 15px 30px;
    font-size: 15px;
  }

  .shape-overlay::before,
  .shape-overlay::after {
    display: none;
  }
}

@media (max-width: 375px) {
  .contact-title {
    font-size: 18px;
  }

  .icon-wrapper {
    width: 85px;
    height: 85px;
  }

  .icon-wrapper img {
    width: 48px;
    height: 48px;
  }

  .phone-list li a {
    font-size: 16px;
  }

  .contact-button {
    padding: 14px 26px;
    font-size: 14px;
  }
}

.arrow-element {
  font-size: 18px;
  font-weight: bold;
}

.header-tagline {
  margin-top: 50px;
}

.testimonials-section {
  max-width: 1170px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  padding: 60px 20px;
  background-color: #ffffff;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonials-content {
  width: 1056px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px;
}

.left-block {
  flex: 1;
}

.section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-tagline {
  color: #2a9df4;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 35px;
  color: #222;
  margin-bottom: 40px;
  line-height: 1.3;
}

.highlight-span {
  color: #ffa500;
  position: relative;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
  position: absolute;
  width: 620px;
  top: 0;
  left: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-card.exit {
  opacity: 0;
  transform: translateX(-100px);
}

.rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #ffa500;
  font-size: 18px;
}

.testimonial-text {
  color: #5e5b5b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 500;
}

.author-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-label {
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-role {
  color: #5e5b5b;
  font-size: 15px;
}

.quote-icon {
  width: 50px;
  height: 50px;
  fill: #ffa500;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 16px;
  height: 16px;
  border: 2px solid #ffa500;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background-color: #ffa500;
}

.dot.active {
  background-color: #2a9df4;
  border-color: #2a9df4;
}

.right-side {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 324px;
}

.image-circle {
  width: 324px;
  height: 400px;
  border-radius: 40%;
  overflow: hidden;
  margin-left: auto;
}

.image-circle {
  position: relative;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-circle img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-circle img.active {
  opacity: 1;
}

.logos-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  overflow: hidden;
}

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

.logo-track {
  display: flex;
  gap: 60px;
  transition: transform 0.8s ease;
}

.logo-item {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-image-hover {
  width: 100%;
  max-width: 150px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.logo-item:hover .logo-image {
  opacity: 0;
}
.logo-item:hover .logo-image-hover {
  opacity: 1;
}

.logo-item:hover {
  border: 1px solid #2a9df4;
}

.logo-item::before,
.logo-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  transition: 0.3s ease;
}

.logo-item::before {
  top: 0;
  left: 0;
  border-top: 25px solid #ffa500;
  border-right: 25px solid transparent;
}

.logo-item::after {
  bottom: 0;
  right: 0;
  border-bottom: 25px solid #ffa500;
  border-left: 25px solid transparent;
}

.logo-item:hover::before,
.logo-item:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .testimonials-content {
    width: 100%;
    gap: 40px;
    flex-direction: column;
    margin: 20px auto;
  }

  .carousel-wrapper {
    width: 100%;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 70%;
    width: 70%;
    max-width: 420px;
    position: relative;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .testimonial-card.active,
  .testimonial-card.exit {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .image-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 20px;
  }

  .testimonials-content {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }

  .left-block {
    width: 100%;
  }

  .hero-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .carousel-wrapper {
    width: 100%;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 70%;
    width: 70%;
    max-width: 360px;
    position: relative;
    left: 0;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .testimonial-card.active,
  .testimonial-card.exit {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .author-box {
    justify-content: center;
    gap: 20px;
  }

  .right-side {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .image-circle {
    width: 260px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    width: 85%;
    max-width: 320px;
    background: #f4f4f4;
    padding: 20px;
    scroll-snap-align: start;
    opacity: 1;
    transform: none;
    position: relative;
    margin-bottom: 0;
  }

  .testimonial-card.active,
  .testimonial-card.exit {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .carousel-dots {
    justify-content: flex-start;
    margin-top: 15px;
    padding-left: 5px;
  }

  .dot {
    width: 16px;
    height: 16px;
  }

  .hero-title br {
    display: none;
  }

  .hero-title {
    text-align: left;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .testimonial-text {
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .author-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .author-label {
    font-size: 18px;
  }

  .quote-icon {
    align-self: flex-start;
    width: 40px;
    height: 40px;
  }

  .testimonials-section {
    background: transparent;
    box-shadow: none;
    padding: 20px;
    margin-top: 30px;
  }

  .testimonials-content {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .right-side {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .image-circle {
    width: 240px;
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 375px) {
  .testimonial-card {
    flex: 0 0 88%;
    width: 88%;
    max-width: 280px;
  }

  .dot {
    width: 16px;
    height: 16px;
  }

  .image-circle {
    width: 210px;
    height: 260px;
  }
}

.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  margin-top: 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tagline-row .tagline {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#tagline-color {
  color: #2a9df4;
}

#tagline-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.main-title {
  font-size: 35px;
  color: #222;
  line-height: 1.3;
  margin-bottom: 40px;
}

.main-text {
  color: #5e5b5b;
  font-size: 18px;
  font-weight: 500;
  width: 790px;
  margin: 0 auto;
  margin-top: -20px;
  line-height: 30px;
  font-family: "Figtree", sans-serif;
}

.main-title .colored-word {
  color: #ffa500;
}

.filter-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background-color: #f4f4f4;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #2a9df4;
  transition: right 0.4s ease;
  z-index: -1;
}

.filter-btn:hover::before {
  right: 0;
}

.filter-btn:not(:hover)::before {
  right: 100%;
  left: auto;
  transition: left 0.4s ease;
}

.filter-btn:hover {
  color: #ffffff;
}

.filter-btn.active {
  background-color: #2a9df4;
  color: #ffffff;
}

.filter-btn.active::before {
  right: 0;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 0px;
  justify-content: center;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.project-card {
  width: 370px;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* .project-card:hover img {
transform: scale(1.08) rotate(2deg);
} */

.detail-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2196f3;
  color: white;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.detail-btn:hover {
  background: #ffb400;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 350px);
    gap: 25px;
  }

  .project-card.small,
  .project-card.tall {
    width: 350px;
  }

  .project-card.small {
    height: 260px;
  }

  .project-card.tall {
    height: 540px;
  }
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .tagline-row {
    justify-content: center;
  }

  .main-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .main-text {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 26px;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .project-card.small,
  .project-card.tall {
    width: 100%;
  }

  .project-card.small {
    height: 260px;
  }

  .project-card.tall {
    height: 540px;
  }

  .filter-menu {
    max-width: 500px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 480px) {
  .filter-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 40px;
  }

  .filter-btn {
    width: 110px;
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
  }

  .grid-3-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .project-card.small,
  .project-card.tall {
    width: 360px;
  }

  .project-card.small {
    height: 272px;
  }

  .project-card.tall {
    height: 574px;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 375px) {
  .project-card.small,
  .project-card.tall {
    width: 330px;
  }

  .project-card.small {
    height: 250px;
  }

  .project-card.tall {
    height: 540px;
  }

  .filter-btn {
    width: 100px;
    font-size: 15px;
  }
}

.faq-section {
  position: relative;
  padding: 80px 0;
  background-image: url("../images/FnQ.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/linear-background.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.faq-content {
  max-width: 900px;
}

.section-header {
  text-align: left;
  margin-bottom: 30px;
}

.section-header .tagline-row {
  justify-content: flex-start;
}

.section-title,
.description-text {
  text-align: left;
}

.tagline-row {
  gap: 10px;
  margin-bottom: 15px;
}

.section-header .tagline {
  color: #ffa500;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 35px;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title .highlight-word {
  color: #ffa500;
}

.description-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: #2a9df4;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 5px 0px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  height: 51px;
}

.check-icon {
  width: 48px;
  height: 48px;
  background-color: #2a9df4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.accordion-item.active .check-icon {
  background-color: #ff9800;
}

.check-icon i {
  color: #ffffff;
  font-size: 16px;
}

.question-title {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  flex: 1;
}

.toggle-button {
  width: 45px;
  height: 45px;
  background-color: #ff9800;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item.active .toggle-button {
  background-color: #ffffff;
}

.toggle-button i {
  color: #ffffff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.accordion-item.active .toggle-button i {
  color: #2196f3;
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: transparent;
}

.accordion-item.active .accordion-content {
  max-height: 240px;
}

.content-inner {
  padding: 20px 25px 25px 85px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.answer-text {
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.answer-text {
  position: relative;
  padding-left: 20px;
}

.answer-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ffa500;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .faq-content {
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .description-text {
    font-size: 15px;
  }

  .content-inner {
    padding: 20px 20px 20px 70px;
  }

  .large-number {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .description-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .accordion-header {
    height: 48px;
    padding: 5px 10px;
  }

  .question-title {
    font-size: 16px;
  }

  .check-icon {
    width: 42px;
    height: 42px;
  }

  .toggle-button {
    width: 38px;
    height: 38px;
  }

  .content-inner {
    padding: 18px 20px 20px 60px;
    gap: 20px;
  }

  .large-number {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0;
  }

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

  .tagline-row {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .description-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .accordion-list {
    gap: 12px;
  }

  .accordion-header {
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .check-icon {
    width: 38px;
    height: 38px;
  }

  .question-title {
    font-size: 15px;
  }

  .toggle-button {
    width: 34px;
    height: 34px;
  }

  .content-inner {
    flex-direction: column;
    padding: 15px 15px 20px 20px;
    gap: 10px;
  }

  .large-number {
    font-size: 40px;
    -webkit-text-stroke: 1.5px #ffffff;
  }

  .answer-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 24px;
  }

  .description-text {
    font-size: 13px;
  }

  .question-title {
    font-size: 14px;
  }

  .check-icon {
    width: 34px;
    height: 34px;
  }

  .toggle-button {
    width: 32px;
    height: 32px;
  }

  .large-number {
    font-size: 34px;
  }

  .content-inner {
    padding: 12px 15px 18px 18px;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  justify-content: start;
}

.image-block {
  position: relative;
}

.image-container {
  width: 588px;
  height: 847px;
  border-radius: 170px 0px 200px 0px;
  overflow: hidden;
  position: relative;
}

.image-container img,
.image-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-container .contact-image {
  display: none;
}

.circle-icon {
  position: absolute;
  top: -40px;
  left: 290px;
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background: #ffa500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.icon-inner {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  border: 2px dotted #ffa500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-inner img {
  width: 46px;
  height: 49px;
}

.phone-strip {
  position: absolute;
  top: 80px;
  left: 0;
  width: 437px;
  height: 89px;
  background: #2a9df4;
  border-radius: 60px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  transform: rotate(-35deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.phone-number {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.phone-container {
  position: absolute;
  top: -20px;
  left: -150px;
  width: 500px;
  height: 200px;
  z-index: 10;
}

.form-area {
  width: 600px;
  height: 770px;
  border-radius: 20px;
  padding-top: 20px;
  position: relative;
  margin-left: -100px;
  margin-top: -20px;
}

.form-header {
  width: 570px;
  height: 94px;
  background: #2a9df4;
  margin: 0 auto;
  border-radius: 13px 13px 0 0;
  text-align: center;
  padding-top: 30px;
  position: relative;
  border: 8px solid #ffa500;
  border-bottom: none;
  box-shadow: inset 5px 0 0 0 #fff, inset -5px 0 0 0 #fff, inset 0 5px 0 0 #fff;
  background-clip: padding-box;
}

.form-header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #2a9df4;
  clip-path: polygon(0 0, 100% 0, 52% 100%, 48% 100%);
}

.form-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2a9df4;
  z-index: -1;
}

.form-title {
  font-size: 30px;
  color: white;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-subtitle {
  color: white;
  font-size: 16px;
  margin-top: 5px;
}

.form-body {
  padding: 100px 30px 30px;
}

.field-group {
  margin-bottom: 18px;
}

.input-field {
  width: 510px;
  height: 50px;
  padding: 0 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  color: #9ca3af;
  font-weight: 400;
}

.select-field {
  width: 510px;
  height: 50px;
  padding: 0 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
}

.select-field {
  color: #5e5b5b;
  font-size: 16px;
  font-weight: 400;
}

.select-field option {
  color: #333;
}

.select-field option[value=""] {
  color: #5e5b5b;
}

.custom-select {
  position: relative;
  width: 510px;
}

.select-trigger {
  height: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
}

.select-trigger span {
  color: #5e5b5b;
}

.select-trigger.has-value span {
  color: #09052f;
}

.select-trigger img {
  width: 12px;
  height: auto;
  pointer-events: none;
}

.select-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #5e5b5b;
  border-radius: 10px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  z-index: 100;
}

.select-options li {
  padding: 12px 18px;
  color: #fff;
  cursor: pointer;
}

.select-options li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.textarea-field {
  width: 510px;
  height: 118px;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  resize: none;
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
}

.button-container {
  position: relative;
  width: 510px;
}

.submit-button {
  width: 510px;
  padding: 18px;
  background: #ffa500;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: background 0.3s ease;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: #2a9df4;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.submit-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #2a9df4;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.submit-button:hover {
  background: #2a9df4;
}

.submit-button:hover::before {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.submit-button:hover::after {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.file-upload-group {
  position: relative;
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #5e5b5b;
  font-weight: 400;
  width: 100%;
  height: 55px;
  position: relative;
}

.file-upload-text {
  pointer-events: none;
}

.file-upload-input {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.error-message {
  display: block;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 30px 15px;
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .contact-grid {
    gap: 20px;
  }

  .image-container {
    width: 450px;
    height: 650px;
    border-radius: 130px 0px 150px 0px;
  }

  .circle-icon {
    top: -35px;
    left: 220px;
    width: 100px;
    height: 100px;
  }

  .icon-inner {
    width: 82px;
    height: 82px;
  }

  .icon-inner img {
    width: 38px;
    height: 40px;
  }

  .phone-strip {
    top: 60px;
    width: 360px;
    height: 75px;
    padding-left: 40px;
  }

  .phone-number {
    font-size: 24px;
  }

  .phone-container {
    top: -20px;
    left: -120px;
    width: 420px;
  }

  .form-area {
    width: 480px;
    height: auto;
    margin-left: -80px;
  }

  .form-header {
    width: 440px;
  }

  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .input-field,
  .select-field,
  .custom-select,
  .textarea-field,
  .button-container,
  .submit-button {
    width: 420px;
  }

  .textarea-field {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 25px 15px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .image-block {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .image-container video {
    display: none;
  }

  .image-container .contact-image {
    display: block;
  }

  .image-container {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 100px 0px 120px 0px;
  }

  .circle-icon {
    top: -28px;
    left: 220px;
    transform: none;
    margin-left: 0;
    width: 84px;
    height: 84px;
  }

  .icon-inner {
    width: 68px;
    height: 68px;
  }

  .icon-inner img {
    width: 32px;
    height: 34px;
  }

  .phone-strip {
    top: 55px;
    left: 0;
    transform: rotate(-35deg);
    width: 310px;
    height: 64px;
    padding-left: 34px;
    justify-content: flex-start;
  }

  .phone-number {
    font-size: 20px;
  }

  .phone-container {
    top: -12px;
    left: -10px;
    transform: none;
    width: 360px;
    height: 170px;
    max-width: none;
    margin-left: 0;
  }

  .form-area {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    padding-top: 20px;
  }

  .form-header {
    width: 90%;
    max-width: 460px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-body {
    padding: 80px 20px 30px;
  }

  .input-field,
  .select-field,
  .custom-select,
  .textarea-field,
  .button-container,
  .submit-button,
  .file-upload-wrapper {
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 20px 15px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .contact-grid {
    gap: 30px;
  }

  .image-container {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 80px 0px 100px 0px;
  }

  .image-block {
    margin-top: 30px;
  }

  .circle-icon {
    top: -24px;
    left: 175px;
    transform: none;
    margin-left: 0;
    width: 70px;
    height: 70px;
  }

  .icon-inner {
    width: 56px;
    height: 56px;
  }

  .icon-inner img {
    width: 26px;
    height: 28px;
  }

  .phone-strip {
    top: 48px;
    left: 0;
    transform: rotate(-35deg);
    width: 250px;
    height: 55px;
    padding-left: 28px;
    justify-content: flex-start;
    border-radius: 45px;
  }

  .phone-number {
    font-size: 17px;
  }

  .phone-container {
    top: -8px;
    left: -6px;
    transform: none;
    width: 300px;
    height: 140px;
    max-width: none;
    margin-left: 0;
  }

  .form-area {
    max-width: 100%;
    padding-top: 15px;
  }

  .form-header {
    width: 95%;
    max-width: 100%;
    height: 85px;
    padding-top: 25px;
  }

  .form-header::after {
    bottom: -35px;
    height: 35px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .form-subtitle {
    font-size: 13px;
    margin-top: 3px;
  }

  .form-body {
    padding: 70px 15px 25px;
  }

  .field-group {
    margin-bottom: 15px;
  }

  .input-field,
  .select-field,
  .custom-select,
  .textarea-field,
  .button-container,
  .submit-button,
  .file-upload-wrapper {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 14px;
  }

  .select-trigger {
    height: 48px;
    padding: 0 15px;
  }

  .textarea-field {
    height: 100px;
    padding: 10px 15px;
  }

  .submit-button {
    padding: 15px;
    font-size: 16px;
  }

  .file-upload-wrapper {
    height: 48px;
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .contact-section {
    padding: 15px 10px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .contact-grid {
    gap: 25px;
  }

  .image-container {
    max-width: 320px;
    height: 450px;
    border-radius: 70px 0px 90px 0px;
  }

  .circle-icon {
    top: -20px;
    left: 150px;
    transform: none;
    margin-left: 0;
    width: 64px;
    height: 64px;
  }

  .icon-inner {
    width: 50px;
    height: 50px;
  }

  .icon-inner img {
    width: 24px;
    height: 26px;
  }

  .phone-strip {
    top: 44px;
    left: 0;
    transform: rotate(-35deg);
    width: 220px;
    height: 50px;
    padding-left: 24px;
    justify-content: flex-start;
  }

  .phone-number {
    font-size: 15px;
  }

  .phone-container {
    top: -6px;
    left: -4px;
    transform: none;
    width: 260px;
    height: 120px;
    max-width: none;
    margin-left: 0;
  }

  .form-header {
    width: 100%;
    height: 80px;
    padding-top: 22px;
  }

  .form-header::after {
    bottom: -32px;
    height: 32px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-subtitle {
    font-size: 12px;
  }

  .form-body {
    padding: 65px 10px 20px;
  }

  .field-group {
    margin-bottom: 12px;
  }

  .input-field,
  .select-trigger,
  .file-upload-wrapper {
    height: 45px;
    padding: 0 12px;
    font-size: 13px;
  }

  .textarea-field {
    height: 90px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .submit-button {
    padding: 14px;
    font-size: 15px;
  }

  .submit-button::before,
  .submit-button::after {
    width: 24px;
    height: 24px;
  }

  .select-options li {
    padding: 10px 15px;
    font-size: 13px;
  }

  .file-upload-wrapper {
    font-size: 13px;
  }

  .file-upload-icon {
    width: 13px;
    height: 13px;
    font-size: 11px;
  }
}

.blog-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tagline-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tagline-line .tagline {
  color: #2a9df4;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-title {
  font-size: 35px;
  color: #222;
  line-height: 1.3;
}

.main-title .highlight-word {
  color: #ffa500;
}

.blog-grid {
  position: relative;
  overflow: hidden;
}

.blog-grid-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.card-wrapper {
  position: relative;
  flex: 0 0 50%;
  padding: 0 20px;
  box-sizing: border-box;
}

.blog-card {
  overflow: visible;
  position: relative;
  width: 100%;
}

.image-area {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .image-area img {
  transform: scale(1.1);
}

.article-content {
  padding: 30px;
  position: relative;
  height: 219px;
}

.meta-info {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 30px;
  width: 100%;
  margin-top: -73px;
  margin-left: 40px;
}

.category-badge {
  background-color: #ffa500;
  color: #ffffff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  border-radius: 0;
  text-decoration: none;
}

.category-badge::after {
  display: none;
}

.date-info {
  background: #ffffff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  border-radius: 0;
  border-left: 1px solid #eee;
}

.date-info i {
  color: #ffa500;
  font-size: 16px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 150px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: #5e5b5b;
  font-size: 14px;
}

.author-name a {
  color: #5e5b5b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-name a:hover {
  color: #2a9df4;
}

.article-title {
  font-size: 22px;
  color: #222;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.article-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #ffa500;
}

.round-button-container1,
.round-button-container2 {
  top: 530px;
  right: 290px;
  display: flex;
  justify-content: center;
}

.round-button {
  width: 54px;
  height: 54px;
  background: #2a9df4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.round-button:hover {
  background: #ffa500;
}

.round-button i {
  transform: rotate(-45deg);
  font-size: 22px;
}
@media (max-width: 1024px) {
  .blog-section {
    padding: 50px 20px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .main-title {
    font-size: 32px;
  }

  .meta-info {
    margin-left: 20px;
  }

  .author-info {
    margin-left: 100px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 40px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .tagline-line .tagline {
    font-size: 18px;
  }

  .main-title {
    font-size: 28px;
  }

  .image-area {
    height: 300px;
  }

  .meta-info {
    margin-left: 30px;
  }

  .author-info {
    margin-left: 80px;
  }

  .article-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 30px 15px;
    overflow: hidden;
  }

  .blog-grid {
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 40px auto;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .tagline-line {
    gap: 10px;
  }

  .tagline-line img {
    max-width: 30px;
    height: auto;
  }

  .tagline-line .tagline {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .main-title {
    font-size: 24px;
    padding: 0 10px;
  }

  .card-wrapper {
    flex: 0 0 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
  }

  .blog-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .image-area {
    height: 250px;
  }

  .article-content {
    padding: 20px;
    height: auto;
  }

  .meta-info {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-top: -60px;
    gap: 10px;
  }

  .date-info {
    width: 70%;
    justify-content: center;
    border-left: none;
    order: 1;
  }

  .category-badge {
    width: 70%;
    justify-content: center;
    order: 2;
    white-space: nowrap;
  }

  .author-info {
    margin-left: 0;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .article-title {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .round-button-container1,
  .round-button-container2 {
    bottom: 20px;
    left: 50%;
    right: auto;
  }

  .svc-nav {
    display: flex;
    margin-top: 10px;
  }
}

@media (max-width: 375px) {
  .main-title {
    font-size: 22px;
  }

  .article-title {
    font-size: 16px;
  }

  .category-badge,
  .date-info {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.main-footer {
  position: relative;
  background: #222;
  background-image: url(../images/background-footer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 0;
  overflow: hidden;
}

.container {
  max-width: 1260px;
  margin: 30px auto;
  padding: 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
}

.footer-col {
  color: white;
  white-space: nowrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.logo-icon {
  width: 230px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.logo-highlight {
  color: #ffb400;
}

.footer-description {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
  color: #ccc;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 30px;
  margin-top: -20px;
}

.social-link {
  width: 17px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92918f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.footer-pages .footer-suport .pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 15px;
  position: relative;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.footer-menu a:hover {
  color: #ffb400;
}

.footer-services .footer-menu li::before {
  color: #fff;
}

.copyright-section {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 0;
  border-top: 1px solid #fff;
  padding-top: 25px;
}

.copyright-box {
  width: 100%;
  max-width: 1200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  position: relative;
}

.copyright-box a {
  text-decoration: none;
  color: #fff;
}

/* <<<<<<< ours */
/* Inline status messages for contact/newsletter forms */
.form-status {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  min-height: 18px;
  padding: 0;
  transition: all 0.3s ease;
}

.form-status--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 12px 15px;
  font-weight: 500;
}

.form-status--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 12px 15px;
  font-weight: 500;
}

/* =======
>>>>>>> theirs */

.sykors-icon {
  width: 20px;
  height: auto;
  margin: 0 6px;
  vertical-align: middle;
  display: inline-block;
}

.footer-cols-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-left: 370px;
}

.main-title-aboutus {
  font-size: 35px;
  color: #222;
  line-height: 1.3;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.clients-section {
  margin-bottom: 60px;
}

.clients-container {
  width: 1290px;
  margin: 0 auto;
  text-align: center;
}

.clients-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

.clients-viewport {
  width: 100%;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.clients-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-bottom: 50px;
}

.clients-title {
  font-size: 24px;
  font-weight: 700;
  color: #09052f;
  white-space: nowrap;
}

.clients-track {
  display: flex;
  gap: 60px;
  height: 100%;
  align-items: center;
  width: fit-content;
  transition: transform 0.5s ease-in-out;
}

.clients-track img {
  height: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: 0.25s ease;
}

.clients-track img:hover {
  opacity: 1;
}

.clients-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.clients-prev,
.clients-next {
  background: #ffa500;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s ease;
}

.clients-next:hover,
.clients-prev:hover {
  background: #2a9df4;
}

@media (max-width: 1024px) {
  .footer-cols-wrapper,
  .footer-services {
    margin-left: 0;
  }

  .clients-container {
    width: 90%;
  }

  .clients-logos img {
    width: 90px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-description {
    max-width: 100%;
  }

  .pages-grid {
    gap: 10px 20px;
  }

  .clients-container {
    width: 92%;
  }

  .clients-track {
    gap: 30px;
  }

  .clients-track img {
    width: 110px;
  }

  .clients-logos {
    gap: 5px;
    justify-content: center;
  }

  .clients-logos img {
    width: 85px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .logo-icon {
    width: 180px;
  }

  .footer-description {
    font-size: 14px;
    max-width: 320px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-title {
    font-size: 20px;
  }

  .pages-grid {
    grid-template-columns: 1fr;
  }

  .footer-menu li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .copyright-box {
    font-size: 13px;
    height: 45px;
  }

  .copyright-box p {
    text-align: center;
    line-height: 1.4;
  }

  .copyright-box p img {
    display: inline-block;
    margin-top: 5px;
  }

  .copyright-box p span {
    display: block;
    margin-top: 4px;
  }

  .clients-container {
    width: 92%;
    text-align: center;
  }

  .clients-title-wrapper {
    gap: 15px;
  }

  .clients-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    gap: 70px;
    padding-bottom: 10px;
  }

  .clients-logos::-webkit-scrollbar {
    height: 6px;
  }

  .clients-logos::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .clients-track {
    gap: 5px;
  }

  .clients-track img {
    width: 130px;
    height: 100px;
    flex-shrink: 0;
  }
}

@media (max-width: 375px) {
  .footer-content {
    gap: 30px;
  }

  .logo-icon {
    width: 160px;
  }

  .footer-description {
    max-width: 290px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .footer-title {
    font-size: 19px;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .copyright-box {
    font-size: 12px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .footer-cols-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }
}

.svc-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.svc-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #ffa500;
  cursor: pointer;
  transition: 0.3s;
}

.svc-dot:hover {
  background: #ffb400;
}

.svc-dot.active {
  background: #2a9df4;
  border-color: #2a9df4;
}

.svc-arrows-mobile {
  display: none;
}

.chat-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2a9df4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.chat-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}

.chat-options a {
  text-decoration: none;
}

.chat-float.active .chat-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.chat-btn.whatsapp {
  background: #25d366;
}
.chat-btn.telegram {
  background: #229ed9;
}
.chat-btn.viber {
  background: #7360f2;
}
.chat-btn.phone {
  background: #00c853;
}

@media (max-width: 768px) {
  .chat-float {
    right: 15px;
    bottom: 15px;
  }
}

.video-section {
  padding: 50px 20px;
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #dc3545;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.video-button:hover {
  background-color: #c82333;
}

.video-button:active {
  transform: translateY(0);
}

.video-button svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 15px;
  }

  .video-wrapper {
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .video-button {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

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

  .video-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}


.select-options {
  display: none;
}

.custom-select.open .select-options {
  display: block;
}

/* Image Preview Styles */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.image-preview-item:hover {
    border-color: #2a9df4;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    padding: 0;
}

.image-preview-remove:hover {
    background: rgba(255, 0, 0, 1);
}

@media (max-width: 480px) {
    .image-preview-item {
        width: 70px;
        height: 70px;
    }

    .image-preview-remove {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}
