:root {
  --bg-color: #ffffff;
  --theme-color: #ffffff;
  --bg-muted: #f8f9fa;
  --bg-subtle: #f1f5f9;
  --text-primary: #09090b;
  --text-secondary: #71717a;
  --text-muted: #6b7280;
  --border-color: #e4e4e7;
  --border-muted: #f1f5f9;
  --accent-color: #18181b;
}

/* --------------- Clean Navbar --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 20px;
  padding: 16px 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
  transition: all 0.3s ease; }
  .navbar.nav-scroll {
    position: fixed;
    top: 0;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .navbar .logo {
    transition: all 0.3s ease; }
    .navbar .logo:hover {
      opacity: 0.8; }
  .navbar .navbar-nav {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px;
    margin-left: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
    .navbar .navbar-nav .nav-link {
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
      transition: all 0.3s ease;
      text-decoration: none;
      border: none;
      background: transparent; }
      .navbar .navbar-nav .nav-link:hover {
        background: var(--bg-muted);
        color: var(--accent-color); }
      .navbar .navbar-nav .nav-link.active {
        background: var(--accent-color);
        color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .navbar .topnav {
    display: flex;
    align-items: center;
    gap: 12px; }
  .navbar .topnav .butn {
      padding: 10px 24px;
      background: var(--accent-color);
      color: #fff;
      border-radius: 50px;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      border: none;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
      .navbar .topnav .butn:hover {
        background: #000;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
    .navbar .topnav .menu-icon {
      width: 40px;
      height: 40px;
      background: var(--bg-color);
      border: 1px solid var(--border-color);
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
      .navbar .topnav .menu-icon:hover {
        background: var(--accent-color);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
      .navbar .topnav .menu-icon .icon {
        font-size: 16px; }

/* --------------- header --------------- */
.header-sa {
  min-height: 100vh;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden !important;
  z-index: 3;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%); }
  .header-sa .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1; }
    .header-sa .background:before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 120%;
      background: linear-gradient(45deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
      border-radius: 50%;
      animation: float 20s ease-in-out infinite;
      pointer-events: none; }
    .header-sa .background:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.15) 1px, transparent 0);
      background-size: 20px 20px;
      opacity: 0.3;
      z-index: -1;
      pointer-events: none; }
  .header-sa .caption {
    animation: fadeInUp 1s ease-out; }
  .header-sa .caption h1 {
    font-size: 96px;
    line-height: 96px;
      letter-spacing: -4px;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 20px; }
  .header-sa .caption .text {
      margin-top: 30px;
      animation: fadeInUp 1s ease-out 0.2s both; }
      .header-sa .caption .text p {
        color: var(--text-secondary);
        font-size: 18px;
        line-height: 28px; }
  .header-sa .imgs {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both; }
    .header-sa .imgs .cube img {
      position: relative;
      width: 120%;
      right: -100px;
      bottom: -100px;
      filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
      animation: rotate 20s linear infinite; }
    .header-sa .imgs .circle {
      position: absolute;
      top: 50%;
      left: 0;
      z-index: 2;
      animation: pulse 3s ease-in-out infinite; }
      .header-sa .imgs .circle:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        z-index: -1;
        border: 1px solid var(--border-color); }

/* Modern Button Styles */
.butn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 8px;
  white-space: nowrap; }
  .butn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: #fff;
    text-decoration: none; }
  .butn.butn-bord {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color); }
    .butn.butn-bord:hover {
      background: var(--accent-color);
      color: #fff;
      border-color: var(--accent-color);
      text-decoration: none; }
  .butn .icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease; }
  .butn:hover .icon {
    transform: translateX(2px); }

/* Utility Classes */
.gap-3 {
  gap: 1rem; }

.d-flex {
  display: flex; }

