:root {
  --primary-color: #106aaa;
  --primary-hover: #0f70b7;

  --secondary-color: #0b1f33;
  --dark-color: #071522;

  --white-color: #ffffff;
  --text-light: #eaf6ff;
  --text-muted: #3f4243;

  --blue-light: #4db8f2;
  --blue-medium: #1687d9;
  --blue-dark: #0b5f9e;
  --blue-deep: #062b46;

  --border-color: rgba(255, 255, 255, 0.14);
  --overlay-color: rgba(0, 20, 35, 0.62);

  --transition: all 0.3s ease;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 30px;

  --container-width: 1450px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--white-color);
  color: var(--secondary-color);
}

a {
  text-decoration: none;
}

.main-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.main-navbar {
  position: fixed;
  top:0;
  width: 100%;
  height: 128px;
  border-bottom: 1px solid var(--border-color);
      background: var(--blue-deep) !important;
  backdrop-filter: blur(2px);
}

.navbar-container {
  max-width: var(--container-width);
  height: 100%;
  margin: auto;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
}

.brand-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary-color);
  color: var(--white-color);

  border-radius: 50%;

  font-size: 25px;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-name span {
  font-weight: 500;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-link {
  position: relative;

  color: var(--white-color);
  font-size: 17px;
  font-weight: 700;

  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -12px;

  width: 0;
  height: 2px;

  background: var(--primary-color);

  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.pages-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pages-link i {
  font-size: 11px;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;


  padding: 16px 15px;

  background: var(--primary-color);
  color: var(--white-color);

  border-radius: 40px;

  font-size: 13px;
  font-weight: 700;

  transition: var(--transition);
}

.navbar-cta i {
  font-size: 16px;
}

.navbar-cta:hover {
  background: var(--white-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/header-bg.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(3, 20, 34, 0.92) 0%,
    rgba(5, 37, 61, 0.78) 35%,
    rgba(8, 63, 94, 0.7) 70%,
    rgba(7, 45, 70, 0.12) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;

  max-width: var(--container-width);

  padding-top: 200px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 790px;
  color: var(--white-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 18px;

  margin-bottom: 25px;

  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  color: var(--white-color);

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;

  background: var(--primary-color);

  border-radius: 50%;
}

.hero-content h1 {
  margin-bottom: 25px;
  font-size: clamp(45px, 5vw, 62px);
  line-height: 1.33;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-content h1 span {
  color: var(--white-color);
}

.hero-description {
  max-width: 720px;

  margin-bottom: 34px;

  color: var(--text-light);

  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
}

.hero-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 55px;

  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ffffff1a;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 11px;

  color: var(--white-color);

  font-size: 16px;
  font-weight: 600;
}

.feature-icon {
  color: var(--primary-color);

  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
}

.primary-btn {
  min-width: 235px;
  height: 62px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 0 30px;

  background: var(--primary-color);
  color: var(--white-color);

  border-radius: 35px;

  font-size: 17px;
  font-weight: 700;

  transition: var(--transition);
}

.primary-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);

  transform: translateY(-3px);
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  color: var(--white-color);

  font-size: 16px;
  font-weight: 700;

  transition: var(--transition);
}

.video-btn:hover {
  color: var(--white-color);
}

.video-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary-color);
  color: var(--white-color);

  border-radius: 50%;

  font-size: 17px;

  transition: var(--transition);
}

.video-btn:hover .video-icon {
  transform: scale(1.08);
}

.mobile-menu-btn {
  display: none;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(0, 0, 0, 0.35);

  color: var(--white-color);

  border-radius: 10px;

  font-size: 21px;
}

.mobile-sidebar {
  position: fixed;

  top: 0;
  right: -100%;

  width: min(360px, 88%);

  height: 100vh;

  z-index: 2000;

  background: var(--secondary-color);

  padding: 25px;

  transition: right 0.4s ease;
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 25px;

  border-bottom: 1px solid var(--border-color);
}

.sidebar-close {
  width: 42px;
  height: 42px;

  border: 0;

  background: rgba(255, 255, 255, 0.08);

  color: var(--white-color);

  border-radius: 8px;

  font-size: 20px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;

  padding-top: 25px;
}

.sidebar-link {
  padding: 17px 5px;

  border-bottom: 1px solid var(--border-color);

  color: var(--white-color);

  font-size: 16px;
  font-weight: 600;

  transition: var(--transition);
}

