@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --background: #020202;
  --foreground: #ffffff;
}

body{
      color: var(--foreground);
  background: var(--background);
    padding: 0;
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-style: normal;

}







::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 4px;
  background-color: #000000;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(112, 112, 112);
}


.root{

    width: 100%;

    display: flex;
    flex-direction: column;
    
}
.navBar{
    box-sizing: border-box;
    padding-left: 3em;
    padding-right: 3em;
    column-gap: 3em;
    width: 100%;
    padding-top: 2em;
    height: fit-content;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.navBar a:nth-child(1){
    margin-right: auto;
}
.navBar a{
    text-decoration: none;
    color:white;
}
.heroSection{
    width: 100%;
    height: 100vh;
    background-color: rgb(3, 3, 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heroSection h1 {
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1;
    font-size: 12em;
    font-weight: 600;

    /* gradient text */
background: #FF6100;
background: linear-gradient(260deg, rgba(255, 97, 0, 1) 10%, rgba(0, 200, 255, 1) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* for non-webkit browsers, you can add: */
    background-clip: text;
    color: transparent;
}
.heroSection p{
    margin: 0;
    margin-top: 1em;
    color:white;
}

.heroSection button {
    position: relative;
    margin-top: 2em;
    font-size: 1em;
    padding: 1em 3em;
    border-radius: 1000px;
    color: white;
    background: transparent;
    outline: none;
    border: none; /* we'll fake the border */
    z-index: 1;
    cursor: pointer;
}

/* animated gradient border layer */
.heroSection button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* thickness of the border */
    border-radius: inherit;
    background: linear-gradient(-45deg, #FF6100, #00C8FF, #FF6100, #00C8FF);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

/* optional: hover effect */
.heroSection button:hover::before {
    animation-duration: 2s;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (max-width:786px){
    .heroSection h1 {
        font-size: 3.5em;
    }
    .heroSection p{
        font-size: 1em;
        text-align: center;
    }
}

.ourServicesSection{
    position: relative;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: calc(100vw/6) calc(262vh/8);

    color:white;
    display: grid;
 grid-template-columns: repeat(6, 1fr); /* 5 equal columns for the 5 services */
  grid-template-rows: 2fr repeat(6, 1fr); /* first row for the title, second row for the boxes */
    width: 100%;
    height: 262vh;
}

.ourServicesSection img{
    z-index: -1;
    position: absolute;
    object-fit: cover;
    width: 100%;


}

.servicesServiceContainer{


    backdrop-filter: blur(10px);
    margin: 1em;
    padding: 1em;
    border:1px solid white;
    
}

.servicesServiceContainer h2{
    color:#FF6100;
}

.ourServicesSection h1{
    margin: 0;
    font-family: "Bebas Neue";
    font-weight: 400;
    font-size: 12.5em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color:#FF6100;
grid-column: 1 / -1; 
  grid-row: 1;

}

.lan{
    grid-column: 2 / 4;
    grid-row: 2 / 4;

}
.wan{
    grid-column: 4/6;
    grid-row: 3/5;

}
.voip{
    grid-column: 2/4;
    grid-row: 4/6;

}
.wireless{
    grid-column: 4/6;
    grid-row: 5;

}
.ai{
    grid-column: 3/5;
    grid-row: 6;

}


@media (max-width:786px){
    .ourServicesSection h1{
        margin-top: 5vh;
        font-size: 3.5em;
    }

    .ourServicesSection {

        display: flex;
        flex-direction: column;
        height: fit-content;
        row-gap: 10vh;
        width: 100%;
        padding-bottom: 10vh;

    }

    .ourServicesSection img{
        height: 100%;

        width: 100%;
    }

    .servicesServiceContainer {
        margin: 1em 0;
        width: auto;
    }

    .lan, .wan, .voip, .wireless, .ai {
        grid-column: auto;
        grid-row: auto;
    }
}





.manufacturerSection{
    margin: 0;
    margin-top: -1vh;
    width: 100%;
    height: 100vh;
    background-color: #040404;
    color:white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vh;


}
.manufacturerSection h1{
    font-size: 5em;
    font-weight: 400;
    font-family: 'Bebas Neue';
}
.manufacturerRow{
    display: flex;
    column-gap: 2em;
}
.manufacturer p{
    text-align: center;
}
.manufacturer{
    width: 7vw;
}
.manufacturer img{
    width: 100%;
    height: auto;
    object-fit:cover;
}


@media (max-width:786px){
    .manufacturerSection{
        height: fit-content;
    }
}

.ourVisionSection{
    width: 100%;
    height: 300vh;
    row-gap: 40vh;
    background-color: #040404;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color:white;
    background-color: #FF6100;
}
.visionSectionSubcontainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ourVisionSection h1{
    margin: 0;
    font-family: 'Poppins';
    font-size: 6em;
    font-weight: 600;
}

.ourVisionSection p{

    margin: 0;
    text-align: justify;
    font-family: 'Poppins';
    font-size: 1em;
    width: 60%;
    font-weight: 400;
}






.clientsSection{
    margin: 0;
    margin-top: -1vh;
    width: 100%;
    height: 100vh;
    background-color: #040404;
    color:white;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.clientsSection h1{
    font-size: 6em;
    font-weight: 400;
    font-family: 'Bebas Neue';
}
.clientsRow{
    display: flex;
    column-gap: 2em;
}
.client p{
    text-align: center;
}

.client{
    width: 7vw;
}
.client img{
    width: 100%;
    height: auto;
    object-fit:cover;
}


.contactSection{
    width: 100%;
    height: 100vh;
    background-color: #040404;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:white;
}
.contactSection h1{
    line-height: 1;
    margin: 0;
    font-size: 12em;

    background: #FF6100;
background: linear-gradient(260deg, rgba(255, 97, 0, 1) 10%, rgba(0, 200, 255, 1) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* for non-webkit browsers, you can add: */
    background-clip: text;
    color: transparent;
    
}

.contactSection a{
color:white;
}

@media (max-width:786px){
    .contactSection h1{
        font-size: 3.5em;
    }

    .manufacturerSection h1 {
        font-size: 2.5em;
        text-align: center;
        padding: 0 1em;
    }

    .manufacturerSection{
        height: fit-content;
    }
    .manufacturerRow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2em;
        padding: 0 1em;
    }

    .manufacturer {
        width: 25vw;
    }

    .clientsSection{
        height: fit-content;
    }

    .clientsSection h1 {
        font-size: 2.5em;
        text-align: center;
        padding: 0 1em;
    }

    .clientsRow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2em;
        padding: 0 1em;
    }

    .client {
        width: 25vw;
    }

    .ourVisionSection {
        height: auto;
        padding: 4em 0;
        row-gap: 4em;
    }

    .ourVisionSection h1 {
        font-size: 2.5em;
        text-align: center;
        padding: 0 1em;
    }

    .ourVisionSection p {
        width: 85%;
        font-size: 0.9em;
        padding: 0 1em;
    }

    .navBar {
        font-size: .8em;

        column-gap: 1em;

        justify-content: center;
    }

    .navBar a:nth-child(1) {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 1em;
    }
}


.contactSocialMediaContainer{
    margin-bottom: 1em;
column-gap: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contactSocialMediaContainer a{
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.contactSocialMediaContainer a img{
  width: 100%;
  height: 100%;
}


@media (max-width:786px){
.contactSocialMediaContainer{
    margin-top: 1em;
}


}