
/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* prevents layout collapse on zoom-out for desktop */
@media (min-width: 1201px) {
  body, html {
    min-width: 1200px;
  }
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #000e38;
  color: #fff;
  font-size: 0.9vw;
  padding: 0.6vw 12%;
}

.topbar-inner {
  font-size: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 1.5vw;
  align-items: center;
  flex-wrap: wrap;
}

.header-para {
  margin: 0;
}

.header-text {
  color: #fff;
  text-decoration: none;
}

.topbar-right {
  display: flex;
  gap: 0.8vw;
}

.topbar-right a {
  width: 2vw;
  height: 2vw;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: #ffd532;
  color: #000;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 14, 56, 0.85),
      rgba(0, 14, 56, 0.4),
      rgba(0, 14, 56, 0.1));
  z-index: -1;
}







.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.hero-text {
  margin-top: 10vw;
  padding: 0.6vw 10%;
}

.hero-text h1 {
  font-size: 3.2vw;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  width: 38vw;
}

.hero-text .highlight,
.hero-text span {
  color: #ffd532;
}

.hero-text p {
  max-width: 32vw;
  font-size: 1vw;
}









.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
 pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 5, 25, 0.96) 0%,
      rgba(0, 10, 40, 0.90) 30%,
      rgba(0, 14, 56, 0.78) 60%,
      rgba(0, 14, 56, 0.40) 100%
    );
}




