.sidebar-link:hover {
  color: var(--primary-color);
  padding-right: 12px;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 55px;

  margin-top: 30px;

  background: var(--primary-color);
  color: var(--white-color);

  border-radius: 30px;

  font-weight: 700;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;

  z-index: 1500;

  background: rgba(0, 0, 0, 0.65);

  opacity: 0;
  visibility: hidden;

  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dummy-section {
  min-height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.dummy-section h2 {
  font-size: 45px;
}

@media (max-width: 1200px) {
  .desktop-menu {
    gap: 25px;
  }

  .navbar-cta {
    min-width: 200px;
  }

  .hero-content {
    max-width: 720px;
  }
}
@media screen and (max-width:1200px) {
    .main-navbar {
    height: 95px;
  }

  .desktop-menu{
    display: none;
  }

  .mobile-menu-btn {
    display: flex;

    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {


  .hero-section {
    min-height: 850px;

    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 20, 34, 0.9),
      rgba(5, 50, 78, 0.58)
    );
  }

  .hero-container {
    padding-top: 150px;
  }
}

@media (max-width: 767px) {
  .navbar-container {
    padding: 0 20px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;

    font-size: 20px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-section {
    min-height: 800px;

    background-position: 62% center;
  }

  .hero-container {
    padding: 145px 20px 60px;
  }

  .hero-content h1 {
    font-size: 43px;

    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 35px;
  }

  .hero-feature {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;

    gap: 25px;
  }

  .primary-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 450px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-badge {
    font-size: 12px;
  }

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

  .video-btn {
    font-size: 14px;
  }
}
.about-section {
  position: relative;
  padding: 110px 0;
  background: #f8f9f5;
  overflow: hidden;
}
.about-images {
  position: relative;
  min-height: 700px;
  width: 100%;
}

.about-main-image {
  position: absolute;
  top: 0;
  right: 0;

  width: 80%;
  height: 625px;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 20px 50px rgba(0, 31, 52, 0.12);
}

.about-main-image img {
  width: 100%;
}

.about-small-image {
  position: absolute;

  bottom: 105px;
  left: -2%;

  width: 41%;
  height: 300px;

  overflow: hidden;

  border: 8px solid #f8f9f5;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 31, 52, 0.16);

  z-index: 2;
}
.about-main-image,
.about-small-image {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
}

.about-main-image::after,
.about-small-image::after {
  content: "";

  position: absolute;

  width: 200%;
  height: 0;

  left: 50%;
  top: 50%;

  background-color: rgba(255, 255, 255, 0.3);

  transform: translate(-50%, -50%) rotate(-45deg);

  z-index: 5;

  pointer-events: none;

  transition: all 600ms linear;
}
.blog-page{
    margin-top: 90px;
}
.about-main-image:hover::after,
.about-small-image:hover::after {
  height: 250%;
  background-color: transparent;
}
.experience-card {
  position: absolute;

  right: -2%;
  bottom: 80px;

  z-index: 3;

  min-width: 230px;
  min-height: 100px;

  padding: 22px 28px;

  display: flex;
  align-items: center;
  gap: 20px;

  background: var(--primary-color);

  border-radius: 20px;

  box-shadow: 0 20px 40px rgba(22, 135, 217, 0.25);
}

.experience-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: var(--white-color);

  border: 2px solid rgba(255, 255, 255, 0.8);

  border-radius: 50%;

  font-size: 28px;
}

.experience-card strong {
  display: block;

  color: var(--white-color);

  font-size: 40px;
  line-height: 1;

  font-weight: 800;
}

.experience-card span {
  display: block;

  margin-top: 7px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 15px;
  font-weight: 600;
}

.about-content {
  padding-right: 35px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 19px;

  margin-bottom: 24px;

  background: var(--white-color);

  border-radius: 30px;

  color: var(--text-color);

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.section-badge .dot {
  width: 7px;
  height: 7px;

  background: var(--primary-color);

  border-radius: 50%;
}

.about-content h2 {
  max-width: 720px;

  margin-bottom: 25px;

  color: var(--text-color);

  font-size: clamp(40px, 4vw, 51px);
  line-height: 1.5;

  font-weight: 800;

  letter-spacing: -1.5px;
}

.about-content h2 span {
  color: var(--primary-color);
}

.about-description {
  max-width: 700px;

  margin-bottom: 30px;

  color: var(--text-muted);

  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.about-list {
  max-width: 690px;

  padding-bottom: 28px;

  border-bottom: 1px solid var(--border-color);
}

.about-list-item {
  display: flex;
  align-items: center;

  gap: 13px;

  margin-bottom: 18px;

  color: #6d7378;

  font-size: 16px;
  font-weight: 600;
}

.about-list-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 23px;
  height: 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--primary-color);

  color: var(--white-color);

  border-radius: 50%;

  font-size: 11px;
}

.about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  margin-top: 35px;
}

.about-btn {
  min-width: 230px;
  height: 59px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 0 25px;

  background: var(--primary-color);

  color: var(--white-color);

  border-radius: 35px;

  font-size: 16px;
  font-weight: 700;

  transition: var(--transition);
}

.about-btn:hover {
  background: var(--primary-hover);

  color: var(--white-color);

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(22, 135, 217, 0.25);
}

.about-stats {
  display: flex;
  align-items: center;

  gap: 30px;
}

.stat-item {
  min-width: 130px;

  text-align: center;
}

.stat-item strong {
  display: block;

  color: var(--blue-deep);

  font-size: 46px;
  line-height: 1;

  font-weight: 800;
}

.stat-item span {
  display: block;

  margin-top: 8px;

  color: var(--text-muted);

  font-size: 14px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 75px;

  background: var(--border-color);
}

@media (max-width: 1199px) {
  .about-images {
    min-height: 620px;
  }

  .about-main-image {
    height: 550px;
  }

  .about-small-image {
    height: 350px;
    bottom: 130px;
  }

  .experience-card {
    right: 28%;
    bottom: 65px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 48px;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-images {
    min-height: 650px;
    max-width: 700px;
    margin: 0 auto 30px;
  }

  .about-main-image {
    width: 80%;
    height: 570px;
  }

  .about-small-image {
    width: 52%;
    height: 350px;

    left: 2%;
    bottom: 100px;
  }

  .experience-card {
    right: 27%;
    bottom: 35px;
  }

  .about-content h2 {
    font-size: 46px;
  }

  .about-bottom {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 70px 0;
  }

  .about-images {
    min-height: 520px;
  }

  .about-main-image {
    width: 82%;
    height: 430px;

    border-radius: 18px;
  }

  .about-small-image {
    width: 55%;
    height: 270px;

    bottom: 55px;

    border-width: 6px;
    border-radius: 18px;
  }

  .experience-card {
    right: 22%;
    bottom: 10px;

    min-width: 250px;
    min-height: 95px;

    padding: 16px 20px;

    gap: 14px;

    border-radius: 16px;
  }

  .experience-icon {
    width: 48px;
    height: 48px;

    font-size: 20px;
  }

  .experience-card strong {
    font-size: 30px;
  }

  .experience-card span {
    font-size: 12px;
  }

  .about-content h2 {
    font-size: 39px;
    letter-spacing: -0.5px;
  }

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

  .about-list-item {
    align-items: flex-start;

    font-size: 14px;
    line-height: 1.7;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-btn {
    width: 100%;
  }

  .about-stats {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .about-images {
    min-height: 430px;
  }

  .about-main-image {
    height: 360px;
  }

  .about-small-image {
    height: 220px;
  }

  .experience-card {
    right: 14%;
    min-width: 230px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .stat-item strong {
    font-size: 35px;
  }

  .stat-item span {
    font-size: 12px;
  }

  .stat-divider {
    height: 60px;
  }
}
.services-section {
  position: relative;
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 10px;
  width: 50%;
  height: 45%;
  background: url("../images/service-bg-image-metal.png") center bottom /
    contain no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.services-section > * {
  position: relative;
  z-index: 2;
}

.services-section .container {
  max-width: var(--container-width);
}

.services-heading {
  max-width: 750px;
  margin: 0 auto 55px;
}

.services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.services-subtitle::before,
.services-subtitle::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 20px;
}

.services-heading h2 {
  margin: 0 0 18px;
  color: var(--secondary-color);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.3;
}

.services-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
  background-color: var(--secondary-color);
  background-position: center;
  background-size: cover;
  transition: var(--transition);
  box-shadow: 0 15px 45px rgba(7, 21, 34, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s ease;
}

.service-kuwaiti::before {
  background-image: url("../images/service-1.jpg");
}

.service-italian::before {
  background-image: url("../images/service-2.jpg");
}

.service-aluminum::before {
  background-image: url("../images/service-3.jpg");
}

.service-folding::before {
  background-image: url("../images/service-4.jpg");
}

.service-lift::before {
  background-image: url("../images/service-5.jpg");
}

.service-accordion::before {
  background-image: url("../images/service-6.jpg");
}

.service-accessories::before {
  background-image: url("../images/service-7.jpg");
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 34, 0.35) 0%,
    rgba(7, 21, 34, 0.42) 28%,
    rgba(7, 21, 34, 0.55) 55%,
    rgba(7, 21, 34, 0.92) 100%
  );
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(7, 21, 34, 0.22);
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 21, 34, 0.28) 0%,
    rgba(7, 21, 34, 0.18) 28%,
    rgba(7, 21, 34, 0.58) 55%,
    rgba(6, 43, 70, 0.96) 100%
  );
}

.service-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border-radius: 14px;
  color: var(--secondary-color);
  font-size: 38px;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: translateY(-5px);
  color: var(--primary-color);
}

.service-content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 30px 28px 28px;
  color: var(--white-color);
  z-index: 2;
}

.service-number {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-content h3 {
  margin: 0 0 10px;
  color: var(--white-color);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
}

.service-content p {
  min-height: 58px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.service-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 12px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--blue-light);
}

