/* Blog Container Modern */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.blog-card {
  background: #232b47;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(227,176,75,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(227,176,75,0.18);
}
.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--theme-gold);
  color: #232b47;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(227,176,75,0.12);
  letter-spacing: 1px;
  z-index: 2;
}
.blog-card-content {
  padding: 2.2rem 2rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 1.35rem;
  color: #e3b04b;
  margin-bottom: 1.2rem;
}
.blog-meta i {
  color: var(--theme-gold);
  margin-right: 0.5rem;
}
.blog-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--theme-gold);
  margin-bottom: 0.7rem;
}
.blog-card-excerpt {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--theme-gold);
  color: #232b47;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  margin-top: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.blog-read-more:hover {
  background: #fff;
  color: var(--theme-gold);
}

@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-card-image {
    height: 180px;
  }
}
/* Created by Tivotal */

/* Pastikan ikon Font Awesome tidak tertimpa style lain */
.fa,
.fab,
.fas,
.far,
.fal,
.fad {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'FontAwesome', Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400;
  font-variant: normal;
  text-rendering: auto;
  display: inline-block !important;
  speak: never;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  background: none !important;
  color: inherit;
}

/* Jika ada style yang menyembunyikan ikon, override di sini */
.fa,
.fab,
.fas,
.far,
.fal,
.fad {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Google Fonts(Poppins) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
  --theme-color: #e3b04b; /* Gold */
  --theme-bg: #1a2238;    /* Navy Blue */
  --theme-bg-dark: #151a2c;
  --theme-bg-light: #232b47;
  --theme-gold: #e3b04b;
  --theme-gold-muted: #e3b04b;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

body {
  background: var(--theme-bg);
  position: relative;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fff;
  margin: 0;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--theme-bg-dark) 0%, var(--theme-bg) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-circle {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(56, 103, 214, 0.2);
  border-top-color: var(--theme-color);
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s linear infinite;
}

.loader-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
}

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

section {
  padding: 2rem 9%;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 9%;
  position: relative;
  overflow: hidden;
}


.section-divider .divider-line {
  flex: 1;
  height: 2px;
  background: var(--theme-color);
  position: relative;
}

.section-divider .divider-line::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--theme-color);
  filter: none;
  animation: none;
}

.section-divider .divider-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--theme-bg), var(--theme-bg-dark));
  border: 3px solid var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(56, 103, 214, 0.5),
              0 0 40px rgba(56, 103, 214, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

.section-divider .divider-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--theme-color);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: none;
}

.section-divider .divider-icon i {
  font-size: 2.2rem;
  color: #fff;
  animation: none;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 9%;
}

.header .logo {
  font-weight: bolder;
  color: #fff;
  font-size: 2.5rem;
}

.header .logo span {
  color: var(--theme-color);
}

.header .navbar a {
  font-size: 1.7rem;
  color: #fff;
  margin-left: 2rem;
  padding: 1.2rem 1.8rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
}

.header .navbar a:hover {
  background: var(--theme-color);
  color: var(--theme-bg-dark);
}

#menu-bars {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 10001;
}

.home {
  position: relative;
  overflow: hidden;
}

.home .home-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 103, 214, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.home .content {
  text-align: center;
  padding-top: 4rem;
  margin: 2rem auto;
  max-width: 85rem;
  position: relative;
  z-index: 2;
}

.home .content .welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--theme-color);
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}

.home .content .welcome-badge i {
  color: #ffd700;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.home .content .welcome-badge span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home .content .welcome-text {
  color: #ddd;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeIn 1.2s ease;
}

