html{
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
html,
body {
  margin: 0;  
  font-family: Arial;
}
body{
    padding-top:80px;
}
#navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  background: white;
  z-index: 1000;
}
#navbar .home{
    font-size: 1.75rem;
    color: #337ab7;
    text-decoration: none;
    font-weight:bold;
    padding-left: 0.5rem;
}
#navbar .links{
    display:flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}
#navbar .links a{
    text-decoration: none;
    list-style: none;
    color: #337ab7;
    font-weight: 900;
    text-transform: none;
    background-color: rgba(0, 0, 0, 0);  
    font-size:1.25rem;  
}
#navbar .links .contact-btn, .contact-btn{
    background-color:#d9534f;
    border: none;
    border-radius: 0.5rem; 
    color: white; 
    padding: 1rem 1rem; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 1rem; 
    margin: 4px 2px; 
    cursor: pointer;    
    transition: all 0.25s ease-in;
}
#navbar .links .contact-btn:hover, .contact-btn:hover{
    filter: brightness(120%);    
}
.comp-1 {
  width: 100vw;
  height: 420px;
  background-image: url("/img/cables.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:1rem;
}

.comp-1 .comp-1-box {
  background: rgba(128, 128, 128, 0.712);
  padding: 5rem 10rem;
  border-radius: 6px;
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
.comp-2{
    display:flex; 
    flex-direction: column; 
    align-items: center; 
    margin: 5rem 0; 
    gap: 1rem;
}
.h-1{
    font-size: 2rem; 
    font-weight: bold;
}
.h-2{
    font-size: 1.5rem; 
    font-weight: bold;    
}
.comp-3{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5rem 0;
    color:white;
}
.comp-3 img{
    max-width:30%;
    border: 0.5rem solid #d9534f;
    border-radius: 5%;
}
.comp-3 > div ul li{
    font-size: 1.5rem;
}
.comp-3 > div ul {
  width: fit-content;
  margin: 0 auto;
}
.comp-4{
    display:flex;
    justify-content: space-evenly;
    padding: 2rem 0;
}
.comp-4 ul li{
    list-style: none;    
    margin-top: 0.25rem;
    font-weight: bold;    
}
.comp-4 ul{
    left:0;
    padding:0;
}
.comp-4 ul li a{
    text-decoration: none;
}
.comp-4 div img{
    width:3.5rem;
      transition: transform 0.35s ease, filter 0.35s ease;
}
.comp-4 div img:hover{
    width:3.5rem;
    transform: translateY(-5px);
    box-shadow: rgba(0,0,0,0.18);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  
  justify-content: center;  
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;  
}

.gallery-item img {
  width: 100%;  
  object-fit: cover;
  display: block;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.9);

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 179, 71, 0.92);
  color: white;

  font-size: 1.75rem;
  font-weight: bold;

  box-shadow:
    0 4px 18px rgba(0,0,0,0.35),
    0 0 14px rgba(255,179,71,0.45);

  opacity: 0;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);

  background: #ffb347;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 3rem;
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}
.gu{
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.gu::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 110%;
  height: 4px;  
      border-radius: 999px;

    box-shadow:
        0 0 8px rgba(255, 179, 71, 0.45),
        0 0 12px rgba(217, 83, 79, 0.35);
}
.gu::after{
    background: linear-gradient(to right, #d9534f, #ffb347);
}
.footer{
    display:flex;
    justify-content: center;
    background:#19aa65;
    color:white;
    font-weight: bold;
    padding: 2rem 0;
}