.service-link:hover i {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 500px;
  }
}

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

  .services-heading {
    margin-bottom: 35px;
  }

  .services-heading h2 {
    font-size: 30px;
  }

  .services-heading p {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 470px;
  }

  .service-icon {
    width: 88px;
    height: 88px;
    top: 18px;
    right: 18px;
    font-size: 32px;
  }

  .service-content {
    padding: 25px 22px 22px;
  }

  .service-content h3 {
    font-size: 23px;
  }
}
.vision-section {
  position: relative;
  padding: 120px 0;
  background: #f8f9f5;
  overflow: hidden;
  direction: rtl;
}
.vision-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  left: -220px;
  bottom: -250px;
  border-radius: 50%;
  border: 80px solid rgba(20, 55, 75, 0.04);
}
.vision-pattern::before,
.vision-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20, 55, 75, 0.08);
  border-radius: 50%;
}
.vision-pattern::before {
  width: 380px;
  height: 380px;
  top: -20px;
  left: -20px;
}
.vision-pattern::after {
  width: 260px;
  height: 260px;
  top: 40px;
  left: 40px;
}
.vision-content {
  position: relative;
  z-index: 2;
}
.vision-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(20, 55, 75, 0.08);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}
.vision-label i {
  font-size: 15px;
}
.vision-content h2 {
  margin: 0;
  color: #16242d;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 800;
}
.vision-content h2 span {
  color: var(--blue-dark);
}
.vision-line {
  width: 75px;
  height: 4px;
  margin: 25px 0;
  border-radius: 10px;
  background: var(--blue-dark);
}
.vision-content p {
  max-width: 620px;
  margin-bottom: 35px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 2;
}
.vision-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.vision-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(20, 55, 75, 0.08);
  font-size: 19px;
}
.vision-feature h5 {
  margin: 0 0 4px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 800;
}
.vision-feature span {
  color: #7b858b;
  font-size: 13px;
}
.vision-visual {
  position: relative;
  min-height: 550px;
}
.vision-image {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 78%;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(15, 35, 45, 0.16);
}
.vision-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 40, 0.02),
    rgba(10, 30, 40, 0.2)
  );
}
.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vision-visual:hover .vision-image img {
  transform: scale(1.04);
}
.vision-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
  padding: 17px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(15, 35, 45, 0.14);
  backdrop-filter: blur(10px);
}
.vision-card-top {
  top: 75px;
  left: 0;
}
.vision-card-bottom {
  bottom: 70px;
  right: 0;
}
.card-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf3f7;
  color: var(--primary-color);
}
.vision-card strong,
.vision-card span {
  display: block;
}
.vision-card strong {
  margin-bottom: 4px;
  color: #1d2c35;
  font-size: 14px;
}
.vision-card span {
  color: #7a858c;
  font-size: 11px;
}
.vision-circle {
  position: absolute;
  z-index: 4;
  right: -25px;
  top: 250px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: 23px;
  box-shadow: 0 15px 35px rgba(27, 107, 143, 0.3);
  animation: visionFloat 3s ease-in-out infinite;
}
@keyframes visionFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 991px) {
  .vision-section {
    padding: 90px 0;
  }
  .vision-content {
    text-align: center;
  }
  .vision-label {
    justify-content: center;
  }
  .vision-line {
    margin: 22px auto;
  }
  .vision-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .vision-features {
    align-items: center;
  }
  .vision-feature {
    width: 280px;
    text-align: right;
  }
  .vision-visual {
    min-height: 500px;
    margin-top: 30px;
  }
  .vision-image {
    right: 10%;
    width: 80%;
    height: 440px;
  }
}
@media (max-width: 575px) {
  .vision-section {
    padding: 70px 0;
  }
  .vision-content h2 {
    font-size: 34px;
  }
  .vision-content p {
    font-size: 15px;
    line-height: 1.9;
  }
  .vision-visual {
    min-height: 430px;
  }
  .vision-image {
    top: 25px;
    right: 0;
    width: 100%;
    height: 380px;
    border-radius: 22px;
  }
  .vision-card {
    min-width: auto;
    padding: 12px;
    gap: 9px;
  }
  .vision-card-top {
    top: 10px;
    left: 5px;
  }
  .vision-card-bottom {
    bottom: 10px;
    right: 5px;
  }
  .vision-card span {
    display: none;
  }
  .card-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .vision-circle {
    display: none;
  }
}
/* =========================
   SECTION
========================= */

.nice-about-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(77, 184, 242, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(16, 106, 170, 0.07),
            transparent 30%
        ),
        #ffffff;
    overflow: hidden;
}

.nice-about-section .container {
    max-width: var(--container-width);
    position: relative;
    z-index: 3;
}


/* =========================
   BACKGROUND SHAPE
========================= */

.nice-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(16, 106, 170, 0.035);
    pointer-events: none;
}


/* =========================
   CONTENT
========================= */

.nice-content {
    position: relative;
    padding: 20px 20px 20px 30px;
}

.nice-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.nice-badge span {
    width: 34px;
    height: 2px;
    background: var(--primary-color);
    display: block;
}

.nice-title {
    color: var(--secondary-color);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 25px;
}

.nice-title strong {
    color: var(--primary-color);
    font-weight: 800;
}

.nice-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 14px;
    max-width: 720px;
}

.nice-description strong {
    color: var(--primary-color);
    font-weight: 800;
}


/* =========================
   FEATURES
========================= */

.nice-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.nice-feature {
    padding: 20px 15px;
    background: #ffffff;
    border: 1px solid #e4edf4;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nice-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 106, 170, 0.25);
    box-shadow: 0 15px 35px rgba(11, 31, 51, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(16, 106, 170, 0.09);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 15px;
}

.feature-content h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 7px;
}

.feature-content p {
    color: #6d7479;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}


/* =========================
   PRODUCTS
========================= */

.nice-products {
    margin-top: 20px;
}

.nice-products h5 {
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 15px;
}

.nice-products h5 i {
    color: var(--primary-color);
    margin-left: 7px;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.products-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: #f3f8fc;
    border-radius: 30px;
    color: #3f4243;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.products-list span i {
    color: var(--primary-color);
    font-size: 11px;
}

.products-list span:hover {
    background: rgba(16, 106, 170, 0.1);
    color: var(--primary-color);
}


/* =========================
   ACTIONS
========================= */

.nice-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
}

.nice-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nice-phone:hover {
    color: var(--primary-color);
}