/* ================= HERO BUTTON ================= */
.hero-btn {
  display: inline-flex;
  align-items: center;
  background: #ffd532;
  padding: 4px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.hero-btn .btn-text {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.hero-btn .btn-icon {
  color: #000;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================= HERO FEATURES ================= */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 1vw;
  margin-top: 5vw;
  flex-wrap: wrap;
  margin-right: 0;
  white-space: nowrap;
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-left: 35vw;
  margin-top: 5vw;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 1.1vw;
  color: #fff;
  opacity: 0.9;
}

.hero-feature i,
.hero-feature span {
  color: #ffd532;
  font-size: 1.2vw;
}

/* ================= HERO PAGINATION ================= */
.hero-pagination {
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.hero-dot {
  width: 0.6vw;
  height: 0.6vw;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.hero-dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* ================= HERO ENTRY ANIMATION ================= */
.hero-text small,
.hero-text h1,
.hero-text p,
.hero-btn,
.hero-features {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-text small {
  font-size: 1.5vw;
  animation-delay: 0.2s;
}

.hero-text h1 {
  animation-delay: 0.4s;
}

.hero-text p {
  animation-delay: 0.6s;
}

.hero-btn {
  animation-delay: 0.8s;
}

.hero-features {
  animation-delay: 1s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= NAVBAR ================= */
.hero-navbar {
  position: absolute;
  top: 4vw;
  width: 100%;
  z-index: 1000;
  padding: 0.6vw 12%;
}

.hero-navbar .navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(1vw);
  border-radius: 1vw;
  padding: 0vw 1vw;
}

.navbar-brand img {
  height: 6.5vw;
}

.hero-navbar .nav-link {
  font-size: 1.1vw;
  font-weight: 600;
  color: #000;
}

.hero-navbar .btn-warning {
  padding: 0.4vw 1vw;
  border-radius: 0.6vw;
  font-weight: bold;
}

/* ================= DROPDOWN ================= */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 270px;
  padding: 1vw 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 1vw;
  box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translate(0%, 0);
  width: 22vw;
}

.dropdown-item {
  font-size: 0.95vw;
  padding: 0.8vw 1.5vw;
  color: #222;
  transition: 0.3s;
  font-weight: 600;
}

.dropdown-item:hover {
  background: #f4ffbc;
  color: #000;
  padding-left: 2vw;
}

.nav-link.dropdown-toggle::after {
  transition: 0.3s;
}
.navbar-nav  {
  gap: 1.5vw;
  
}


/* ================= BREADCRUMBS ================= */
.about-hero {
  padding: 12vw 0 6vw;
  background: linear-gradient(rgba(11, 60, 111, 0.8), rgba(0, 0, 0, 0.7)),
    url("../images/contact-hero-bg.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-heading {
  font-size: 3.5vw;
  font-weight: 800;
  margin-bottom: 1vw;
}

.about-heading span {
  color: #ffd532;
}

.breadcrumb {
  font-size: 1.2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  margin: 0;
  font-weight: 500;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #ffd532;
}

.breadcrumb .divider {
  color: #ffd532;
  font-size: 1vw;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ================= ABOUT SECTION ================= */
.about-section {
  position: relative;
  padding: 8vw 0 0 5%;
  background: #fff url("../images/about-background.webp") left bottom no-repeat;
  background-size: 85vw;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/* ================= ABOUT IMAGES ================= */
.about-images {
  position: relative;
  min-height: 32vw;
}

.img-box {
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.12);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-img {
  position: absolute;
  top: -5vw;
  left: 0;
  width: 18vw;
  z-index: 1;
}

.large-img {
  position: absolute;
  bottom: 0;
  left: 8vw;
  width: 26vw;
  border: 0.6vw solid #fff;
  border-radius: 1.5vw;
  z-index: 2;
}

/* ================= EXPERIENCE BADGE ================= */
.experience-badge {
  position: absolute;
  top: -4vw;
  right: 8vw;
  z-index: 3;
  padding: 0.8vw 1.2vw;
  border-radius: 1vw;
  display: flex;
  align-items: center;
  gap: 0.8vw;
}

.experience-badge h2 {
  color: #ffd532;
  font-weight: 800;
  font-size: 2.5vw;
  margin: 0;
}
 

.experience-badge p {
  margin: 0;
  font-size: 0.8vw;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #0d3b66;
}

/* ================= SECTION TEXT SIDE ================= */
.section-tag {
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.5vw;
  font-size: 0.9vw;
  letter-spacing: 0.08vw;
}

.section-title {
  font-size: 2.8vw;
  font-weight: 400;
  margin: 1vw 0 1.2vw;
  line-height: 1.2;
  color: #222;
}

.section-title span {
  font-weight: 700;
  color: #0d3b66;
}

.section-text {
  color: #212121;
  margin-bottom: 1.5vw;
  line-height: 1.6;
  font-size: 1.02vw;
  font-weight: 500;
}

.section-desc {
  font-size: 1.2vw;
  color: #212121;
  max-width: 28vw;
  margin-bottom: 2vw;
  line-height: 1.6;
}

/* ================= WHY LIST ================= */
.why-title {
  font-weight: 700;
  margin-top: 1.5vw;
  color: #0d3b66;
  font-size: 1.2vw;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 1vw 0 2vw;
  color: #000;
  font-weight: 600;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  margin-bottom: 0.8vw;
  font-size: 1vw;
}

.icon {
  font-size: 1.4vw;
  color: #ffd532;
}

/* ================= PS VIEW BUTTON ================= */
.ps-view-btn {
  display: inline-flex;
  align-items: center;
  background: #ffd532;
  padding: 4px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.ps-view-text {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.ps-view-icon {
  padding: 0 15px;
  color: #000;
  transform: rotate(-45deg);
}

.ps-view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================= OUR APPROACH ================= */
.approach-wrapper {
  padding: 2vw 0;
  overflow: hidden;
  background: #f8f9fa;
}

.approach-bg {
  background: url("../images/slider/slider-1.webp") center/cover no-repeat;
  position: relative;
  padding: 5vw 11vw 15vw;
}

.approach-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.approach-bg .container {
  position: relative;
  z-index: 2;
}

.approach-bg h2 {
  color: #fff;
  font-size: 2.8vw;
  font-weight: 700;
  line-height: 1.2;
}

.approach-bg h2 span {
  font-weight: 300;
}

.tag {
  color: #fff;
  font-size: 0.9vw;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4vw;
  margin-bottom: 0.4vw;
}

.approach-box {
  margin-top: -6vw;
  position: relative;
  z-index: 5;
  padding: 0vw 12%;
}

.approach-box .container {
  border-radius: 1.5vw;
  overflow: hidden;
  background: #fff;
  padding: 0;
  box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.1);
  margin-top: -8vw;
}

/* ================= TABS ================= */
.tabs {
  display: flex;
  width: 100%;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 2vw 1vw;
  font-weight: 700;
  font-size: 1vw;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6vw;
}

.tab.active {
  background: #ffd532;
  color: #000;
}

.tab img {
  width: 2vw;
  height: 2vw;
}

.content {
  padding: 1vw 3vw 3vw 3vw;
}

.main-text {
  font-size: 1vw;
  color: rgb(68 68 68 / 70%);
  font-weight: 600;
  margin-bottom: 1.5vw;
  line-height: 1.6;
}

.list {
  list-style: none;
  padding: 0;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  margin-bottom: 1vw;
  font-size: 0.95vw;
  color: #444;
  font-weight: 600;
  line-height: 1.5;
}

.list .icon {
  color: #ffd532;
  flex-shrink: 0;
  margin-top: 0.15vw;
  font-size: 1.2vw;
}

.img-wrap {
  border-radius: 1.5vw;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 20vw;
  display: block;
  object-fit: cover;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1vw);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= OUR PRODUCTS ================= */
.ps-section {
  padding: 2vw 12%;
  background: #f9f9f9;
}

.ps-header {
  display: grid;
  grid-template-columns: 1fr 28vw;
  gap: 3vw;
  margin-bottom: 1vw;
}

.ps-tag {
  font-weight: 700;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
  gap: 0.4vw;
  letter-spacing: 0.08vw;
}

.ps-tag .icon {
  color: #ffd532;
  font-size: 1.2vw;
}

.ps-title {
  font-size: 3vw;
  font-weight: 300;
  margin-top: 0.6vw;
}

.ps-title span {
  font-weight: 700;
}

.ps-desc {
  font-size: 1vw;
  line-height: 1.6;
  color: #666;
}

.ps-wrapper {
  display: grid;
  grid-template-columns: 20vw 1fr 28vw;
  gap: 3vw;
  align-items: center;
}

.ps-tabs {
  border-radius: 1vw;
  overflow: hidden;
  background: #fff;
  border: 0.05vw solid #eee;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.05);
}

.ps-tab {
  padding: 1.2vw 1.5vw;
  font-size: 0.95vw;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 0.05vw solid #eee;
  transition: 0.3s;
}

.ps-tab:last-child {
  border-bottom: none;
}

.ps-tab.active {
  background: #ffd532;
  color: #000;
}

.ps-content {
  display: none;
}

.ps-content.active {
  display: block;
}

.ps-content h4 {
  font-size: 1.8vw;
  font-weight: 400;
  margin-bottom: 0.3vw;
}

.ps-content h4 span {
  font-weight: 700;
}

.ps-content small {
  font-size: 0.9vw;
  color: #777;
  margin-bottom: 1.5vw;
  display: block;
}

.ps-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2vw;
}

.ps-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  margin-bottom: 0.8vw;
  font-size: 1vw;
  color: #444;
}

.ps-feature-list .icon {
  color: #ffd532;
  font-size: 1.2vw;
}

.ps-image img {
  width: 100%;
  border-radius: 1.5vw;
  /* object-fit: cover; */
  height: 20vw;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  border: 0.1vw solid #0d3b66;
  padding: 0.6vw 1.4vw;
  border-radius: 0.5vw;
  color: #0d3b66;
  font-weight: 600;
  font-size: 0.95vw;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 1.2vw;
}

.ps-btn i {
  font-size: 0.9vw;
}

.ps-btn:hover {
  background: #0d3b66;
  color: #fff;
}

/* ================= SERVICES ================= */
.services-section {
  background: radial-gradient(circle at 20% 30%, #2a2a2a, #1a1a1a 60%);
  overflow: hidden;
}

.services-wrapper {
  display: grid;
  grid-template-columns: 52vw 48vw;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.services-left {
  padding: 6vw 4vw 6vw 6vw;
  color: #fff;
}

.services-tag {
  font-size: 0.8vw;
  letter-spacing: 0.1vw;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.8vw;
}

.services-left h2 {
  font-size: 3.2vw;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 2vw;
}

.services-left h2 span {
  font-weight: 700;
}

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

.service-card {
  background: #1f1f1f;
  padding: 1.5vw;
  border-radius: 1.2vw;
  border: 0.08vw solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  min-height: 12vw;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.4);
}

.service-card.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1vw);
  border: 0.08vw solid rgba(255, 255, 255, 0.15);
}

.service-icon img {
  width: 2.2vw;
  margin-bottom: 0.8vw;
}

.service-card h4 {
  font-size: 1vw;
  margin-bottom: 0.6vw;
}

.service-card ul {
  font-size: 0.85vw;
  color: #bbb;
  padding-left: 1vw;
  font-weight: 500;
}

.service-card ul li {
  margin-bottom: 0.3vw;
}

.services-right {
  position: relative;
  height: 100%;
}

.services-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

.services-right::before {
  content: "";
  position: absolute;
  left: -0.1vw;
  top: 0;
  width: 0.15vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

/* ================= CONNECT CIRCLE ================= */
.connect-circle {
  position: absolute;
  top: 51.5%;
  left: 49vw;
  transform: translate(-50%, -50%);
  width: 7vw;
  height: 7vw;
  background: #ffd532;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.connect-circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}

.circle-text text {
  fill: #000;
  font-size: 1.2vw;
  letter-spacing: 0.15vw;
  font-weight: 700;
}

.arrow {
  font-size: 1.6vw;
  font-weight: bold;
  color: #fff;
}

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

  to {
    transform: rotate(360deg);
  }
}

/* ================= SWITCHGEAR SECTION ================= */
.switchgear-section {
  padding: 3vw 0;
  background: #f5f7f9;
  position: relative;
  overflow: hidden;
}

.switchgear-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/about-background.webp") no-repeat center / cover;
  opacity: 0.08;
  z-index: 0;
  height: 30vw;
}

.switchgear-section .container {
  position: relative;
  z-index: 1;
}

.panel-card-link {
  color: #0b3c6f;
  text-decoration: none;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2vw;
  justify-items: center;
}

.panel-card {
  background: #fff;
  width: 11vw;
  height: 12vw;
  border-radius: 1.6vw;
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.panel-card:hover {
  transform: translateY(-0.4vw);
}

.icon-circle {
  width: 4.5vw;
  height: 4.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
}

.icon-circle.yellow {
  background: #ffd532;
}

.icon-circle.blue {
  background: #0b3c6f;
}

.icon-circle img {
  width: 2vw;
  height: 2vw;
}

.panel-card h5 {
  font-size: 1vw;
  color: #0b3c6f;
  font-weight: 600;
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  padding: 2vw 12%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35vw;
  height: 100%;
  background: url("../images/about-background.webp") no-repeat center/contain;
  opacity: 0.04;
  pointer-events: none;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.4vw;
}

.feature-item {
  display: flex;
  gap: 1vw;
  align-items: flex-start;
}

.feature-icon {
  width: 3.2vw;
  height: 3.2vw;
  background: #0b3c6f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0.4vw 1vw rgba(11, 60, 111, 0.25);
}

.feature-icon img {
  width: 1.4vw;
  height: 1.4vw;
}

.feature-text h5 {
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: 0.3vw;
}

.feature-text p {
  font-size: 1vw;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.why-image img {
  width: 100%;
  max-width: 32vw;
  border-radius: 1.5vw;
  object-fit: cover;
  box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.15);
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  position: relative;
  padding: 3vw 0;
  background: url("../images/form-bg-img.webp") no-repeat center/cover;
  color: #fff;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.contact-section .container {
  position: relative;
  z-index: 2;
  width: 90vw;
  margin: auto;
}

.left-title {
  font-size: 2.3vw;
  font-weight: 700;
  margin-bottom: 2vw;
}

.info-card {
  background: #fff;
  color: #222;
  border-radius: 1vw;
  padding: 1vw 1.5vw;
  display: flex;
  gap: 1vw;
  align-items: flex-start;
  margin-bottom: 1.5vw;
  box-shadow: 0 0.6vw 1.5vw rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-0.3vw);
}

.info-icon {
  width: 3vw;
  height: 3vw;
  background: #ffd532;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.3vw;
}

.info-icon i,
.info-icon span {
  font-size: 1.2vw;
  color: #000;
}

.info-text {
  margin-top: 0.3vw;
}

.info-card h6 {
  font-size: 1vw;
  margin-bottom: 0.2vw;
}

.info-card p {
  font-size: 1vw;
  color: #444;
}

.right-title {
  font-size: 2.5vw;
  margin-bottom: 0.7vw;
  font-weight: 400;
}

.right-title span {
  font-weight: 700;
}

.right-desc {
  font-size: 0.9vw;
  max-width: 28vw;
  margin-bottom: 2vw;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  padding: 0.8vw 1vw;
  border-radius: 0.6vw;
  margin-bottom: 1vw;
  font-size: 0.9vw;
  background: #fff;
  color: #333;
}

.contact-form textarea {
  resize: none;
}

/* ================= MESSAGE BUTTON ================= */
.message-btn {
  display: inline-flex;
  align-items: center;
  background: #ffd532;
  padding: 0.25vw;
  border-radius: 0.5vw;
  text-decoration: none;
  margin-top: 1vw;
  transition: 0.3s ease;
}

.message-text-1 {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.6vw 1.4vw;
  border-radius: 0.3vw;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
}

.message-icon-1 {
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.8vw;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.message-btn:hover {
  transform: translateY(-0.2vw);
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.2);
}

.message-btn:hover .message-icon-1 {
  transform: rotate(-45deg) translateX(0.3vw);
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 4vw 0 0;
  background: #fff;
}

.cta-box {
  width: 85vw;
  margin: 3vw auto;
  background: #0b3c6f;
  border-radius: 2.5vw;
  padding: 2.5vw 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 18vw;
  box-shadow: 0 1.5vw 3vw rgba(11, 60, 111, 0.2);
  overflow: visible;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 2vw;
  left: 3vw;
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.cta-content {
  color: #fff;
  max-width: 35vw;
}

.cta-content h2 {
  font-size: 2.4vw;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5vw;
}

.cta-content h2 strong {
  font-weight: 700;
}

.cta-image {
  position: absolute;
  right: -8vw;
  bottom: 0;
  z-index: 2;
}

.cta-image img {
  height: 26vw;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.5vw 2vw rgba(0, 0, 0, 0.3));
}

/* ================= CONTACT BUTTON ================= */
.contact-btn-1 {
  display: inline-flex;
  align-items: center;
  background: #ffd532;
  padding: 0.25vw;
  border-radius: 0.5vw;
  text-decoration: none;
  margin-top: 1vw;
  transition: 0.3s ease;
}

.contact-text-1 {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 0.6vw 1.4vw;
  border-radius: 0.3vw;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
}

.contact-icon-1 {
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.8vw;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.contact-btn-1:hover {
  transform: translateY(-0.2vw);
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.2);
}

.contact-btn-1:hover .contact-icon-1 {
  transform: rotate(-45deg) translateX(0.3vw);
}

/* ================= RESPONSIVE — 960px ================= */
@media (max-width: 960px) {

  /* TOP BAR */
  .top-bar {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: auto;
    height: auto;
    padding: 28vw 0 12vw;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-text {
    padding: 5vw 6%;
    margin-top: 0;
    text-align: left;
  }

  .hero-text small {
    display: block;
    font-size: 3.8vw;
    margin-bottom: 3vw;
    letter-spacing: 0.3vw;
    color: #ffd532;
  }

  .hero-text h1 {
    font-size: 9vw;
    line-height: 1.2;
    margin-bottom: 4vw;
  }

  .hero-text p {
    font-size: 3.8vw;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 5vw;
  }

  /* HERO BUTTON */
  .hero-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 3px;
    border-radius: 6px;
    margin-top: 0;
    width: auto;
    gap: 0;
  }

  .hero-btn .btn-text {
    font-size: 3.2vw;
    padding: 8px 16px;
  }

  .hero-btn .btn-icon {
    padding: 0 12px;
    font-size: 2.5vw;
  }

  .hero-btn:active {
    transform: scale(0.98);
  }

  /* HERO FEATURES */
  .hero-features {
    width: 100%;
    margin: 7vw 0 0;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
  }

  .hero-feature {
    display: flex;
    align-items: center;
    gap: 3vw;
    font-size: 3.8vw;
    line-height: 1.5;
    margin: 0;
  }

  .hero-feature i,
  .hero-feature span {
    font-size: 5vw !important;
    min-width: 5vw;
    flex-shrink: 0;
  }

  /* HERO PAGINATION */
  .hero-pagination {
    right: 3vw;
    gap: 2vw;
  }

  .hero-dot {
    width: 2vw;
    height: 2vw;
  }

  /* NAVBAR */
  .hero-navbar {
    top: 3vw;
    padding: 0 4%;
  }

  .hero-navbar .navbar {
    border-radius: 4vw;
    padding: 2vw 4vw 4vw;
  }

  .navbar-brand img {
    height: 17vw;
  }

  .hero-navbar .nav-link {
    font-size: 3vw;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    margin-top: 4vw;
    padding: 5vw;
    border-radius: 4vw;
    box-shadow: 0 2vw 5vw rgba(0, 0, 0, 0.15);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 3vw !important;
  }

  .nav-link {
    font-size: 4vw;
    font-weight: 600;
    color: #000;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 2vw;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    transform: none;
    width: 100%;
  }

  .dropdown-item {
    font-size: 2.5vw;
    padding: 2.5vw 4vw;
    color: #000;
  }

  .dropdown-item:hover {
    background: transparent;
    color: #ffd532;
    padding-left: 4vw;
  }

  .btn-warning {
    width: fit-content;
    padding: 3vw 5vw;
    border-radius: 2vw;
    font-size: 3.5vw;
    margin-top: 3vw;
  }

  /* BREADCRUMBS */
  .about-hero {
    padding: 34vw 6vw 16vw;
  }

  .about-heading {
    font-size: 10vw;
    line-height: 1.2;
  }

  .breadcrumb {
    font-size: 4vw;
    flex-wrap: wrap;
    gap: 2vw;
  }

  /* ABOUT SECTION */
  .about-section {
    padding: 12vw 6%;
    background: #fff;
  }

  .breadcrumb .divider {

    font-size: 3vw;
  }

  .section-tag {
    padding-top: 2vw;
    font-size: 3.5vw;
    gap: 2vw;
    margin-bottom: 2vw;
    justify-content: center;
  }

  .ps-tag {
    font-size: 3.8vw;
    gap: 1.8vw;
    letter-spacing: 0.25vw;
  }

  .ps-tag .icon {
    font-size: 4vw;
  }

  .section-title {
    padding: 0 4%;
    font-size: 8vw;
    line-height: 1.3;
    margin-bottom: 3vw;
  }

  .section-text {
    font-size: 3.8vw;
    line-height: 1.8;
    margin-bottom: 4vw;
  }

  .section-desc {
    font-size: 3.5vw;
    max-width: 100%;
    margin-bottom: 5vw;
  }

  /* ABOUT IMAGES */
  .about-images {
    min-height: auto;
  }

  .small-img,
  .large-img {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
  }

  .large-img {
    margin-top: 5vw;
  }

  .img-box {
    border-radius: 4vw;
  }

  /* EXPERIENCE BADGE */
  .experience-badge {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-bottom: 5vw;
  }

  .experience-badge h2 {
    font-size: 8vw;
  }

  .experience-badge p {
    font-size: 3vw;
  }

  /* WHY LIST */
  .why-title {
    font-size: 4vw;
    text-align: center;
  }

  .why-item {
    font-size: 3.5vw;
    gap: 2vw;
  }

  .why-item .icon,
  .icon {
    font-size: 4vw;
  }

  /* APPROACH */
  .approach-bg {
    padding: 12vw 6% 20vw;
  }

  .approach-bg h2 {
    font-size: 7vw;
    text-align: center;
  }

  .tag {
    font-size: 3.5vw;
    justify-content: center;
    gap: 2vw;
  }

  .approach-box {
    margin-top: -60px;
    padding: 0 6%;
  }

  .tabs {
    flex-direction: column;
  }

  .tab {
    padding: 5vw;
    font-size: 3.5vw;
  }

  .tab img {
    width: 10vw;
    height: 10vw;
  }

  .content {
    padding: 6vw;
  }

  .main-text,
  .list li {
    font-size: 3.5vw;
  }

  .list li {
    gap: 2vw;
    margin-bottom: 2vw;
  }

  .list .icon {
    font-size: 4vw;
    margin-top: 0.8vw;
  }

  .img-wrap img {
    height: 45vw;
    border-radius: 4vw;
  }

  /* PRODUCTS */
  .ps-section {
    padding: 2vw 6%;
  }

  .ps-header,
  .ps-wrapper {
    grid-template-columns: 1fr;
  }

  .ps-title {
    font-size: 8vw;
    text-align: center;
  }

  .ps-desc {
    font-size: 3.8vw;
    text-align: center;
  }

  .ps-tabs {
    min-width: 76vw;
  }

  .ps-tab {
    font-size: 3.5vw;
    padding: 4vw;
  }

  .ps-content h4 {
    font-size: 6vw;
    text-align: left;
    line-height: 1.3;
  }

  .ps-content small {
    font-size: 3vw;
    text-align: left;
    display: block;
  }

  .ps-feature-list {
    margin-bottom: 4vw;
  }

  .ps-feature-list li {
    font-size: 3.5vw;
  }

  .ps-feature-list li .icon {
    font-size: 3.5vw;
  }

  .ps-image img {
    height: auto;
    border-radius: 4vw;
  }

  /* PS VIEW BUTTON */
  .ps-view-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 3px;
    border-radius: 6px;
    margin-top: 6vw;
    width: auto;
  }

  .ps-view-text {
    font-size: 3.2vw;
    padding: 8px 16px;
  }

  .ps-view-icon {
    padding: 0 12px;
    font-size: 2.5vw;
  }

  /* SERVICES */
  .services-section {
    padding: 3vw 0;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .services-left {
    padding: 8vw 6%;
  }

  .services-left h2 {
    font-size: 8vw;
  }

  .services-tag {
    font-size: 3vw;
    gap: 2vw;
  }

  .services-left .icon {
    font-size: 4vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .service-card {
    padding: 6vw;
    border-radius: 5vw;
    min-height: auto;
  }

  .service-card h4 {
    font-size: 4.5vw;
  }

  .service-card ul {
    font-size: 3.5vw;
    padding-left: 4vw;
  }

  .service-icon img {
    width: 10vw;
  }

  .services-right {
    height: 70vw;
  }

  .connect-circle {
    display: none;
  }

  /* SWITCHGEAR */
  .switchgear-section {
    padding: 10vw 6%;
  }

  .panel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }

  .panel-card {
    width: 40vw;
    height: 40vw;
    border-radius: 5vw;
    padding: 4vw;
  }

  .icon-circle {
    width: 14vw;
    height: 14vw;
  }

  .icon-circle img {
    width: 6vw;
    height: 6vw;
  }

  .panel-card h5 {
    font-size: 4vw;
    text-align: center;
  }

  /* WHY CHOOSE */
  .why-choose-section {
    padding: 3vw 6%;
  }

  .feature-item {
    gap: 4vw;
  }

  .feature-icon {
    width: 12vw;
    height: 12vw;
  }

  .feature-icon img {
    width: 5vw;
    height: 5vw;
  }

  .feature-text h5 {
    font-size: 4vw;
  }

  .feature-text p {
    font-size: 3.5vw;
  }

  .why-image img {
    max-width: 100%;
    border-radius: 4vw;
    margin-top: 6vw;
  }

  /* CONTACT */
  .contact-section {
    padding: 12vw 0;
  }

  .row {
    padding: 0 4%;
    flex-direction: column;
  }

  .left-title,
  .right-title {
    font-size: 7vw;
    margin-bottom: 4vw;
  }

  .right-desc {
    font-size: 3.5vw;
    max-width: 100%;
  }

  .info-card {
    margin-top: 3vw;
    padding: 4vw;
    border-radius: 4vw;
    gap: 4vw;
    margin-bottom: 4vw;
  }

  .info-icon {
    width: 12vw;
    height: 12vw;
    min-width: 12vw;
  }

  .info-icon i,
  .info-icon span {
    font-size: 4vw;
  }

  .info-card h6 {
    font-size: 4vw;
  }

  .info-card p {
    font-size: 3.5vw;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 3.5vw 4vw;
    border-radius: 2.5vw;
    margin-bottom: 3vw;
    font-size: 3.5vw;
    font-family: inherit;
    line-height: 1.5;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 25vw;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border: 2px solid #ffd532;
  }

  /* MESSAGE BUTTON */
  .message-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 3px;
    border-radius: 6px;
    margin-top: 5vw;
    width: auto;
  }

  .message-text-1 {
    font-size: 3.2vw;
    padding: 8px 16px;
    border-radius: 4px;
  }

  .message-icon-1 {
    width: auto;
    height: auto;
    font-size: 2.5vw;
    padding: 0 12px;
  }

  .message-btn:active {
    transform: scale(0.98);
  }

  /* CONTACT BUTTON */
  .contact-btn-1 {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 3px;
    border-radius: 6px;
    margin-top: 5vw;
    width: auto;
  }

  .contact-text-1 {
    font-size: 3.2vw;
    padding: 8px 16px;
    border-radius: 4px;
  }

  .contact-icon-1 {
    width: auto;
    height: auto;
    font-size: 2.5vw;
    padding: 0 12px;
  }

  .contact-btn-1:active {
    transform: scale(0.98);
  }

  /* CTA */
  .cta-box {
    flex-direction: column;
    align-items: center;
    padding: 8vw 6vw 0;
    border-radius: 6vw;
    text-align: center;
    min-height: auto;
    gap: 5vw;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 6vw;
  }

  .cta-image {
    position: relative;
    right: 0;
    width: 100%;
    /* margin-top: 5vw; */
  }

  .cta-image img {
    height: 50vw;
    margin-top: 5vw;
    margin-left: 15vw;
  }
}

/* ================= EXTRA SMALL — 576px ================= */
@media (max-width: 576px) {

  .hero-btn,
  .ps-view-btn,
  .message-btn,
  .contact-btn-1 {
    /* width: 100%; */
    width: 60%;
    justify-content: space-between;
  }

  .hero-btn .btn-text,
  .ps-view-text,
  .message-text-1,
  .contact-text-1 {
    flex-grow: 1;
    text-align: center;
  }

  .hero-btn .btn-icon,
  .message-icon-1,
  .contact-icon-1 {
    padding: 0 16px;
    font-size: 3vw;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 4vw 5vw;
    font-size: 4vw;
    min-height: 12vw;
  }

  .contact-form textarea {
    min-height: 30vw;
  }

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

  .panel-card {
    width: 100%;
    height: auto;
    min-height: 40vw;
  }

  .cta-image img {
    height: 60vw;
  }

  .why-image img {
    max-width: 95vw;
  }
}

/* FIX: Navbar won't wrap when zoomed out */
.navbar-fixed-width {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8vw;
  padding: 0.4vw 0.8vw;
  width: 100%;
}
 
.navbar-brand-fixed {
  flex-shrink: 0;
  padding: 0;
  margin-right: 1vw;
}
 
.navbar-brand-fixed img {
    height: 6.5vw;
    width: auto;
    object-fit: contain;
    display: block;
}
.navbar-menu-fixed {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.6vw;
  margin: 0;
  padding: 0;
  flex: 1;
}

 
/* .navbar-nav-fixed .nav-link:hover {
  color: #ffd532;
} */

/* MOBILE FIXES */
@media (max-width: 960px) {
  .hero-features {
    margin-left: 0;
    flex-wrap: wrap;
    white-space: normal;
    gap: 4vw;
  }
  
  .hero-text h1 {
    width: 90%;
    font-size: 8vw;
  }
  
  .hero-text p {
    max-width: 90%;
    font-size: 4vw;
  }
  
  .top-bar {
    padding: 2vw 5%;
    font-size: 3vw;
  }
  
  .topbar-left {
    gap: 3vw;
    justify-content: center;
  }
  
  .hero-navbar {
    padding: 0;
    top: 0;
  }
}

 
.btn-profile {
  white-space: nowrap;
  padding: 0.4vw 1vw !important;
  flex-shrink: 0;
  font-size: 1.1vw;
}
 
/* Dropdown fix */
.dropdown-menu {
  min-width: 200px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
 
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
 
.dropdown-item {
  font-size: 0.9vw;
  padding: 0.6vw 1vw;
  white-space: nowrap;
}
 
/* ================= 1200px Breakpoint (Heavy Zoom Out) ================= */
@media (max-width: 1200px) {
  .navbar-fixed-width {
    padding: 0.3vw 0.6vw;
    gap: 0.4vw;
  }
 
  .navbar-brand-fixed img {
    height: 5.5vw;
    max-height: 60px;
  }
 
  .navbar-nav-fixed {
    gap: 0.5vw;
  }
 
  .navbar-nav-fixed .nav-link {
    font-size: 0.95vw;
    padding: 0.3vw 0.4vw !important;
  }
 
  .btn-profile {
    padding: 0.3vw 0.8vw !important;
    font-size: vw;
  }
}
 
/* ================= 960px Breakpoint (Mobile) ================= */
@media (max-width: 960px) {
  .navbar-fixed-width {
    padding: 1.5vw 2vw;
    flex-wrap: wrap;
  }
 
  .navbar-brand-fixed img {
    height: auto;
    max-height: 17vw;
    /* width: 50vw; */
  }
 
  .navbar-menu-fixed {
    width: 100%;
    flex-direction: column;
    margin-top: 2vw;
    display: none !important;
  }
 
  .navbar-menu-fixed.show {
    display: flex !important;
            padding: 0vw 0 4vw 0;
  }
 
  .navbar-nav-fixed {
    flex-direction: column;
    gap: 2vw;
    width: 100%;
  }
 
  .navbar-nav-fixed .nav-item {
    width: 100%;
  }
 
  .navbar-nav-fixed .nav-link {
    width: 50vw;
    font-size: 3.5vw;
    padding: 2vw 4vw !important;
  }
 
  .btn-profile {
    width: 100%;
    text-align: center;
    padding: 2.5vw 4vw !important;
    font-size: 3vw;
  }
 
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    border: none;
  }
 
  .dropdown-item {
    font-size: 3.2vw;
    padding: 1.5vw 5vw;
  }
}/* ============================================================
   ZOOM-OUT STABILITY FIX
   Bootstrap's fixed pixel container max-widths break vw-based layouts 
   when zooming out (because vw grows but the container doesn't).
   By forcing the container to a vw-based width, the entire layout 
   scales perfectly and proportionally at all zoom levels.
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    max-width: 80vw !important;
  }
}

/* Hero: allow overflow so the absolute navbar is never clipped */
.hero {
  overflow: visible;
}

/* Navbar: never wrap on desktop — scoped to avoid breaking mobile collapse */
@media (min-width: 961px) {

  .hero-navbar .navbar {
    flex-wrap: nowrap;
  }

  .hero-navbar .navbar-collapse {
    flex-wrap: nowrap !important;
    display: flex !important;
    align-items: center;
  }

  .hero-navbar .navbar-nav {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }

  .hero-navbar .nav-link,
  .hero-navbar .nav-item,
  .navbar-nav-fixed .nav-link,
  .navbar-nav-fixed .nav-item {
    white-space: nowrap !important;
  }
/* 
  .hero-navbar .btn-warning,
  .btn-profile {

} */
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 0.25vw;
    border-radius: 0.5vw;
    text-decoration: none;
    margin-top: 1vw;
    transition: 0.3s ease;
}

.hero-btn .btn-text {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.6vw 1.4vw;
    border-radius: 0.3vw;
    font-size: 0.95vw;
    display: flex;
    align-items: center;
}

.hero-btn .btn-icon {
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8vw;
    transform: rotate(-45deg);
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-0.2vw);
    box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.2);
}

.hero-btn:hover .btn-icon {
    transform: rotate(-45deg) translateX(0.3vw);
}


.ps-view-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd532;
    padding: 0.25vw;
    border-radius: 0.5vw;
    text-decoration: none;
    transition: 0.3s ease;
}

.ps-view-text {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.6vw 1.4vw;
    border-radius: 0.3vw;
    font-size: 0.9vw;
    display: flex;
    align-items: center;
}

.ps-view-icon {
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8vw;
    transform: rotate(-45deg);
    transition: 0.3s;
}

.ps-view-btn:hover {
    transform: translateY(-0.2vw);
    box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.2);
}

.ps-view-btn:hover .ps-view-icon {
    transform: rotate(-45deg) translateX(0.3vw);
}

.col-lg-6 p {
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 768px) {
  .col-lg-6 p {
    font-size: 16px;
  }
  
   .material-symbols-outlined {
        font-size: 5vw !important;
    }
  /* NAVBAR */
  .hero-navbar {
    top: 5vw;
    padding: 0 5%;
  }

  .hero-navbar .navbar {
    padding: 2vw 4vw;
    border-radius: 4vw;
  }

  .navbar-brand img {
    height: 14vw;
  }

  .hero-navbar .nav-link {
    font-size: 4vw;
    padding: 2vw 0;
  }

  .hero-navbar .btn-warning {
    width: 60%;
    text-align: center;
    margin-top: 3vw;
    font-size: 3.5vw;
    padding: 3vw;
  }

  .navbar-collapse {
    margin-top: 4vw;
  }
}




