:root {
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --bg-main: #f3f7f8;
  --bg-soft: #e6eff2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text-main: #13232d;
  --text-muted: #4c646f;
  --brand: #0ea5a0;
  --brand-deep: #0f766e;
  --accent: #f97316;
  --line: rgba(19, 35, 45, 0.12);
  --shadow-lg: 0 24px 60px rgba(17, 42, 53, 0.16);
  --shadow-md: 0 14px 32px rgba(17, 42, 53, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(900px 420px at 8% -6%, rgba(14, 165, 160, 0.17), transparent 70%),
    radial-gradient(900px 420px at 92% -8%, rgba(249, 115, 22, 0.16), transparent 70%),
    linear-gradient(180deg, #f5f9fa 0%, #edf4f6 48%, #f4f8fa 100%);
  margin: 0;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand-deep);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

/* Back to top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  background: transparent;
  transition: all 0.35s ease;
  z-index: 997;
  padding: 18px 0;
}

#header .container {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(11, 31, 39, 0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#header.header-scrolled {
  padding: 10px 0;
}

#header.header-scrolled .container {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(14, 165, 160, 0.2);
  box-shadow: 0 16px 34px rgba(20, 46, 57, 0.14);
}

#header .logo {
  margin: 0;
  line-height: 1;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

#header .logo a {
  color: #f8fdff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

#header.header-scrolled .logo a {
  color: #12323f !important;
  text-shadow: none;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }

  #header .container {
    border-radius: 18px;
    padding: 10px 14px;
  }
}

/* Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 6px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: #2e4b57;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(14, 165, 160, 0.92), rgba(15, 118, 110, 0.92));
}

#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar a:hover {
  color: #ffffff;
}

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}

/* Fallback icon for environments where bootstrap icon font fails to render. */
.mobile-nav-toggle::before {
  content: '\2630';
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.mobile-nav-toggle.bi-x::before {
  content: '\2715';
  font-size: 22px;
}

#header.header-scrolled .mobile-nav-toggle {
  color: #1e3945;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .navbar {
    position: relative;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    z-index: 1001;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(8, 24, 33, 0.94);
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 22px;
  right: 16px;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px;
  border-radius: 18px;
  background: #f9fcfd;
  overflow-y: auto;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  color: #213e4b;
  padding: 12px 14px;
  font-size: 15px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ffffff;
}

/* Hero */
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.02);
}

.hero .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 17, 25, 0.85) 0%, rgba(5, 17, 25, 0.56) 48%, rgba(5, 17, 25, 0.7) 100%),
    radial-gradient(560px 240px at 22% 24%, rgba(14, 165, 160, 0.45), transparent 75%);
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero .info .text-center {
  text-align: left !important;
  max-width: 880px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
  animation: reveal-hero 1s ease both;
}

.hero .info h2 {
  color: #f5feff;
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  position: relative;
}

.hero .info h2 span {
  color: #6ef6df;
}

.hero .info h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 126px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6ef6df, #f8f28e);
}

.hero .info p {
  color: rgba(240, 252, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  margin: 0;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.2s;
  width: 8%;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 12px;
  }

  .hero .info .text-center {
    padding: 24px;
  }
}

/* Sections */
section {
  padding: 88px 0;
  overflow: hidden;
}

.section-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.66)),
    radial-gradient(420px 160px at 85% 0%, rgba(14, 165, 160, 0.12), transparent 70%);
}

.section-title {
  text-align: center;
  padding: 0 0 42px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  text-transform: none;
  color: #12323f;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.09em;
  color: rgba(18, 50, 63, 0.06);
  pointer-events: none;
}

.section-title p {
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 2;
  font-size: 1.03rem;
}

/* Featured services */
.featured-services {
  padding-top: 24px;
}

.featured-services .icon-box {
  padding: 30px;
  color: var(--text-main);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-services .icon i {
  color: var(--brand-deep);
  font-size: 36px;
}

.featured-services .title {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.featured-services .title a {
  color: #12323f;
}

.featured-services .description {
  line-height: 1.8;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.featured-services .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 38px rgba(18, 50, 63, 0.18);
}

.featured-services .icon-box:hover .title a {
  color: var(--brand-deep);
}

/* About */
.about .ratio {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.65);
}

.about video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .content h3 {
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  color: #12323f;
  line-height: 1.35;
}

.about .content p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.82;
}