.phone-icon {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(16, 106, 170, 0.2);
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-info span {
    color: #777;
    font-size: 11px;
    margin-bottom: 2px;
}

.phone-info strong {
    direction: ltr;
    font-size: 17px;
    font-weight: 800;
}

.nice-whatsapp {
    min-height: 53px;
    padding: 0 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.nice-whatsapp i {
    font-size: 19px;
}

.nice-whatsapp:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================
   IMAGE AREA
========================= */

.nice-visual {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nice-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 605px;
    height: 580px;
    overflow: hidden;

    clip-path: polygon(
        0% 30%,
        38% 17%,
        48% 0%,
        100% 13%,
        100% 100%,
        0% 100%
    );

    z-index: 2;
    background: var(--blue-deep);
}

.nice-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.nice-image-wrapper:hover .nice-main-image {
    transform: scale(1.05);
}


/* =========================
   IMAGE DECORATIONS
========================= */

.nice-image-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.nice-decoration-top {
    width: 210px;
    height: 210px;
    top: 5px;
    right: 20px;
    border: 2px solid rgba(16, 106, 170, 0.15);
    border-radius: 50%;
}

.nice-decoration-bottom {
    width: 250px;
    height: 130px;
    bottom: 5px;
    left: 0;
    border-radius: 0 80px 0 0;
}


/* =========================
   WHATSAPP CONTACT
========================= */

.nice-image-contact {
    position: absolute;
    left: 5px;
    bottom: 50px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;
    padding: 12px 18px 12px 13px;
    border-radius: 50px;

    box-shadow: 0 15px 40px rgba(7, 21, 34, 0.14);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}



.contact-info strong {
    direction: ltr;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 800;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .nice-about-section {
        padding: 90px 0;
    }

    .nice-title {
        font-size: 43px;
    }

    .nice-features {
        grid-template-columns: 1fr;
    }

    .nice-feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .feature-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .nice-visual {
        min-height: 560px;
    }

    .nice-image-wrapper {
        height: 530px;
    }
}


@media (max-width: 991px) {

    .nice-about-section {
        padding: 80px 0;
    }

    .nice-content {
        padding: 0;
    }

    .nice-title {
        font-size: 42px;
    }

    .nice-visual {
        min-height: 580px;
        margin-top: 20px;
    }

    .nice-image-wrapper {
        max-width: 605px;
        height: 560px;
    }

    .nice-image-contact {
        left: 20px;
        bottom: 35px;
    }
}


@media (max-width: 767px) {

    .nice-about-section {
        padding: 65px 0;
    }

    .nice-title {
        font-size: 34px;
        line-height: 1.4;
    }

    .nice-description {
        font-size: 14px;
        line-height: 1.9;
    }

    .nice-features {
        gap: 12px;
        margin-top: 25px;
    }

    .nice-feature {
        padding: 16px;
    }

    .nice-feature .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .products-list span {
        font-size: 11px;
        padding: 7px 10px;
    }

    .nice-actions {
        flex-wrap: wrap;
    }

    .nice-visual {
        min-height: 460px;
    }

    .nice-image-wrapper {
        height: 450px;

        clip-path: polygon(
            0% 25%,
            38% 13%,
            48% 0%,
            100% 10%,
            100% 100%,
            0% 100%
        );
    }

    .nice-decoration-top {
        width: 140px;
        height: 140px;
        right: 5px;
    }

    .nice-decoration-bottom {
        width: 170px;
        height: 90px;
    }

    .nice-image-contact {
        left: 10px;
        bottom: 20px;
        padding: 8px 15px 8px 9px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-info strong {
        font-size: 13px;
    }
}


@media (max-width: 575px) {

    .nice-about-section {
        padding: 50px 0;
    }

    .nice-title {
        font-size: 29px;
    }

    .nice-badge {
        font-size: 13px;
    }

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

    .nice-visual {
        min-height: 390px;
        margin-top: 10px;
    }

    .nice-image-wrapper {
        height: 380px;

        clip-path: polygon(
            0% 22%,
            38% 11%,
            48% 0%,
            100% 8%,
            100% 100%,
            0% 100%
        );
    }

    .nice-image-contact {
        bottom: 15px;
        left: 5px;
    }

    .nice-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .nice-phone,
    .nice-whatsapp {
        width: 100%;
    }

    .nice-phone {
        justify-content: center;
        padding: 8px;
        border: 1px solid #e4edf4;
        border-radius: 35px;
    }

    .nice-whatsapp {
        min-height: 50px;
    }
}
/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section {
    margin-top: 30px;
}

.why-heading {
    margin-bottom: 18px;
}

.why-heading > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.why-heading > span::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.why-heading h3 {
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
}

.why-heading h3 strong {
    color: var(--primary-color);
    font-weight: 800;
}


/* =========================
   WHY GRID
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 14px;

    background: #f8fbfd;
    border: 1px solid #e5eef4;
    border-radius: 14px;

    transition: all 0.3s ease;
}

.why-item:hover {
    background: #ffffff;
    border-color: rgba(16, 106, 170, 0.25);

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(11, 31, 51, 0.07);
}


/* =========================
   ICON
========================= */

.why-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(16, 106, 170, 0.09);
    color: var(--primary-color);

    font-size: 16px;

    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: var(--primary-color);
    color: var(--white-color);

    transform: rotate(-5deg) scale(1.05);
}


/* =========================
   TEXT
========================= */

.why-item-content {
    flex: 1;
}

.why-item-content h4 {
    color: var(--secondary-color);

    font-size: 14px;
    font-weight: 800;

    margin: 0 0 4px;
}

.why-item-content p {
    color: #6d7479;

    font-size: 11.5px;
    line-height: 1.75;

    margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .why-choose-section {
        margin-top: 25px;
    }

    .why-heading h3 {
        font-size: 20px;
    }

    .why-item {
        padding: 13px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 15px;
    }

    .why-item-content h4 {
        font-size: 13px;
    }

    .why-item-content p {
        font-size: 11px;
    }

}
.blog-section {
    padding: 100px 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(77, 184, 242, 0.08), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(16, 106, 170, 0.08), transparent 30%),
        #f7fbfe;
}

.container {
    max-width: var(--container-width);
}

/* =========================
        HEADING
========================= */

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 20px;
    border-radius: 50px;
    background: rgba(16, 106, 170, 0.09);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 7px;
    color: var(--blue-medium);
}

.section-heading h1 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.25;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-heading h1 span {
    color: var(--primary-color);
}

.section-heading p {
    color: #65737d;
    font-size: 17px;
    line-height: 1.9;
    max-width: 700px;
    margin: auto;
}

/* =========================
        FILTER
========================= */

.blog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    border: 1px solid rgba(16, 106, 170, 0.15);
    background: var(--white-color);
    color: var(--secondary-color);
    padding: 9px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* =========================
        BLOG CARD
========================= */

.blog-card {
    height: 100%;
    overflow: hidden;
    background: var(--white-color);
    border: 1px solid rgba(16, 106, 170, 0.09);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(6, 43, 70, 0.07);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(6, 43, 70, 0.14);
}

.blog-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 21, 34, 0.72),
        rgba(7, 21, 34, 0.03) 65%
    );
    pointer-events: none;
}

.blog-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #82909a;
    font-size: 12px;
    margin-bottom: 13px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h2 {
    color: var(--dark-color);
    font-size: 21px;
    line-height: 1.5;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-hover);
}

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

/* =========================
        FILTER ANIMATION
========================= */

.blog-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-item.hide {
    display: none;
}

/* =========================
        EMPTY STATE
========================= */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #71808b;
}

.empty-state i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--dark-color);
}

/* =========================
        CTA
========================= */

.blog-cta {
    margin-top: 70px;
    padding: 35px 45px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--blue-deep), var(--primary-color));
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    left: -80px;
    top: -100px;
}

.blog-cta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.blog-cta h3 {
    position: relative;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 23px;
    font-weight: 800;
}

.cta-btn {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    border-radius: 50px;
    background: var(--white-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
}

.cta-btn:hover {
    color: var(--blue-deep);
    transform: translateY(-3px);
}

/* =========================
        BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(16, 106, 170, 0.25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0;
    }

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

    .blog-image {
        height: 280px;
    }

    .blog-cta {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 65px 0;
    }

    .section-heading h1 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .blog-filter {
        margin-bottom: 25px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .blog-image {
        height: 260px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h2 {
        font-size: 19px;
    }

    .blog-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
    }

    .blog-cta h3 {
        font-size: 19px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .back-to-top {
        left: 15px;
        bottom: 15px;
    }
}

/* =========================
        CONTACT SECTION
========================= */

.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 70px 0;
    display: flex;
    align-items: center;
    overflow: hidden;

    /*
      Replace this URL with your local project image if needed:
      images/contact-bg.jpg
    */
    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 34, 0.82),
            rgba(7, 21, 34, 0.48)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            270deg,
            rgba(7, 21, 34, 0.65),
            transparent 55%
        );
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
}