.home .content .brand-name {
  font-size: 6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.home .content .brand-name span {
  color: var(--theme-color);
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

.home .content .tagline {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 1.4s ease;
}

.home .content .subtitle {
  font-size: 1.6rem;
  color: #bbb;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.6s ease;
}

.home .content .cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1.8s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  border-radius: 5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn i {
  font-size: 1.8rem;
}

.btn-primary {
  background: var(--theme-color);
  color: #fff;
  box-shadow: 0 5px 20px rgba(227, 176, 75, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(56, 103, 214, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.btn-secondary:hover {
  background: var(--theme-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(56, 103, 214, 0.4);
}

.home .content .stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease;
}

.home .content .stat-box {
  text-align: center;
  padding: 2rem;
  background: rgba(51, 51, 51, 0.8);
  border-radius: 1rem;
  min-width: 15rem;
  border: 2px solid rgba(56, 103, 214, 0.3);
  transition: all 0.3s ease;
}

.home .content .stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--theme-color);
  background: rgba(56, 103, 214, 0.2);
  box-shadow: 0 10px 30px rgba(56, 103, 214, 0.3);
}

.home .content .stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.home .content .stat-label {
  font-size: 1.4rem;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(56, 103, 214, 0.5), 0 0 20px rgba(56, 103, 214, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(56, 103, 214, 0.8), 0 0 30px rgba(56, 103, 214, 0.5);
  }
}

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

.home .home-slider .swiper-slide {
  overflow: hidden;
  border-radius: 0.5rem;
  height: 50rem;
  width: 35rem;
}

.home .home-slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.heading {
  text-align: center;
  padding-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-size: 4rem;
}

.heading span {
  color: var(--theme-color);
  text-transform: uppercase;
}

.service .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem;
}

.service .box-container .box {
  border-radius: 0.5rem;
  background: #333;
  text-align: center;
  padding: 2.5rem;
}

.service .box-container .box i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  font-size: 2.5rem;
  background: rgba(227,176,75,0.12);
  color: var(--theme-gold);
}

.service .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding: 1rem 0;
}