/* Domain */
.domain .image-box {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.domain .image-box .domain-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.domain .image-box h4 {
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.domain .image-box h4 a {
  color: #12323f;
}

.domain .image-box p,
.domain .image-box li {
  line-height: 1.75;
  font-size: 0.97rem;
  color: var(--text-muted);
}

.domain .image-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.domain .image-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 38px rgba(18, 50, 63, 0.2);
}

.domain .image-box:hover h4 a {
  color: var(--brand-deep);
}

/* Feature cards */
.features .card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(9px);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 34px rgba(18, 50, 63, 0.18);
}

.features .card .card-body {
  padding: 28px 24px;
}

.features .card-title {
  font-weight: 800;
  color: #12323f;
  margin-bottom: 8px;
}

.features .card-text {
  color: var(--text-muted);
  line-height: 1.75;
}

/* Resources */
.resources #resources-flters {
  padding: 8px;
  margin: 0 auto 34px;
  list-style: none;
  text-align: center;
  border-radius: 999px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 50, 63, 0.1);
  box-shadow: var(--shadow-md);
}

.resources #resources-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #35515e;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.resources #resources-flters li:hover,
.resources #resources-flters li.filter-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
}

.resources .resources-item {
  margin-bottom: 26px;
}

.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 62%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.35s ease;
}

.hover img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hover-5::after {
  content: '';
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: all 0.3s;
  z-index: 999;
}

.hover-5 .hover-overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.1) 100%),
    rgba(0, 0, 0, 0.2);
}

.hover-5-title {
  position: absolute;
  bottom: 1rem !important;
  left: 0;
  right: 0;
  transition: all 0.3s;
  padding: 1.1rem 1.25rem;
  z-index: 99;
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.hover-5-content span {
  position: absolute;
  bottom: 0.95rem;
  left: 50%;
  transform: translate(-50%, 8px);
  transition: all 0.3s;
  opacity: 0;
  color: #ffffff;
  z-index: 99;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(14, 165, 160, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  text-shadow: none;
}

.hover-5-content span a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.hover-5-content span a:hover {
  color: #ffffff;
}

.hover-5:hover img {
  transform: scale(1.06);
}

.hover-5:hover .hover-overlay {
  background:
    linear-gradient(to top, rgba(2, 18, 24, 0.9) 0%, rgba(2, 18, 24, 0.35) 58%, rgba(2, 18, 24, 0.2) 100%),
    rgba(2, 18, 24, 0.35);
}

.hover-5:hover .hover-5-title {
  bottom: 0;
}

.hover-5:hover .hover-5-content span {
  opacity: 1;
  transform: translate(-50%, 0);
  background: rgba(15, 118, 110, 0.96);
}

.hover-5:hover::after {
  bottom: 0;
}

/* Team */
.team .member {
  text-align: center;
  margin-bottom: 22px;
  padding: 24px 18px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 36px rgba(17, 44, 57, 0.19);
}

.team .member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 18px;
}

.team .member h4 {
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 1.1rem;
  color: #12323f;
}

.team .member span {
  display: block;
  font-size: 0.86rem;
  color: #42606c;
  font-style: normal;
  word-break: break-word;
}

/* Contact */
.contact .info {
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
  padding: 38px 24px;
}

.contact .info i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-size: 32px;
  margin-bottom: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.35);
}

.contact .info h3,
.contact .info h4 {
  padding: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #12323f;
}

.contact .info p,
.contact .info address {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #3f5c68;
  line-height: 1.7;
}

.contact .info a {
  color: inherit;
  text-decoration: none;
}

.contact .info a:hover {
  text-decoration: underline;
}

/* Footer */
#footer {
  background:
    linear-gradient(155deg, #072630 0%, #0d3642 45%, #1f4b55 100%);
  color: rgba(230, 247, 252, 0.92);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 246, 223, 0.25), transparent 68%);
}

#footer .footer-top {
  padding: 70px 0 34px;
  background: transparent;
  position: relative;
  z-index: 1;
}

#footer .footer-top .row {
  row-gap: 18px;
}

