/* ================= TOP BAR ================= */
.top-bar {
  background: white;
  height: 120px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #080707;
}

/* ================= LOGO ================= */
.logo-box .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-box img {
  height: 75px;
  width: auto;
  margin-right: 15px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color:  #000000;
    font-weight: bold;

}

.logo-textt {
  font-size: 17px;
  color: #000000;
  font-weight: bold;
}

/* ================= RIGHT SIDE ================= */
.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: bold;
}

/* Each item */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3f4b68;
}

/* Icon */
.info-box i {
  font-size: 22px;
  margin-top: 3px;
}

/* Text */
.info-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.info-text {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

/* Hover */
.info-box:hover i {
  color: #161616;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .top-right {
    display: none !important;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
    gap: 12px;
  }

  .logo-box img {
    height: 55px;
  }

}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #3f4b68;
  /* backdrop-filter: blur(4px); */
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 10px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #fff;
}

.navbar-nav .nav-link:hover {
  color: hsl(125, 22%, 10%);
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.15);
  min-width: 260px;
}

.dropdown-item {
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 6px;
}

.dropdown-item:hover {
  background: rgba(255,255,255,.15);
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  margin-top: 6px;
  margin-left: 8px;
}

.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

.toggle-icon span {
  transition: transform .3s ease;
}

.dropdown-submenu.show span {
  transform: rotate(45deg);
}


/* ================= HERO SLIDER ================= */
.hero-slider,
.hero-slider .carousel-item {
  height: 65vh;
  top: -10px;
  position: relative;
 
}

.hero-slider img {
  height: 100%;
  object-fit:cover;
}

.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-slider .carousel-caption {
  bottom: 30%;
  text-align: left;
}

/* ================= WHY UPVC ================= */
.why-upvc {
  padding: 10px 20px;
  max-width: 900px;
  margin: 0 auto; 
  position: relative; 
  top: -142px; 
}

.why-upvc h2 {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 70px;
  
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  align-items: center;
  font-size: x-small;
}

.feature-card {
  border: 2px solid #000;
  padding: 10px 1px;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  transition: .3s;
}

.feature-card i {
  font-size: 18px;
  color: #3f4b68;
}


.feature-card:hover {
  background:  #3f4b68;
  color: #fff;
}

.feature-card:hover i {
  color: #3f4b68; 
    color: #fff;

}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 500px) {
  .feature-row { grid-template-columns: repeat(2,1fr); }
}


/* ================= ABOUT ================= */
.about{
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.about .about-img {
  position: relative;
  margin: 20px 0 0 30px;
  border: 2px solid #3f4b68 ;

}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  background:  #3f4b68;
  border-radius: 20px;
}
.about .about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  background:  #3f4b68;
  border-radius: 10px;
}

.about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 28px;
  font-size: 22px;
  font-weight: bold;
  background:  #3f4b68;
  color: #fff;
  border-radius: 10px;
}
 .about-item {
    margin-top: 35px;

  }


  
/* ================= PRODUCT CARDS ================= */
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 5px  #3f4b68;
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  width: auto;
}

.product-card {
      margin-top: -20px;

}
.overlay{
        margin-top: -95px;

}

/* ================= PROJECT CARDS ================= */
.home-project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.home-project-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.footer {
  background: #f7f7f7;
  border-top: 6px solid #3f4b68 ;
}
 
.footer-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.footer-item h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #3f4b68;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-item p,
.footer-links li a {
  font-size: 14px;
  color: #555;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a:hover {
  color: #3f4b68;
  padding-left: 5px;
  transition: 0.3s;
}

.footer i {
  color: #3f4b68;
  margin-right: 8px;
}