.service .box-container .box p {
  font-size: 1.4rem;
  color: #eee;
  line-height: 1.8;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about .row .image {
  flex: 1 1 45rem;
  padding: 1rem;
}

.about .row .image img {
  width: 100%;
  border-radius: 0.5rem;
  border: 1rem solid #333;
}

.about .row .content {
  flex: 1 1 45rem;
}

.about .row .content h3 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about .row .content h3.why-choose {
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about .row .content h3 span {
  color: var(--theme-color);
}

.about .row .content p {
  font-size: 1.5rem;
  color: #eee;
  padding: 1rem 0;
  line-height: 2;
}

.about .row .content .features-list {
  margin-top: 2rem;
}

.about .row .content .feature-item {
  background: #333;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--theme-color);
  transition: all 0.3s ease;
}

.about .row .content .feature-item:hover {
  background: #3a3a3a;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(56, 103, 214, 0.3);
}

.about .row .content .feature-item h4 {
  font-size: 1.8rem;
  color: var(--theme-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .row .content .feature-item h4 i {
  font-size: 2rem;
}

.about .row .content .feature-item p {
  font-size: 1.4rem;
  color: #ddd;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}


/* Client Section */
.client .section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: #bbb;
  margin-top: -1rem;
  margin-bottom: 3rem;
  text-transform: none;
}

.client .client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
}

.client .client-item {
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #333;
  transition: all 0.3s ease;
  min-height: 20rem;
}

.client .client-item:hover {
  border-color: var(--theme-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(56, 103, 214, 0.3);
}

.client .client-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client .client-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.client .img-client {
  display: none;
}

.map {
  display: block;
  justify-content: center;
  align-items: center;
  border: 1rem solid #333;
  border-radius: 0.5rem;
  margin: 10px;
}

.map .map-link iframe {
  width: 100%;
  margin: auto;
  padding: 20px;
}

/* Blog Section */
.blog {
  background: var(--theme-bg);
}

.blog .section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: #bbb;
  margin-bottom: 3rem;
  font-weight: 400;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #232b47;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(56, 103, 214, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(227, 176, 75, 0.18);
}

.blog-card-image {
  width: 100%;
  height: 22rem;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--theme-color);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 2.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: #999;
}

.blog-meta i {
  color: var(--theme-color);
  margin-right: 0.5rem;
}

.blog-card-title {
  font-size: 2rem;
  color: var(--theme-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-title:hover {
  color: #fff;
}

.blog-card-excerpt {
  font-size: 1.4rem;
  color: #eee;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--theme-color);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  background: #1a2238;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 1.5rem;
  background: var(--theme-color);
  color: #232b47;
}

.blog-read-more i {
  transition: all 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Gallery with Enhanced Hover */
.gallery .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem;
}

.gallery .box-container .box {
  position: relative;
  border: 1rem solid #333;
  border-radius: 0.5rem;
  height: 25rem;
  cursor: pointer;
  overflow: hidden;
}

.gallery .box-container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 103, 214, 0.8), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery .box-container .box:hover::before {
  opacity: 1;
}

.gallery .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery .box-container .box:hover img {
  transform: scale(1.2) rotate(2deg);
}

.gallery .box-container .box .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(51, 51, 51, 0.95);
  color: #fff;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease;
  width: 80%;
}

.gallery .box-container .box:hover .title {
  opacity: 1;
  top: 40%;
}

.gallery .box-container .box .icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  gap: 1rem;
  z-index: 3;
  transition: all 0.3s ease;
}

.gallery .box-container .box:hover .icons {
  transform: translate(-50%, -50%) scale(1);
}

.gallery .box-container .box .icons .zoom-icon {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(56, 103, 214, 0.5);
}

.gallery .box-container .box .icons .zoom-icon:hover {
  background: #fff;
  color: var(--theme-color);
  transform: rotate(360deg);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 2rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-lightbox {
  position: absolute;
  top: 3rem;
  right: 4rem;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10000;
  background: rgba(56, 103, 214, 0.8);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close-lightbox:hover,
.close-lightbox:focus {
  background: var(--theme-color);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background: rgba(56, 103, 214, 0.8);
  color: white;
  font-weight: bold;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev:hover,
.next:hover {
  background: var(--theme-color);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 3rem;
}

.next {
  right: 3rem;
}



/* Remove old duplicate icons styling */

.price .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.price .box-container .box {
  padding: 2rem 0;
  background: #333;
  border-radius: 0.5rem;
  text-align: center;
}

.price .box-container .box:hover {
  transform: scale(1.03);
}

.price .box-container .box .title {
  background: var(--theme-color);
  color: #fff;
  padding: 1.5rem 0;
  font-size: 2rem;
}

.price .box-container .box .amount {
  color: #fff;
  padding-top: 2rem;
  font-size: 4rem;
}

.price .box-container .box ul {
  list-style-type: none;
  padding: 1rem 0;
}

.price .box-container .box ul li {
  font-size: 1.5rem;
  color: #eee;
  padding: 1rem 0;
}

.price .box-container .box ul li i {
  color: var(--theme-color);
  padding-right: 0.5rem;
}

/* Project Section */
.project .box {
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--theme-bg-light) 0%, var(--theme-bg-dark) 100%);
  padding: 2.5rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.project .box:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(56, 103, 214, 0.3);
  background: linear-gradient(135deg, #3a3a3a 0%, #333 100%);
}

.project .box .project-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--theme-color), #5a8df6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.project .box:hover .project-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 5px 20px rgba(56, 103, 214, 0.5);
}

.project .box .project-icon i {
  font-size: 3.5rem;
  color: #fff;
}

.project .box .project-info {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(56, 103, 214, 0.3);
}

.project .box .project-info h3 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.project .box .project-info .project-count {
  display: inline-block;
  background: var(--theme-color);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.project .box .project-list {
  list-style: none;
  flex: 1;
}

.project .box .project-list li {
  color: #ddd;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
}

.project .box .project-list li:hover {
  color: #fff;
  padding-left: 0.5rem;
}

.project .box .project-list li i {
  color: var(--theme-color);
  font-size: 1.2rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.reivew .box {
  border-radius: 0.5rem;
  background: #333;
  padding: 2rem;
  position: relative;
}

.reivew .box .fa-quote-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--theme-color);
  font-size: 5rem;
}

.reivew .box .user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.reivew .box .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.reivew .box .user h3 {
  font-size: 2rem;
  color: #fff;
}

.reivew .box .user span {
  font-size: 1.5rem;
  color: #eee;
}

.reivew .box p {
  line-height: 2;
  color: #eee;
  padding: 0.5rem 0;
  font-size: 1.6rem;
}

.contact form {
  max-width: 80rem;
  margin: 3rem auto;
  text-align: center;
  background: #333;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact form .inputBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact form .inputBox input,
.contact form textarea {
  width: 100%;
  background: var(--theme-bg-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 0.7rem 0;
  font-size: 1.5rem;
  color: #fff;
  text-transform: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact form .inputBox input::placeholder,
.contact form textarea::placeholder {
  color: #999;
  text-transform: capitalize;
}

.contact form .inputBox input:focus,
.contact form textarea:focus {
  background: var(--theme-bg-dark);
  border-color: var(--theme-color);
  box-shadow: 0 0 10px rgba(56, 103, 214, 0.3);
}

.contact form .inputBox input {
  width: 48%;
}

.contact form textarea {
  resize: none;
  min-height: 15rem;
}

.contact .contact-info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact .info-box {
  background: #333;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(56, 103, 214, 0.3);
}

.contact .info-box i {
  font-size: 4rem;
  color: var(--theme-color);
  margin-bottom: 1.5rem;
}

.contact .info-box h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact .info-box a,
.contact .info-box p {
  font-size: 1.4rem;
  color: #ddd;
  display: block;
  margin: 0.5rem 0;
  text-transform: none;
}

.contact .info-box a:hover {
  color: var(--theme-color);
}

.contact .section-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: #bbb;
  margin-top: -1rem;
  margin-bottom: 3rem;
}

.footer {
  background: linear-gradient(135deg, var(--theme-bg-dark) 0%, var(--theme-bg) 100%);
  padding: 4rem 9% 0;
}

.footer .footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #333;
}

.footer .footer-box h3 {
  font-size: 2.2rem;
  padding-bottom: 1.5rem;
  color: #fff;
  position: relative;
}

.footer .footer-box h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--theme-color);
}