.contact-info {
    color: var(--white-color);
    padding: 20px 0;
    max-width: 720px;
}

.section-badge {
    display: inline;
    padding: 10px 20px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: rgba(70, 70, 70, 0.72);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.section-badge i {
    font-size: 7px;
    color: var(--primary-color);
}

.contact-info h2 {
    margin: 0 0 25px;
    color: var(--white-color);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -1.5px;
}

.contact-description {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 500;
}

.contact-divider {
    width: 100%;
    height: 1px;
    margin: 50px 0 65px;
    background: rgba(255, 255, 255, 0.15);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.contact-phone span {
    display: block;
    margin-bottom: 3px;
    color: var(--white-color);
    font-size: 17px;
    font-weight: 700;
}

.contact-phone a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 23px;
    font-weight: 800;
    transition: var(--transition);
}

.contact-phone a:hover {
    color: var(--primary-color);
}

.contact-note {
    max-width: 530px;
    margin: 38px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
        FORM CARD
========================= */

.contact-form-card {
    background: var(--white-color);
    border-radius: 30px;
    padding: 55px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.form-heading {
    margin-bottom: 35px;
}

.form-heading h3 {
    margin: 0 0 15px;
    color: var(--dark-color);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.form-heading p {
    max-width: 680px;
    margin: 0;
    color: #858585;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.form-group {
    position: relative;
}

.form-control {
    min-height: 72px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: #f6f4ed;
    color: var(--dark-color);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    transition: var(--transition);
}

.form-control::placeholder {
    color: #8c8c8c;
    opacity: 1;
}

.form-control:focus {
    background: #f8f7f2;
    border-color: rgba(16, 106, 170, 0.35);
}

.message-input {
    min-height: 130px;
    padding-top: 20px;
    resize: vertical;
}

.form-group.invalid .form-control {
    border-color: #dc3545;
}

.error-message {
    display: block;
    min-height: 20px;
    padding: 5px 5px 0;
    color: #dc3545;
    font-size: 11px;
}

.send-btn {
    min-width: 190px;
    min-height: 62px;
    margin-top: 10px;
    padding: 13px 25px;
    border: 0;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn i {
    margin-right: 9px;
    transition: var(--transition);
}

.send-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 208, 0, 0.25);
}

.send-btn:hover i {
    transform: translateX(-4px);
}

/* =========================
        SUCCESS
========================= */

.success-message {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #eaf8ef;
    color: #198754;
    font-size: 13px;
    font-weight: 700;
}

.success-message.show {
    display: flex;
}

.success-message i {
    font-size: 19px;
}



/* =========================
        RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .contact-divider {
        margin-top: 100px;
        margin-bottom: 45px;
    }

    .contact-form-card {
        padding: 45px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-info {
        padding: 0;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .contact-divider {
        margin: 55px 0 35px;
    }

    .contact-form-card {
        border-radius: 25px;
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-divider {
        margin: 45px 0 30px;
    }

    .phone-icon {
        width: 54px;
        height: 54px;
        font-size: 21px;
    }

    .contact-phone span {
        font-size: 14px;
    }

    .contact-phone a {
        font-size: 18px;
    }

    .contact-note {
        font-size: 13px;
    }

    .contact-form-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .form-heading h3 {
        font-size: 32px;
    }

    .form-heading p {
        font-size: 13px;
    }

    .form-control {
        min-height: 62px;
        padding: 0 18px;
        font-size: 13px;
    }

    .message-input {
        min-height: 120px;
    }

    .send-btn {
        width: 100%;
    }

    .floating-buy {
        right: 15px;
        bottom: 15px;
        min-width: 150px;
        height: 52px;
        font-size: 13px;
    }
}
/* =========================
   ALL ARTICLES BUTTON
========================= */

.all-articles-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.all-articles-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 30px;

    background-color: var(--primary-color);
    color: var(--white-color);

    border: 2px solid var(--primary-color);
    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: var(--transition);
}

.all-articles-btn i {
    font-size: 13px;
    transition: var(--transition);
}

.all-articles-btn:hover {
    background-color: transparent;
    color: var(--primary-color);

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(16, 106, 170, 0.18);
}

.all-articles-btn:hover i {
    transform: translateX(-5px);
}
button,
input {
  font-family: inherit;
}

.pvc-article-header {
  position: relative;
  padding: 125px 0 42px;
  background: linear-gradient(
    135deg,
    var(--dark-color),
    var(--blue-deep)
  );
  overflow: hidden;
}

.pvc-article-header::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(77, 184, 242, 0.15);
  border-radius: 50%;
  left: -180px;
  top: -220px;
}

.pvc-article-header::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(77, 184, 242, 0.12);
  border-radius: 50%;
  right: -150px;
  bottom: -220px;
}

.pvc-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.pvc-breadcrumb a {
  color: var(--white-color);
}

.pvc-breadcrumb a:hover {
  color: var(--blue-light);
}

.pvc-breadcrumb i {
  color: var(--blue-light);
  font-size: 11px;
}

.pvc-breadcrumb span {
  color: var(--blue-light);
}

.pvc-article-page {
  padding: 75px 0 100px;
}

.pvc-article-content {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #e7eef4;
  box-shadow: 0 15px 50px rgba(7, 21, 34, 0.05);
}

.pvc-article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pvc-article-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px;
  border-radius: 50px;
  color: var(--primary-color);
  background: rgba(16, 106, 170, 0.09);
  font-size: 13px;
  font-weight: 700;
}

.pvc-article-category i {
  font-size: 14px;
}

.pvc-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7c8b96;
}

.pvc-article-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pvc-article-meta i {
  color: var(--primary-color);
}

.pvc-article-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.6;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.pvc-article-intro {
  color: #687c8c;
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 32px;
  max-width: 800px;
}

.pvc-article-image {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 38px;
  background: #eaf3f9;
}

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

.pvc-article-image:hover img {
  transform: scale(1.03);
}

.pvc-article-body {
  color: #52616d;
  font-size: 16px;
  line-height: 2.2;
}

.pvc-article-body p {
  margin-bottom: 22px;
}

.pvc-article-body h2 {
  color: var(--secondary-color);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.7;
  margin: 42px 0 18px;
  padding-right: 18px;
  border-right: 4px solid var(--primary-color);
}

.pvc-article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 35px;
}

.pvc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #edf4f9;
}

.pvc-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.pvc-gallery-item:hover img {
  transform: scale(1.05);
}

.pvc-gallery-item span {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 14px;
  color: var(--white-color);
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(
    transparent,
    rgba(0, 20, 35, 0.85)
  );
}

.pvc-article-highlight {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #eef7fc;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--primary-color);
  margin: 32px 0;
}

.pvc-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
}

.pvc-article-highlight h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.pvc-article-highlight p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 2;
}

.pvc-article-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pvc-article-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.pvc-article-list i {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 8px;
  font-size: 14px;
}

.pvc-article-conclusion {
  margin-top: 42px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--dark-color),
    var(--blue-deep)
  );
  color: var(--white-color);
}

