/*
Theme Name: Xiomi
Author: Pixel-plus
Author URI: https://themeforest.net/user/Pixel-plus
Description: Xiomi - Portfolio HTML Template
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #28E98C;
  --header: #1C1D20;
  --text: #666666;
  --border: #273536;
  --bg: #F9F9F9;
  --bg-2: #1C1D20;
  --border: 1.5px solid rgba(102, 102, 102, 0.24);
  --border-2: 1.5px solid #28E98C;
  --border-3: 1.5px solid rgba(102, 102, 102, 0.16);
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  background: var(--theme);
  color: var(--header);
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 100px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
  line-height: 1;
  overflow: hidden;
}
.theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--header);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}
.theme-btn i, .theme-btn img {
  margin-left: 10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.theme-btn:hover { color: var(--white); }
.theme-btn:hover::before { width: 100%; }
.theme-btn:hover i { transform: rotate(0); }
@media (max-width: 767px) { .theme-btn { padding: 20px 32px; } }
@media (max-width: 575px) { .theme-btn { padding: 18px 30px; font-size: 14px; } }
.theme-btn.border-btn { border: 1px solid var(--border); background: transparent; color: var(--white); }
.theme-btn.border-btn::before, .theme-btn.border-btn::after { background: var(--theme); }
.theme-btn.radius-btn { border-radius: 60px; }

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  letter-spacing: 0.5px;
}
ul { padding: 0; margin: 0; list-style: none; }
button { border: none; background-color: transparent; padding: 0; }
input:focus { color: var(--text); outline: none; }
input { color: var(--text); }
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  margin: 0px; padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
h1 { font-size: 100px; font-weight: 800; line-height: 108%; }
@media (max-width: 1600px) { h1 { font-size: 90px; } }
@media (max-width: 991px) { h1 { font-size: 80px; } }
@media (max-width: 767px) { h1 { font-size: 70px; } }
@media (max-width: 575px) { h1 { font-size: 60px; } }
h2 { font-size: 48px; line-height: 116%; font-weight: 800; }
h3 { font-size: 32px; font-weight: 800; line-height: 132%; }
h4 { font-size: 24px; font-weight: 800; }
h5 { font-size: 20px; font-weight: 700; line-height: 140%; }
h6 { font-size: 18px; font-weight: 600; line-height: 145%; }
a { text-decoration: none; outline: none !important; cursor: pointer; color: var(--header); transition: all 0.4s ease-in-out; }
p { margin: 0px; }
.fix { overflow: hidden; }
.bg-cover { background-repeat: no-repeat; background-size: cover; position: relative; background-position: center; }

/* --- header-main / menu --- */
.header-main { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.header-main .main-menu ul { margin-bottom: 0; }
.header-main .main-menu ul li { position: relative; list-style: none; display: inline-block; margin-inline-end: 40px; }
.header-main .main-menu ul li:last-child { margin-inline-end: 0; }
.header-main .main-menu ul li a { display: inline-block; font-size: 16px; font-weight: 500; color: var(--header); padding: 20px 0; text-align: left; position: relative; text-transform: capitalize; transition: all 0.4s ease-in-out; }
.header-main .main-menu ul li a:hover { color: var(--theme) !important; }
.header-main .main-menu ul li .submenu { position: absolute; top: 115%; inset-inline-start: 0; min-width: 240px; background: var(--white); padding: 20px 0; z-index: 99999; visibility: hidden; opacity: 0; transform-origin: top center; color: var(--header); transform: translateY(-10px); transition: all 0.4s ease-in-out; border-top: 6px solid var(--theme); box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
.header-main .main-menu ul li .submenu li { display: block; width: 100%; margin: 0; }
.header-main .main-menu ul li .submenu li a { position: relative; z-index: 11; font-size: 16px; font-weight: 500; color: var(--header); line-height: 38px; padding: 0px 0px 0px 32px; width: 100%; }
.header-main .main-menu ul li .submenu li a:hover { color: var(--theme) !important; }
.header-main .main-menu ul li:hover > a { color: var(--theme); }
.header-main .main-menu ul li:hover > .submenu { visibility: visible; opacity: 1; transform: translateY(0px); }
.header-main .header-right { gap: 30px; }
.header-main .header-right .theme-btn { padding: 12px 30px; background: var(--header); color: var(--white); }
.header-main .header-right .theme-btn::before { background: var(--theme); }
.header-main .sidebar__toggle { cursor: pointer; font-size: 20px; }
.header-1 { position: absolute; top: 0; left: 0; z-index: 9999; width: 100%; border-bottom: var(--border-3); }
.header-1 .container-fluid { padding: 0 60px; }
@media (max-width: 1199px) { .header-1 .container-fluid { padding: 0 30px; } }

.sticky { position: fixed !important; top: 0 !important; left: 0; width: 100%; z-index: 100; transition: all 0.9s; background-color: var(--white); box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
.sticky.header-1 .header-main .main-menu ul li a { color: var(--header); }

/* --- hero-1 --- */
.hero-1 { padding-top: 120px; position: relative; }
.hero-1 .random-shape { position: absolute; top: 24%; left: 18%; }
@media (max-width: 1199px) { .hero-1 .random-shape { display: none; } }
.hero-1 .arrow-shape { position: absolute; top: 28%; left: 45.5%; }
@media (max-width: 1199px) { .hero-1 .arrow-shape { display: none; } }
.hero-1 .star-shape { position: absolute; top: 15%; right: 22%; }
@media (max-width: 1199px) { .hero-1 .star-shape { display: none; } }
.hero-1 .hero-info { display: flex; align-items: center; gap: 20px; position: absolute; transform: rotate(-90deg) translateY(-50%); top: 50%; left: -45px; }
@media (max-width: 1199px) { .hero-1 .hero-info { display: none; } }
.hero-1 .hero-info a { font-size: 14px; font-weight: 500; color: var(--text); position: relative; transition: all 0.4s ease-in-out; }
.hero-1 .hero-info a.active { color: var(--header); }
.hero-1 .hero-images { position: relative; z-index: 9; }
@media (max-width: 1199px) { .hero-1 .hero-images img { width: 100%; height: 100%; } }
.hero-1 .hero-images .hero-shape { position: absolute; left: -10px; bottom: 48px; z-index: -1; }
@media (max-width: 1199px) { .hero-1 .hero-images .hero-shape { display: none; } }
.hero-1 .hero-content span { color: var(--header); font-size: 18px; font-weight: 600; display:inline-flex; align-items:center; }
.hero-1 .hero-content span img { margin-right: 10px; }
.hero-1 .hero-content h1 { font-size: 75px; margin-top: 20px; margin-bottom: 25px; }
@media (max-width: 1199px) { .hero-1 .hero-content h1 { font-size: 55px; } }
@media (max-width: 767px) { .hero-1 .hero-content h1 { font-size: 50px; } }
@media (max-width: 575px) { .hero-1 .hero-content h1 { font-size: 35px; } }
.hero-1 .hero-content p { letter-spacing: 0; }
.hero-1 .hero-content .hero-btn-wrapper { margin-top: 40px; display: flex; align-items: center; gap: 24px; }
@media (max-width: 1199px) { .hero-1 .hero-content .hero-btn-wrapper { flex-wrap: wrap; gap: 20px; } }
.hero-1 .hero-content .hero-btn-wrapper .video-btn { display: flex; align-items: center; gap: 9px; }
.hero-1 .hero-content .hero-btn-wrapper .video-btn .icon { width: 56px; height: 56px; border-radius: 100px; border: 1px solid rgba(102, 102, 102, 0.16); display: flex; align-items: center; justify-content: center; }
.hero-1 .hero-content .hero-btn-wrapper .video-btn .icon i { color: var(--theme); }
.hero-1 .hero-content .hero-btn-wrapper .video-btn .text { font-size: 14px; font-family: Manrope; font-weight: 600; line-height: 24px; }


/* --- marquee --- */
.marquee-container { overflow: hidden; background-color: #1e1e1e; padding: 30px 0; }
.marquee-wrapper { display: flex; width: fit-content; animation: scroll-left 25s linear infinite; }
.marquee-content { display: flex; }
.marquee-text { display: flex; align-items: center; gap: 16px; margin: 0 30px; white-space: nowrap; }
.marquee-text h3 { color: var(--white); }
@keyframes scroll-left { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }

/* --- section-title / layout utils --- */
.section-title { position: relative; z-index: 99; margin-bottom: 30px; }
.section-title span { font-size: 18px; font-family: "Manrope", sans-serif; font-weight: 600; color: var(--header); line-height: 1; display: inline-block; margin-bottom: 10px; }
.section-title span img { margin-right: 10px; }
.section-title h2 span { color: var(--theme) !important; font-size: inherit; font-weight: inherit; font-family: inherit; line-height: inherit; margin-bottom: 0; }
.section-bg-2 { background-color: var(--bg-2); }
.section-padding { padding: 120px 0; }
@media (max-width: 991px) { .section-padding { padding: 80px 0; } }
.text-center { text-align: center; }

/* --- about-wrapper-1 --- */
.about-wrapper-1 { position: relative; }
.about-wrapper-1 .random-shape { position: absolute; top: 12%; right: 3%; }
@media (max-width: 1199px) { .about-wrapper-1 .random-shape { display: none; } }
.about-wrapper-1 .star-shape { position: absolute; top: 25%; left: 44%; }
@media (max-width: 1199px) { .about-wrapper-1 .star-shape { display: none; } }
.about-wrapper-1 .about-images { position: relative; z-index: 9; }
.about-wrapper-1 .about-images img { width: 100%; height: 100%; }
.about-wrapper-1 .about-images .bg-shape { position: absolute; top: 107px; left: 48px; z-index: -1; }
@media (max-width: 575px) { .about-wrapper-1 .about-images .bg-shape { display: none; } }
.about-wrapper-1 .about-images .shape-left { position: absolute; top: 72%; left: -60px; }
@media (max-width: 1199px) { .about-wrapper-1 .about-images .shape-left img { max-width: 200px; } }
@media (max-width: 575px) { .about-wrapper-1 .about-images .shape-left { display: none; } }
.about-wrapper-1 .about-images .shape-right { position: absolute; top: 24%; right: -23%; }
@media (max-width: 1399px) { .about-wrapper-1 .about-images .shape-right { top: 30%; right: -9%; } .about-wrapper-1 .about-images .shape-right img { max-width: 200px; } }
@media (max-width: 575px) { .about-wrapper-1 .about-images .shape-right { display: none; } }
.about-wrapper-1 .about-content .section-title h2 { margin-bottom: 13px; }
.about-wrapper-1 .about-content .client-reviews { margin-bottom: 45px; display: flex; align-items: center; gap: 90px; }
@media (max-width: 575px) { .about-wrapper-1 .about-content .client-reviews { gap: 10px; } }
.about-wrapper-1 .about-content .client-reviews .cr-item { display: flex; align-items: center; gap: 10px; }
.about-wrapper-1 .about-content .client-reviews .cr-item h6 { font-size: 18px; font-weight: 600; }
.about-wrapper-1 .about-content .about-button { display: flex; align-items: center; gap: 24px; }
.about-wrapper-1 .about-content .about-button .phone { display: flex; align-items: center; gap: 16px; }
.about-wrapper-1 .about-content .about-button .phone .icon { width: 56px; height: 56px; border-radius: 100px; border: 1px solid rgba(102, 102, 102, 0.16); display: flex; align-items: center; justify-content: center; }
.col-lg-6.d-flex { display:flex; }
.justify-content-center { justify-content:center; }
.pt-0 { padding-top:0; } .pb-0 { padding-bottom:0; }
.mt-4 { margin-top: 1.5rem; }

/* --- animations: spinner / float / preloader --- */
@keyframes spinner { to { transform: rotateZ(360deg); } }
@keyframes letters-loading { 0%,75%,100% { opacity:0; transform: rotateY(-90deg);} 25%,50% { opacity:1; transform: rotateY(0deg);} }
.float-bob-y { animation-name: float-bob-y; animation-duration: 3s; animation-iteration-count: infinite; animation-timing-function: linear; }
@keyframes float-bob-y { 0% { transform: translateY(-30px);} 50% { transform: translateY(-10px);} 100% { transform: translateY(-30px);} }
.float-bob-x { animation-name: float-bob-x; animation-duration: 3s; animation-iteration-count: infinite; animation-timing-function: linear; }
@keyframes float-bob-x { 0% { transform: translateX(30px);} 50% { transform: translateX(10px);} 100% { transform: translateX(30px);} }

.preloader { align-items:center; cursor:default; display:flex; height:100%; justify-content:center; position:fixed; left:0; top:0; width:100%; z-index:9999999; background:#fff; }
.preloader .animation-preloader { z-index:1000; text-align:center; }
.preloader .animation-preloader .spinner { animation: spinner 1s infinite linear; border-radius:50%; border:3px solid rgba(0,0,0,0.2); border-top-color: var(--theme); height:9em; margin:0 auto 3.5em auto; width:9em; }
@media (max-width:767px) { .preloader .animation-preloader .spinner { width:7.5em; height:7.5em; margin:0 auto 1.5em auto; } }
.preloader .animation-preloader .txt-loading { font: bold 5em "Manrope", sans-serif; text-align:center; user-select:none; }
@media (max-width:767px) { .preloader .animation-preloader .txt-loading { font-size:2.5em; } }
.preloader .animation-preloader .txt-loading .letters-loading { color: var(--theme); position:relative; background: var(--theme); -webkit-text-fill-color: transparent; background-clip: text; -webkit-background-clip: text; }
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before { animation-delay:0.2s; }
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before { animation-delay:0.4s; }
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before { animation-delay:0.6s; }
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before { animation-delay:0.8s; }
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before { animation-delay:1s; }
.preloader .animation-preloader .txt-loading .letters-loading::before { animation: letters-loading 4s infinite; color: var(--header); content: attr(data-text-preloader); left:0; opacity:0; font-family:"Manrope", sans-serif; position:absolute; top:-3px; transform: rotateY(-90deg); -webkit-text-fill-color: initial; background: none; }
.preloader p { font-size:15px; font-weight:600; text-transform:uppercase; letter-spacing:8px; background: var(--theme); -webkit-text-fill-color: transparent; background-clip:text; -webkit-background-clip:text; margin-top: 1em; }
.preloader.loaded { opacity:0; visibility:hidden; transition: opacity .4s ease-out, visibility .4s ease-out; }


/* --- self-hosted grid system (do not rely on external CDN which can be blocked) --- */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; box-sizing: border-box; }
.container-fluid { width: 100%; padding-left: 15px; padding-right: 15px; box-sizing: border-box; }
.row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
.row.g-4 { margin-left: -12px; margin-right: -12px; }
.row.g-4 > [class*="col-"] { padding-left: 12px; padding-right: 12px; }
[class*="col-"] { position: relative; width: 100%; padding-left: 15px; padding-right: 15px; box-sizing: border-box; }
.col-lg-6 { flex: 0 0 auto; width: 100%; }
.col-lg-5 { flex: 0 0 auto; width: 100%; }
.col-lg-7 { flex: 0 0 auto; width: 100%; }
@media (min-width: 992px) {
  .col-lg-6 { width: 50%; }
  .col-lg-5 { width: 41.6666%; }
  .col-lg-7 { width: 58.3333%; }
}
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.d-flex { display: flex; }
.order-1 { order: 1; } .order-2 { order: 2; }
@media (min-width: 992px) { .order-lg-1 { order: 1; } .order-lg-2 { order: 2; } }
img { max-width: 100%; height: auto; }

/* --- marquee text: guarantee single-line --- */
.marquee-text { white-space: nowrap !important; flex: 0 0 auto; }
.marquee-text h3 { white-space: nowrap; font-size: 32px; }