.footer .footer-box p {
  font-size: 1.4rem;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.footer .footer-box a {
  display: block;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  color: #ddd;
  transition: all 0.3s ease;
}

.footer .footer-box a i {
  padding-right: 1rem;
  color: var(--theme-color);
  transition: all 0.3s ease;
}

.footer .footer-box a:hover {
  color: var(--theme-color);
  padding-left: 1rem;
}

.footer .footer-box a:hover i {
  padding-right: 1.5rem;
}

.footer .footer-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.footer .footer-stats div {
  text-align: center;
  padding: 1rem;
  background: var(--theme-bg-light);
  border-radius: 0.5rem;
  flex: 1;
}

.footer .footer-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
}

.footer .social-links {
  margin-top: 1.5rem;
}

.footer .social-links h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer .social-links a {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  background: var(--theme-bg-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.8rem;
  border: 2px solid transparent;
}

.footer .social-links a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer .footer-bottom {
  text-align: center;
  padding: 2.5rem 0;
}

.footer .footer-bottom p {
  font-size: 1.4rem;
  color: #999;
  margin: 0.5rem 0;
}

.footer .footer-bottom span {
  color: var(--theme-color);
  font-weight: 600;
}

.footer .footer-bottom i {
  color: #e74c3c;
  animation: heartBeat 1.5s infinite;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--theme-color), #5a8df6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(56, 103, 214, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(56, 103, 214, 0.7);
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #444;
}