.align-items-center {
  align-items: center; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* --------------- Intro --------------- */
.intro-sa {
  background: var(--bg-muted); }

/* --------------- Services --------------- */
.services-sa {
  background: var(--bg-muted); }

.services-sa .item {
  background: var(--bg-color);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
  .services-sa .item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: var(--border-muted); }
  .services-sa .item .cont {
    padding: 8px; }
    .services-sa .item .cont .icon {
      width: 48px;
      height: 48px;
      line-height: 46px;
      text-align: center;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      background: var(--bg-muted); }
      .services-sa .item .cont .icon img {
        width: 20px; }
      .services-sa .item .cont .icon.invert img {
        -webkit-filter: invert(0);
        filter: invert(0); }
    .services-sa .item .cont .text {
      margin-top: 80px;
      margin-bottom: 16px; }
      .services-sa .item .cont .text p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: var(--text-muted); }

.marq-sa {
  overflow: hidden !important;
  background: var(--bg-color); }
  .marq-sa .item {
    padding: 0 80px !important;
    position: relative; }
    .marq-sa .item:after {
      content: '';
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .marq-sa .item h2 {
      white-space: nowrap;
      font-size: 96px;
      line-height: 120px;
      letter-spacing: -4px;
      background: -webkit-gradient(linear, left top, right top, from(var(--text-primary)), to(var(--text-secondary)));
      background: -webkit-linear-gradient(left, var(--text-primary), var(--text-secondary));
      background: -o-linear-gradient(left, var(--text-primary), var(--text-secondary));
      background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }

/* --------------- Works --------------- */
.work-card {
  background: var(--bg-color); }

.work-card .card-item {
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  will-change: transform;
  transform-origin: center center; }
  .work-card .card-item .cont {
    height: 100%;
    padding: 40px 80px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .work-card .card-item .cont .tag {
      font-size: 12px;
      line-height: 1;
      padding: 6px 12px;
      margin-right: 6px;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      background: var(--bg-muted);
      color: var(--text-muted);
      font-weight: 500;
      text-decoration: none;
      display: inline-block; }
    .work-card .card-item .cont p {
      font-size: 16px;
      line-height: 24px;
      color: var(--text-muted); }
    .work-card .card-item .cont h5 {
      color: var(--text-primary);
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 20px; }
      .work-card .card-item .cont h5 a {
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease; }
        .work-card .card-item .cont h5 a:hover {
          color: var(--accent-color); }
  .work-card .card-item .img {
    padding: 20px; }
    .work-card .card-item .img img {
      border-radius: 10px;
      width: 100%;
      height: auto; }

/* --------------- Clients --------------- */
.clients-sa {
  background: var(--bg-muted); }

.clients-sa .item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  background: var(--bg-color);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
  .clients-sa .item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px); }
  .clients-sa .item .img {
    width: 80px;
    margin: 0 auto; }
  .clients-sa .item .cont .icon {
    width: 32px;
    margin: 0 auto 8px; }
  .clients-sa .item .cont span {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-muted);
    font-weight: 500; }

/* --------------- Testimonials --------------- */
.testimonials-sa {
  position: relative;
  overflow: hidden;
  background: var(--bg-color); }
  .testimonials-sa .gl-rate {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    background: var(--bg-muted); }
    .testimonials-sa .gl-rate .icon {
      width: 32px; }
    .testimonials-sa .gl-rate .cont {
      padding-left: 16px; }
      .testimonials-sa .gl-rate .cont h6 {
        line-height: 1;
        font-weight: 600;
        font-size: 16px;
        color: var(--text-primary); }
      .testimonials-sa .gl-rate .cont .stars {
        font-size: 12px;
        color: #f59e0b;
        margin-left: 8px; }
      .testimonials-sa .gl-rate .cont p {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 2px; }
  .testimonials-sa .swiper-slide {
    height: auto; }
  .testimonials-sa .item {
    background: var(--bg-color);
    padding: 32px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease; }
    .testimonials-sa .item:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transform: translateY(-1px); }
    .testimonials-sa .item .rate h5 {
      font-size: 16px;
      color: var(--text-primary); }
    .testimonials-sa .item .rate .stars {
      font-size: 12px;
      color: #f59e0b;
      margin-left: 8px; }
    .testimonials-sa .item h6 {
      color: var(--text-primary);
      font-weight: 400;
      line-height: 1.5; }
    .testimonials-sa .item .info .img-author {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden; }
    .testimonials-sa .item .info .info-text {
      padding-left: 12px; }
      .testimonials-sa .item .info .info-text span {
        color: var(--text-primary);
        font-weight: 500; }
      .testimonials-sa .item .info .info-text p {
        font-size: 14px;
        color: var(--text-muted); }