.pvc-article-conclusion h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pvc-article-conclusion p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 22px;
}

.pvc-article-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 23px;
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
}

.pvc-article-btn:hover {
  color: var(--white-color);
  background: var(--primary-hover);
  transform: translateY(-3px);
}

.pvc-article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid #e8eef3;
}

.pvc-article-share > span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 800;
}

.pvc-share-links {
  display: flex;
  gap: 10px;
}

.pvc-share-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background: #eef6fb;
  font-size: 15px;
}

.pvc-share-links a:hover {
  color: var(--white-color);
  background: var(--primary-color);
  transform: translateY(-3px);
}

.pvc-back-articles {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  margin-top: 28px;
}

.pvc-back-articles:hover {
  color: var(--blue-dark);
  gap: 17px;
}

.pvc-article-sidebar {
  position: sticky;
  top: 25px;
}

.pvc-sidebar-box {
  background: var(--white-color);
  border: 1px solid #e7eef4;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 35px rgba(7, 21, 34, 0.04);
}

.pvc-sidebar-title {
  position: relative;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-right: 15px;
}

.pvc-sidebar-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  border-radius: 10px;
  background: var(--primary-color);
}

.pvc-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #dce7ef;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fbfd;
}

.pvc-search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 13px 15px;
  font-size: 13px;
  color: var(--secondary-color);
}

.pvc-search-form input::placeholder {
  color: #9aa9b4;
}

.pvc-search-form button {
  flex-shrink: 0;
  border: 0;
  background: var(--primary-color);
  color: var(--white-color);
  width: 50px;
  height: 49px;
  cursor: pointer;
  transition: var(--transition);
}

.pvc-search-form button:hover {
  background: var(--primary-hover);
}

.pvc-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pvc-categories li {
  border-bottom: 1px solid #edf2f6;
}

.pvc-categories li:last-child {
  border-bottom: 0;
}

.pvc-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  color: #617583;
  font-size: 14px;
  font-weight: 600;
}

.pvc-categories a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.pvc-categories i {
  font-size: 11px;
  color: var(--primary-color);
}

.pvc-related-post {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f6;
}

.pvc-related-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pvc-related-post:first-of-type {
  padding-top: 0;
}

.pvc-related-post img {
  flex-shrink: 0;
  width: 85px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
  background: #edf4f9;
}

.pvc-related-post h4 {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  margin-bottom: 7px;
  transition: var(--transition);
}

.pvc-related-post:hover h4 {
  color: var(--primary-color);
}

.pvc-related-post span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8c9aa5;
  font-size: 11px;
}

.pvc-related-post span i {
  color: var(--primary-color);
}

.pvc-sidebar-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 32px 25px;
  text-align: center;
  background: linear-gradient(
    145deg,
    var(--secondary-color),
    var(--blue-deep)
  );
}

.pvc-sidebar-cta::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(77, 184, 242, 0.2);
  border-radius: 50%;
  left: -100px;
  top: -100px;
}

.pvc-cta-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: rgba(77, 184, 242, 0.15);
  color: var(--blue-light);
  font-size: 23px;
}

.pvc-sidebar-cta h3 {
  position: relative;
  z-index: 1;
  color: var(--white-color);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pvc-sidebar-cta p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 2;
  margin-bottom: 23px;
}

.pvc-sidebar-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 12px 23px;
  font-size: 13px;
  font-weight: 700;
}

.pvc-sidebar-cta a:hover {
  background: var(--primary-hover);
  color: var(--white-color);
  transform: translateY(-3px);
}

.pvc-back-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 25px rgba(16, 106, 170, 0.25);
}

.pvc-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pvc-back-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

@media (max-width: 1199px) {

  .pvc-article-content {
    padding: 32px;
  }

  .pvc-article-image {
    height: 370px;
  }

  .pvc-article-page {
    padding: 55px 0 80px;
  }

}

@media (max-width: 991px) {

  .pvc-article-header {
    padding: 100px 0 35px;
  }

  .pvc-article-sidebar {
    position: static;
    margin-top: 15px;
  }

  .pvc-article-title {
    font-size: 32px;
  }

  .pvc-article-image {
    height: 400px;
  }

}

@media (max-width: 767px) {

  .pvc-article-page {
    padding: 35px 0 60px;
  }

  .pvc-article-content {
    padding: 23px 18px;
    border-radius: 18px;
  }

  .pvc-article-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .pvc-article-title {
    font-size: 27px;
    line-height: 1.65;
  }

  .pvc-article-intro {
    font-size: 14px;
    line-height: 2;
  }

  .pvc-article-image {
    height: 250px;
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .pvc-article-body {
    font-size: 14px;
    line-height: 2.15;
  }

  .pvc-article-body h2 {
    font-size: 22px;
    margin-top: 32px;
  }

  .pvc-article-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pvc-gallery-item img {
    height: 230px;
  }

  .pvc-article-highlight {
    padding: 18px;
    gap: 12px;
  }

  .pvc-highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .pvc-article-conclusion {
    padding: 23px 18px;
  }

  .pvc-article-conclusion h3 {
    font-size: 20px;
  }

  .pvc-sidebar-box {
    padding: 23px 18px;
  }

  .pvc-article-sidebar {
    margin-top: 5px;
  }

  .pvc-back-top {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

}

@media (max-width: 420px) {

  .pvc-article-meta {
    gap: 12px;
    font-size: 12px;
  }

  .pvc-article-title {
    font-size: 24px;
  }

  .pvc-article-image {
    height: 220px;
  }

}

.floating-contact {
  position: fixed;
  left: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-color);
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 8px 25px rgba(7, 21, 34, 0.22);
  transition: var(--transition);
}

.floating-btn:hover {
  color: var(--white-color);
  transform: translateY(-5px) scale(1.05);
}

.floating-phone {
  background: var(--primary-color);
}

.floating-phone:hover {
  background: var(--primary-hover);
}

.floating-whatsapp {
  background: #25d366;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
}
.floating-instagram {
  background: linear-gradient(45deg, #833AB4, #E4405F, #FCAF45);
  top:-50px;
}
.floating-tooltip {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}


.floating-back-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(7, 21, 34, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 9999;
}

.floating-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-back-top:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
}


@media (max-width: 767px) {

  .floating-contact {
    left: 15px;
    bottom: 18px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .floating-back-top {
    right: 15px;
    bottom: 18px;
    width: 43px;
    height: 43px;
    font-size: 16px;
  }

  .floating-tooltip {
    display: none;
  }

}
.map-contact-section {
  width: 100%;
  padding: 100px 0;
  background: #f5f9fc;
  position: relative;
  overflow: hidden;
}

.map-contact-section .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.map-section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.map-section-title > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 15px;
  border-radius: 50px;
  background: rgba(16, 106, 170, 0.09);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
}

.map-section-title h2 {
  margin: 0 0 12px;
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 800;
}

.map-section-title p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
}

.map-contact-wrapper {
  width: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  background: var(--white-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(7, 21, 34, 0.1);
}

.map-box {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}

.map-box iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 520px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.map-contact-info {
  width: 100%;
  min-height: 520px;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    145deg,
    var(--secondary-color),
    var(--blue-deep)
  );
  position: relative;
  overflow: hidden;
}

.map-contact-info::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  top: -130px;
  left: -100px;
  border: 1px solid rgba(77, 184, 242, 0.15);
  border-radius: 50%;
}