html::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 5rem;
}


.theme-toggler {
  position: fixed;
  top: 10rem;
  right: -20rem;
  background: #333;
  z-index: 1000;
  width: 20rem;
  text-align: center;
}

.theme-toggler.active {
  right: 0;
}

.theme-toggler h3 {
  color: #fff;
  padding: 1rem 0;
  font-size: 2rem;
}

.theme-toggler .buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.theme-toggler .buttons .theme-btn {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  cursor: pointer;
}

.theme-toggler .toggle-btn {
  position: absolute;
  top: 0;
  left: -5.9rem;
  padding: 1.3rem 1.5rem;
  background: #333;
  cursor: pointer;
}

.theme-toggler .toggle-btn i {
  color: #fff;
  font-size: 3rem;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
}

/* media queries  */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 2rem;
  }

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

  .about .row .content h3.why-choose {
    font-size: 2.7rem;
  }

  .about .row .content .feature-item h4 {
    font-size: 1.6rem;
  }

  .project .box {
    min-height: 350px;
  }

  .project .box .project-icon {
    width: 70px;
    height: 70px;
  }

  .project .box .project-icon i {
    font-size: 3rem;
  }

  .project .box .project-info h3 {
    font-size: 2rem;
  }

  .home .content .brand-name {
    font-size: 5rem;
  }

  .home .content .tagline {
    font-size: 2rem;
  }

  .home .content .stats-container {
    gap: 2rem;
  }

  .section-divider {
    padding: 3rem 2rem;
  }

  .section-divider .divider-icon {
    width: 55px;
    height: 55px;
    margin: 0 1.5rem;
  }

  .section-divider .divider-icon i {
    font-size: 2rem;
  }

  .client .client-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact form .inputBox input {
    width: 100%;
  }

  .footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 2.8rem;
    bottom: 25px;
    right: 25px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    bottom: 90px;
    right: 25px;
  }
}