/* --------------- Awards --------------- */
.awards-sa {
  background: var(--bg-muted); }

.awards-sa .item-title {
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border-color); }
  .awards-sa .item-title > div {
    padding: 0; }
  .awards-sa .item-title h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500; }

.awards-sa .item-line {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 3;
  background: var(--bg-color);
  margin-bottom: 1px; }
  .awards-sa .item-line > div {
    padding: 0; }
    .awards-sa .item-line > div:last-of-type {
      text-align: right; }
  .awards-sa .item-line:hover {
    background: var(--bg-muted);
    transform: translateX(4px); }
  .awards-sa .item-line .honors h6 {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500; }
  .awards-sa .item-line .project-title h6 {
    color: var(--text-primary); }
  .awards-sa .item-line .project-date span {
    font-size: 14px;
    color: var(--text-muted); }

/* --------------- Blogs --------------- */
.blog-sa {
  background: var(--bg-color); }

.blog-sa .item {
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease; }
  .blog-sa .item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px); }

.blog-sa .item .img {
  height: 300px;
  border-radius: 8px;
  overflow: hidden; }

.blog-sa .item .cont h6 {
  color: var(--text-primary); }

.blog-sa .item .cont .info a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500; }

.blog-sa .item .cont .info .date {
  color: var(--text-muted);
  margin-left: 4px; }

/* --------------- Contact --------------- */
.contact-sa {
  background: linear-gradient(135deg, var(--bg-muted) 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden; }
  .contact-sa:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(242, 101, 34, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(242, 101, 34, 0.08) 0%, transparent 50%);
    pointer-events: none; }

.contact-sa .box {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px); }
  .contact-sa .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F26522, #FF7A47, #F26522);
    border-radius: 24px 24px 0 0; }
  .contact-sa .box:after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.03) 0%, transparent 70%);
    pointer-events: none; }

.contact-sa .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2; }

.contact-sa .info h4 {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), #F26522);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px; }

.contact-sa .info h6 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600; }

.contact-sa .info .contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F26522, #FF7A47);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  width: fit-content; }
  .contact-sa .info .contact-badge .icon {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite; }

.contact-sa .contact-form {
  position: relative;
  z-index: 2; }
  .contact-sa .contact-form .form-group {
    margin-bottom: 24px;
    position: relative; }
    .contact-sa .contact-form .form-group.focused label {
      transform: translateY(-25px) scale(0.85);
      color: #F26522; }
  .contact-sa .contact-form label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    position: absolute;
    top: 14px;
    left: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-color);
    padding: 0 4px; }
  .contact-sa .contact-form label .star {
      color: #ef4444;
      padding-left: 2px; }