#footer .footer-top .row > [class*='col-'] {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 2rem;
  margin: 0 0 14px;
  line-height: 1;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  border: 0;
  padding: 0;
  color: #ffffff;
}

#footer .footer-top .footer-info h3 + p {
  margin-bottom: 0;
}

#footer .footer-top .footer-info p,
#footer .footer-top .footer-contact p,
#footer .footer-top li {
  color: rgba(230, 247, 252, 0.85);
  line-height: 1.75;
  font-size: 0.95rem;
}

#footer .footer-top .footer-contact p {
  margin-bottom: 14px;
}

#footer .footer-top .footer-contact strong {
  color: #ffffff;
  font-weight: 700;
}

#footer .footer-top .footer-contact a {
  color: inherit;
  text-decoration: none;
}

#footer .footer-top .footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#footer .footer-top .footer-links ul,
#footer .footer-top .footer-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-top .footer-links li,
#footer .footer-top .footer-feature-list li {
  margin-bottom: 8px;
}

#footer .footer-top .footer-links a {
  color: rgba(230, 247, 252, 0.9);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, transform 0.25s ease;
}

#footer .footer-top .footer-links a::before {
  content: '\2192';
  color: #7ef9e5;
  font-size: 0.85rem;
}

#footer .footer-top .footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

#footer .footer-top .footer-feature-list {
  margin-top: 2px;
}

#footer .footer-top .footer-feature-list li {
  position: relative;
  padding-left: 14px;
}

#footer .footer-top .footer-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ef9e5;
  opacity: 0.9;
}

#footer .footer-top .social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #dffbff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  transition: all 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffffff;
  color: #0d4650;
  transform: translateY(-2px);
}

#footer .footer-top h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
}

#footer .footer-top h4::before {
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}

#footer .footer-top h4::after {
  background: linear-gradient(90deg, #6ef6df, #f8f28e);
  width: 76px;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 2;
  position: relative;
  padding: 26px 0;
  text-align: center;
}

#footer .copyright {
  color: rgba(222, 245, 252, 0.9);
}

@media (max-width: 992px) {
  #footer .footer-top .row > [class*='col-'] {
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  #footer .footer-top .row > [class*='col-'] {
    padding: 4px 8px;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 1.75rem;
  }
}

/* Motion */
@keyframes reveal-hero {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive polish */
@media (max-width: 992px) {
  section {
    padding: 74px 0;
  }

  .contact .info .address,
  .contact .info .phone,
  .contact .info .email {
    border: none !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  #header .container {
    padding: 10px 12px;
    border-radius: 14px;
  }

  #header .logo {
    font-size: 24px;
  }

  .hero .carousel {
    min-height: 92vh;
  }

  .section-title {
    padding-bottom: 30px;
  }

  .section-title span {
    top: -4px;
    letter-spacing: 0.04em;
  }

  .hero .info .text-center {
    padding: 18px;
    border-radius: 18px;
  }

  .hero .info h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.15;
  }

  .hero .info p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 14%;
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .resources #resources-flters {
    border-radius: 18px;
    padding: 10px;
    justify-content: center;
  }

  .resources #resources-flters li {
    padding: 10px 12px;
    font-size: 11px;
  }

  .hover {
    padding-bottom: 68%;
  }

  .hover-5-title {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .hover-5-content span {
    bottom: 0.75rem;
    padding: 0.28rem 0.72rem;
  }

  .hover-5-content span a {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
  }

  .features .card .card-body,
  .featured-services .icon-box,
  .domain .image-box,
  .team .member,
  .contact .info {
    padding: 20px;
  }

  .contact .info i {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  #footer .footer-top {
    padding-top: 52px;
  }
}

@media (hover: none) {
  .hover-5-content span {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 576px) {
  section {
    padding: 64px 0;
  }

  .container,
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .section-title p {
    font-size: 0.94rem;
  }

  .about .content h3 {
    font-size: 1.25rem;
  }

  .about .content p,
  .featured-services .description,
  .domain .image-box p,
  .features .card-text {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .domain .image-box .domain-img {
    height: 190px;
  }

  .hover {
    padding-bottom: 72%;
  }

  .resources .resources-item {
    margin-bottom: 18px;
  }

  .team .member img {
    border-radius: 12px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 12px;
    bottom: 12px;
  }
}