.map-contact-info::after {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -120px;
  right: -100px;
  border: 1px solid rgba(77, 184, 242, 0.12);
  border-radius: 50%;
}

.map-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 15px;
  background: rgba(77, 184, 242, 0.13);
  color: var(--blue-light);
  font-size: 24px;
  position: relative;
  z-index: 2;
}

.map-info-label {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.map-contact-info h3 {
  margin: 0 0 12px;
  color: var(--white-color);
  font-size: 26px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.map-contact-info > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.map-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.map-contact-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue-light);
  font-size: 16px;
}

.map-contact-icon.whatsapp-icon {
  color: #25d366;
}

.map-contact-item span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.map-contact-item a {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

.map-contact-item a:hover {
  color: var(--blue-light);
}

.map-directions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin-top: 25px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.map-directions i {
  color: var(--blue-light);
  transition: var(--transition);
}

.map-directions:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.map-directions:hover i {
  color: var(--white-color);
  transform: translateX(-5px);
}

@media (max-width: 991px) {

  .map-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 400px;
  }

  .map-box iframe {
    min-height: 400px !important;
  }

  .map-contact-info {
    min-height: auto;
    padding: 40px 30px;
  }

}

@media (max-width: 767px) {

  .map-contact-section {
    padding: 65px 0;
  }

  .map-section-title {
    margin-bottom: 30px;
  }

  .map-section-title h2 {
    font-size: 28px;
  }

  .map-section-title p {
    font-size: 13px;
  }

  .map-contact-wrapper {
    border-radius: 18px;
  }

  .map-box {
    height: 320px;
  }

  .map-box iframe {
    min-height: 320px !important;
  }

  .map-contact-info {
    padding: 30px 22px;
  }

  .map-contact-info h3 {
    font-size: 22px;
  }

}

.works-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(var(--overlay-color), var(--overlay-color)),
        url("../images/page-header-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.works-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(77, 184, 242, 0.13);
    top: -220px;
    left: -150px;
    filter: blur(10px);
}

.works-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(16, 106, 170, 0.18);
    bottom: -180px;
    right: -100px;
}

.works-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 180px 0;
}

.works-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-light);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.works-hero-label i {
    font-size: 17px;
}

.works-hero h1 {
    color: var(--white-color);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.works-hero h1 span {
    display: block;
    color: var(--blue-light);
}

.works-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 2;
    margin: 0;
}

.works-section {
    padding: 100px 0;
    background: #f7fafc;
}

.works-section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.works-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.works-section-heading h2 {
    color: var(--secondary-color);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.works-section-heading p {
    color: #6b7884;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}

.works-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.works-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px;
    background: var(--white-color);
    border: 1px solid #e8eef3;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(7, 21, 34, 0.06);
}

.works-tab {
    border: 0;
    outline: 0;
    background: transparent;
    color: #63717e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 11px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.works-tab i {
    font-size: 15px;
}

.works-tab:hover {
    color: var(--primary-color);
    background: #f1f8fc;
}

.works-tab.active {
    color: var(--white-color);
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(16, 106, 170, 0.2);
}

.works-tab.active:hover {
    color: var(--white-color);
    background: var(--primary-hover);
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.work-card {
    background: var(--white-color);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8eef3;
    box-shadow: 0 10px 30px rgba(7, 21, 34, 0.06);
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(7, 21, 34, 0.12);
}

.work-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #e9eef2;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.07);
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 43, 70, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
    visibility: visible;
}

.work-view-btn {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transform: scale(0.7);
    transition: var(--transition);
}

.work-card:hover .work-view-btn {
    transform: scale(1);
}

.work-view-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.work-info {
    padding: 20px 22px 22px;
}

.work-info span {
    display: block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

.work-info h3 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.works-empty {
    display: none;
    text-align: center;
    padding: 70px 20px;
}

.works-empty.show {
    display: block;
}

.works-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf6ff;
    color: var(--primary-color);
    font-size: 30px;
}

.works-empty h3 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.works-empty p {
    color: #71808c;
    margin: 0;
}

.works-cta {
    padding: 0 0 100px;
    background: #f7fafc;
}

.works-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 45px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue-deep), var(--secondary-color));
}

.works-cta-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(77, 184, 242, 0.1);
    top: -200px;
    left: -100px;
}

.works-cta-icon {
    position: relative;
    z-index: 1;
    min-width: 70px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--blue-light);
    font-size: 28px;
}

.works-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.works-cta-content span {
    display: block;
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.works-cta-content h2 {
    color: var(--white-color);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.works-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.8;
}

.works-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 14px 24px;
    border-radius: 11px;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.works-cta-btn:hover {
    color: var(--white-color);
    background: var(--primary-color);
    transform: translateY(-3px);
}

.works-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3, 12, 20, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.works-modal.show {
    opacity: 1;
    visibility: visible;
}

.works-modal-content {
    position: relative;
    max-width: 1100px;
    max-height: 90vh;
}

.works-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.works-modal-caption {
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
}

.works-modal-close {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.works-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.works-back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(16, 106, 170, 0.25);
}

.works-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.works-back-top:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

@media (max-width: 991px) {

    .works-navbar {
        padding: 14px 0;
    }

    .works-nav {
        padding-top: 15px;
    }

    .works-nav-btn {
        margin-top: 12px;
        width: 100%;
    }

    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .works-cta-box {
        flex-wrap: wrap;
    }

    .works-cta-btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .works-hero {
        min-height: 380px;
    }

    .works-hero-content {
        padding: 60px 0;
    }

    .works-hero h1 {
        font-size: 40px;
    }

    .works-hero p {
        font-size: 15px;
    }

    .works-section {
        padding: 70px 0;
    }

    .works-section-heading h2 {
        font-size: 32px;
    }

    .works-tabs {
        width: 100%;
        border-radius: 14px;
    }

    .works-tab {
        flex: 1 1 calc(50% - 10px);
        padding: 12px 10px;
        font-size: 13px;
    }

    .works-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-image {
        height: 300px;
    }

    .works-cta-box {
        padding: 30px 22px;
        text-align: center;
        justify-content: center;
    }

    .works-cta-content {
        flex: auto;
        width: 100%;
    }

    .works-cta-content h2 {
        font-size: 23px;
    }

    .works-modal {
        padding: 15px;
    }

    .works-modal-close {
        top: 15px;
        left: 15px;
    }

}

@media (max-width: 420px) {

    .works-tab {
        flex: 1 1 100%;
    }

    .works-hero h1 {
        font-size: 34px;
    }

}
.footer {

    position: relative;

    overflow: hidden;

    padding: 75px 0 25px;

    color: var(--white-color);
border-radius: 60px 60px 0px 0px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(16, 106, 170, 0.18),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(15, 112, 183, 0.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #071522 0%,
            #0b1f33 55%,
            #062b46 100%
        );
}



.footer::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.035;

    background-image:

        linear-gradient(
            rgba(255,255,255,.8) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.8) 1px,
            transparent 1px
        );

    background-size: 25px 25px;

    pointer-events: none;
}


.footer .container {

    position: relative;

    z-index: 2;

    max-width: var(--container-width);
}



.logo {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--white-color);

    text-decoration: none;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 25px;
}


.logo:hover {
    color: var(--white-color);
}


.logo strong {
    color: var(--blue-light);
}