@media (max-width: 768px) {
  #menu-bars {
    display: block !important;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 10001;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-top: 0.1rem solid #222;
    background: var(--theme-bg-dark);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-width: 100vw;
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    z-index: 9999;
  }
  .header .navbar.active {
    display: flex !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: clip-path 0.3s;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  .header .navbar a {
    display: block;
    background: transparent;
    border-radius: 0.5rem;
    padding: 1.3rem 2rem;
    margin: 0.5rem 1rem;
    font-size: 2rem;
    color: #fff;
    width: 100%;
    transition: background 0.2s, color 0.2s;
  }
  .header .navbar a:hover {
    background: var(--theme-color);
    color: var(--theme-bg-dark);
  }

  .home .content h3 {
    font-size: 4rem;
  }

  .home .content .welcome-badge {
    padding: 0.6rem 1.5rem;
  }

  .home .content .welcome-badge span {
    font-size: 1.1rem;
  }

  .home .content .welcome-text {
    font-size: 2rem;
  }

  .home .content .brand-name {
    font-size: 4rem;
  }

  .home .content .tagline {
    font-size: 1.8rem;
  }

  .home .content .subtitle {
    font-size: 1.4rem;
  }

  .home .content .cta-buttons {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1.4rem;
  }

  .home .content .stats-container {
    gap: 2rem;
  }

  .home .content .stat-box {
    min-width: 12rem;
    padding: 1.5rem;
  }

  .home .content .stat-number {
    font-size: 3rem;
  }

  .home .content .stat-label {
    font-size: 1.2rem;
  }

  .about .row {
    flex-direction: column;
  }

  .about .row .image,
  .about .row .content {
    flex: 1 1 100%;
  }

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

  .about .row .content h3.why-choose {
    font-size: 2.5rem;
  }

  .about .row .content .feature-item {
    padding: 1.2rem;
  }

  .about .row .content .feature-item h4 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .about .row .content .feature-item p {
    font-size: 1.3rem;
  }

  .project .box {
    min-height: 320px;
    padding: 2rem;
  }

  .project .box .project-icon {
    width: 65px;
    height: 65px;
  }

  .project .box .project-icon i {
    font-size: 2.8rem;
  }

  .project .box .project-info h3 {
    font-size: 1.8rem;
  }

  .project .box .project-list li {
    font-size: 1.3rem;
    padding: 0.6rem 0;
  }

  .heading {
    font-size: 3.5rem;
  }

  .section-divider {
    padding: 2.5rem 2rem;
  }

  .section-divider .divider-icon {
    width: 50px;
    height: 50px;
    margin: 0 1rem;
  }

  .section-divider .divider-icon i {
    font-size: 1.8rem;
  }

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

  .contact form {
    padding: 2rem;
  }

  .contact form .inputBox input {
    width: 100%;
  }

  .contact .contact-info-boxes {
    grid-template-columns: 1fr;
  }

  .footer .footer-container {
    grid-template-columns: 1fr;
  }

  .footer .footer-stats {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .home .home-slider .swiper-slide {
    width: 27rem;
  }

  .contact form .inputBox input {
    width: 100%;
  }

  .home .content .welcome-badge {
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .home .content .welcome-badge span {
    font-size: 1rem;
  }

  .home .content .welcome-badge i {
    font-size: 1rem;
  }

  .home .content .welcome-text {
    font-size: 1.6rem;
  }

  .home .content .brand-name {
    font-size: 3.5rem;
  }

  .home .content .tagline {
    font-size: 1.6rem;
  }

  .home .content .subtitle {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .home .content .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1.3rem;
    width: 100%;
    max-width: 30rem;
    justify-content: center;
    margin: 0 auto;
  }

  .home .content .stats-container {
    gap: 1.5rem;
  }

  .home .content .stat-box {
    min-width: 10rem;
    padding: 1.2rem;
  }

  .home .content .stat-number {
    font-size: 2.5rem;
  }

  .home .content .stat-label {
    font-size: 1.1rem;
  }

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

  .about .row .content h3.why-choose {
    font-size: 2.3rem;
  }

  .about .row .content .feature-item {
    padding: 1rem;
  }

  .about .row .content .feature-item h4 {
    font-size: 1.4rem;
  }

  .about .row .content .feature-item h4 i {
    font-size: 1.6rem;
  }

  .project .box {
    min-height: 300px;
    padding: 1.5rem;
  }

  .project .box .project-icon {
    width: 60px;
    height: 60px;
  }

  .project .box .project-icon i {
    font-size: 2.5rem;
  }

  .project .box .project-info h3 {
    font-size: 1.6rem;
  }

  .project .box .project-info .project-count {
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem;
  }

  .project .box .project-list li {
    font-size: 1.2rem;
  }

  .heading {
    font-size: 3rem;
  }

  .section-divider {
    padding: 2rem 1rem;
  }

  .section-divider .divider-icon {
    width: 45px;
    height: 45px;
    margin: 0 0.8rem;
    border-width: 2px;
  }

  .section-divider .divider-icon i {
    font-size: 1.6rem;
  }

  .section-divider .divider-line {
    height: 1.5px;
  }

  .client .client-item {
    padding: 2rem;
    min-height: 15rem;
  }

  .contact form {
    padding: 1.5rem;
  }

  .contact .info-box {
    padding: 2rem 1.5rem;
  }

  .footer .social-links a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.6rem;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 2.2rem;
    bottom: 15px;
    right: 15px;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    bottom: 70px;
    right: 15px;
  }

  .close-lightbox {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
  }

  .prev,
  .next {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .prev {
    left: 1rem;
  }

  .next {
    right: 1rem;
  }

  .lightbox-caption {
    bottom: 1.5rem;
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
}