.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
    color: var(--text-primary);
    background: var(--bg-color);
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative; }
    .contact-sa .contact-form input:focus,
    .contact-sa .contact-form textarea:focus {
      outline: none;
      border-color: #F26522;
      box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
      background: #fff; }
    .contact-sa .contact-form input:not(:placeholder-shown),
    .contact-sa .contact-form textarea:not(:placeholder-shown) {
      padding-top: 24px; }
  .contact-sa .contact-form textarea {
    resize: vertical;
    min-height: 120px; }
  .contact-sa .contact-form .submit-btn {
    background: linear-gradient(135deg, #F26522, #FF7A47);
  color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px; }
    .contact-sa .contact-form .submit-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
  width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s ease; }
    .contact-sa .contact-form .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(242, 101, 34, 0.3);
      background: linear-gradient(135deg, #E55A1F, #F26522); }
      .contact-sa .contact-form .submit-btn:hover:before {
        left: 100%; }
    .contact-sa .contact-form .submit-btn .icon {
      transition: transform 0.3s ease; }
    .contact-sa .contact-form .submit-btn:hover .icon {
      transform: translateX(4px); }

/* --------------- footer --------------- */
.footer-sa {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  position: relative; }
  .footer-sa:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
  .footer-sa .logo {
    width: 160px;
    filter: invert(1); }
  .footer-sa h4 {
    color: #ffffff;
    font-weight: 500; }
  .footer-sa .contact-info .item {
    margin-bottom: 40px; }
    .footer-sa .contact-info .item span {
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 8px;
      color: #9ca3af;
      font-weight: 500;
      letter-spacing: 0.5px; }
    .footer-sa .contact-info .item p {
      color: #e5e7eb;
      font-weight: 400;
      line-height: 1.6; }
  .footer-sa .contact-info .social-icon {
    display: flex;
    gap: 12px; }
  .footer-sa .contact-info .social-icon a {
      width: 44px;
      height: 44px;
      line-height: 44px;
    text-align: center;
      border: 1px solid #374151;
      border-radius: 12px;
      font-size: 18px;
      color: #9ca3af;
      background: #111827;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      position: relative;
      overflow: hidden; }
      .footer-sa .contact-info .social-icon a:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease; }
    .footer-sa .contact-info .social-icon a:hover {
        border-color: #ffffff;
        background: #ffffff;
        color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255,255,255,0.15); }
        .footer-sa .contact-info .social-icon a:hover:before {
          left: 100%; }
  .footer-sa .sub-footer {
    border-top: 1px solid #374151;
    background: #000000;
    position: relative; }
    .footer-sa .sub-footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); }
  .footer-sa .sub-footer .copy p {
      font-size: 14px;
      color: #6b7280; }
    .footer-sa .sub-footer .copy p a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease; }
        .footer-sa .sub-footer .copy p a:hover {
          color: #f3f4f6; }
  .footer-sa .sub-footer .links {
    width: 100%; }
    .footer-sa .sub-footer .links a {
        font-size: 14px;
        color: #9ca3af;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative; }
        .footer-sa .sub-footer .links a:after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 0;
          height: 1px;
          background: #ffffff;
          transition: width 0.3s ease; }
        .footer-sa .sub-footer .links a:hover {
          color: #ffffff; }
          .footer-sa .sub-footer .links a:hover:after {
            width: 100%; }
    .footer-sa .sub-footer .links .active {
        color: #ffffff;
        font-weight: 500; }
        .footer-sa .sub-footer .links .active:after {
          width: 100%; }

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--theme-color); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin: 0;
  color: var(--text-primary); }

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
  font-weight: 600; }

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px;
  font-weight: 600; }

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px; }

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px; }

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px; }

h6 {
  font-size: 24px;
  line-height: 32px; }

.sub-color {
  color: var(--text-secondary); }

.sub-head {
  font-size: 20px;
  line-height: 28px;
  color: var(--text-secondary); }

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--text-secondary); }

/* Modern Section Headers */
.sec-head {
  text-align: center;
  margin-bottom: 80px; }
  .sec-head h4 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto; }
    .sec-head h4 .highlight {
      background: linear-gradient(135deg, #F26522, #FF7A47);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
  .sec-head h2 {
    font-size: 56px;
    line-height: 68px;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto; }
    .sec-head h2 .highlight {
      background: linear-gradient(135deg, #F26522, #FF7A47);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }

.loader-wrap svg {
  fill: var(--accent-color); }

.icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0); }

.butn .icon {
  width: 18px; }

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .sec-head .sub-head {
    margin-bottom: 30px !important; }
  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative; }
    .header-sa .caption {
      position: relative;
      z-index: 4; }
      .header-sa .caption .text {
        margin-top: 40px;
        width: 80%; }
    .header-sa .imgs {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
      transform: translateY(50%); }
      .header-sa .imgs .circle {
        width: 250px;
        top: 60%; }
  .marq-sa .item h2 {
    font-size: 70px;
    line-height: 1.4;
    -webkit-text-fill-color: var(--text-primary);
    background: transparent; } }

@media screen and (max-width: 768px) {
  .header-sa .caption h1 {
    font-size: 50px;
    line-height: 1.4; }
  .header-sa .imgs {
    width: 60%;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%); }
  .header-sa .imgs .cube img {
    right: -30px; }
  .header-sa .imgs .circle {
    width: 200px; }
  .contact-sa .box {
    padding: 120px 40px; } }