.logo-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white-color);

    background: var(--primary-color);

    font-size: 23px;

    box-shadow:
        0 10px 30px
        rgba(16, 106, 170, .25);
}



.footer-description {

    max-width: 500px;

    color: #d1dde6;

    font-size: 14px;

    line-height: 2;

    margin-bottom: 12px;
}



.social-icons {

    display: flex;

    gap: 10px;

    margin-top: 25px;
}


.social-icons a {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--border-color);

    color: var(--white-color);

    background: rgba(255,255,255,.025);

    text-decoration: none;

    transition: var(--transition);
}


.social-icons a:hover {

    color: var(--white-color);

    background: var(--primary-color);

    border-color: var(--primary-color);

    transform: translateY(-4px);
}



.footer-column h3 {

    position: relative;

    display: inline-block;

    margin-bottom: 28px;

    font-size: 18px;

    font-weight: 800;
}


.footer-column h3::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: -9px;

    width: 38px;

    height: 3px;

    border-radius: 10px;

    background: var(--blue-light);
}


.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-column ul li {

    margin-bottom: 11px;
}


.footer-column ul li a {

    display: inline-block;

    color: #c5d1da;

    text-decoration: none;

    font-size: 14px;

    transition: var(--transition);
}


.footer-column ul li a:hover {

    color: var(--blue-light);

    transform: translateX(-5px);
}



.newsletter-box {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.newsletter-box input {

    width: 100%;

    height: 58px;

    padding: 0 22px;

    border: 1px solid rgba(255,255,255,.07);

    outline: none;

    border-radius: 30px;

    background: rgba(255,255,255,.10);

    color: var(--white-color);

    font-family: inherit;

    transition: var(--transition);
}


.newsletter-box input::placeholder {

    color: #aab6c0;
}


.newsletter-box input:focus {

    border-color: var(--blue-light);

    box-shadow:
        0 0 0 4px
        rgba(77,184,242,.10);
}


.newsletter-box button {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 30px;

    color: var(--white-color);

    background: var(--primary-color);

    font-family: inherit;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);
}


.newsletter-box button:hover {

    background: var(--primary-hover);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(16,106,170,.25);
}


.newsletter-text {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;

    margin-top: 12px;
}



.contact-bar {

    min-height: 135px;

    margin-top: 55px;

    padding: 28px 40px;

    display: flex;

    align-items: center;

    gap: 35px;

    border-radius: var(--radius-lg);

    border: 1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.075);

    backdrop-filter: blur(10px);
}



.contact-title {

    flex: 1;
}


.contact-title h2 {

    margin-bottom: 7px;

    font-size: 27px;

    font-weight: 800;
}


.contact-title p {

    margin: 0;

    color: #aebbc6;

    font-size: 12px;
}



.contact-item {

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 220px;

    color: var(--white-color);

    text-decoration: none;

    transition: var(--transition);
}


.contact-item:hover {

    color: var(--white-color);

    transform: translateY(-3px);
}


.contact-item + .contact-item {

    padding-right: 35px;

    border-right:
        1px solid var(--border-color);
}


.contact-icon {

    width: 56px;

    height: 56px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white-color);

    background: var(--primary-color);

    font-size: 20px;
}


.contact-info small {

    display: block;

    margin-bottom: 3px;

    color: #9caab5;

    font-size: 11px;
}


.contact-info strong {

    display: block;

    color: var(--white-color);

    font-size: 16px;

    font-weight: 700;
}



.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.10);
}


.footer-bottom p {

    margin: 0;

    color: #8f9ca6;

    font-size: 12px;
}


.footer-bottom a {

    color: #9ca9b3;

    font-size: 12px;

    text-decoration: none;

    transition: var(--transition);
}


.footer-bottom a:hover {

    color: var(--blue-light);
}


.footer-bottom span {

    margin: 0 10px;

    color: #53616c;
}



@media (max-width: 991px) {

    .footer {
        padding-top: 55px;
    }

    .contact-bar {

        flex-wrap: wrap;

        justify-content: center;

        padding: 30px;
    }

    .contact-title {

        flex: 100%;

        text-align: center;

        margin-bottom: 10px;
    }

}



@media (max-width: 767px) {

    .footer {

        padding: 45px 0 20px;
    }


    .logo {

        font-size: 26px;
    }


    .footer-description {

        font-size: 13px;
    }


    .footer-column {

        margin-top: 10px;
    }


    .contact-bar {

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        padding: 25px 20px;

        border-radius: 20px;
    }


    .contact-title {

        width: 100%;

        text-align: right;
    }


    .contact-title h2 {

        font-size: 22px;
    }


    .contact-item {

        width: 100%;
    }


    .contact-item + .contact-item {

        padding-right: 0;

        border-right: 0;
    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

}



@media (max-width: 400px) {

    .contact-icon {

        width: 48px;

        height: 48px;
    }


    .contact-info strong {

        font-size: 14px;
    }

}

.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: 10px;

}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.works-modal-content img,
.works-modal-content video {
    width: 100%;
    max-width: 1000px;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
}

.works-modal-content video {
    display: none;
    background: #000;
}

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

.work-view-btn .fa-play {
    font-size: 18px;
}

.floating-call-wrapper {
    position: fixed;
    bottom: 80px;
    z-index: 9999;
}

.floating-call-wrapper .floating-phone {
    position: relative;
    cursor: pointer;
    border: none;
}

.phone-options {
    position: absolute;
    bottom: 65px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.phone-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 155px;
    padding: 12px 16px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    direction: ltr;
    transition: 0.3s ease;
}

.phone-options a:hover {
    transform: translateX(-5px);
}

.phone-options a i {
    font-size: 15px;
}


/* =========================
   Language Switcher
========================= */

.language-switcher {
    position: relative;
    margin-inline: 15px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    font-family: "Cairo", sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.language-btn .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-switcher.active .fa-chevron-down {
    transform: rotate(180deg);
}


/* Dropdown */

.language-dropdown {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    min-width: 145px;

    padding: 6px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: all 0.25s ease;

    z-index: 9999;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.language-option {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 9px 11px;

    border: none;
    border-radius: 7px;

    background: transparent;

    color: #222;

    font-family: "Cairo", sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.language-option:hover {
    background: #f3f3f3;
}

.language-option .fa-check {
    display: none;
    font-size: 12px;
}

.language-option.active .fa-check {
    display: block;
}


.language-arrow {
  transition: transform 0.3s ease;
}

html[dir="ltr"] .language-arrow {
  transform: rotate(180deg);
}

html[dir="rtl"] .language-arrow {
  transform: rotate(0deg);
}
html[dir="ltr"] .vision-section {
  direction: ltr;
}

html[dir="rtl"] .vision-section {
  direction: rtl;
}

html[dir="ltr"] .vision-content {
  text-align: left;
}

html[dir="rtl"] .vision-content {
  text-align: right;
}

html[dir="ltr"] .vision-label {
  flex-direction: row;
}

html[dir="rtl"] .vision-label {
  flex-direction: row;
}

html[dir="ltr"] .vision-feature {
  direction: ltr;
}

html[dir="rtl"] .vision-feature {
  direction: rtl;
}

html[dir="ltr"] .vision-card {
  direction: ltr;
}

html[dir="rtl"] .vision-card {
  direction: rtl;
}
html[dir="ltr"]  .footer-column h3::after {
right: 49px; 
}
