@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Pacifico&display=swap');
/* GENERAL */
body{
margin: 0;
padding: 0;
font-family: Open Sans;
overflow-x: hidden;
background: #01011d;
}
a{
color:  white;
text-decoration:  none;	
}
h1, h2,h3,h4,h5,h6,p{
margin-top: 10px;
margin-bottom: 10px;
}
h1{
 font-size: 45px; 
color: #5e5e5e;
} 
h2{
font-size: 35px; 
}
h3{
font-size: 25px;        
}
h4{
font-size: 20px; 
font-weight: 100;
}        
h5{
font-size: 18px; 
font-weight: 100;
}h6{
font-size: 16px;
font-weight: 100;
}
p{
font-size: 14px;
font-family: raleway;
}
a:hover, 
.navbar-a a:hover{
color:  #6262ff;
text-decoration:  none; 
}
.active{
 color:  #ff0000;   
}

/* HEADER */
.header{
width: 100%;
z-index: 5;
height: 50px; 
position: absolute;
}
.logo{
margin: 10px 20px;
float: left;
}
.logo img{
width: 150px;
height: 50px;
background-repeat: no-repeat;
}


/* =====================================================
   MODERN NAVBAR STYLES
===================================================== */

.navbar {
    padding-left: 25%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

/* Animated background line */
.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

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

.navbar-link {
    position: relative;
    padding: 12px 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    overflow: hidden;
}

/* =====================================================
   MODERN HOVER EFFECTS
===================================================== */

/* Effect 1: Glowing underline with scale */
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-link:hover::after {
    width: 80%;
}

/* Effect 2: Background glow on hover */
.navbar-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.navbar-link:hover::before {
    width: 200px;
    height: 200px;
}

.navbar-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Active state with modern gradient */
.navbar-link.active {
    color: #ffffff;
}

.navbar-link.active::after {
    width: 80%;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
    box-shadow: 0 0 20px rgba(77, 150, 255, 0.4);
}

.navbar-link.active::before {
    width: 200px;
    height: 200px;
}

/* Active link shine effect */
.navbar-link.active {
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 20px #0c0d19;
    }
    50% {
        box-shadow: 0 0 40px #172a55;
    }
}

/* Hover effect with lift and shadow */
.navbar-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   ALTERNATIVE HOVER EFFECTS (Choose Your Style)
===================================================== */

/* Alternative 1: Slide-up underline */
.navbar-link.slide-up::after {
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
}

.navbar-link.slide-up:hover::after {
    transform: translateX(0);
}

/* Alternative 2: Expanding border */
.navbar-link.expand-border {
    border: 2px solid transparent;
}

.navbar-link.expand-border::after {
    display: none;
}

.navbar-link.expand-border:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Alternative 3: Glowing effect */
.navbar-link.glow-effect {
    background: transparent;
}

.navbar-link.glow-effect:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 0 30px rgba(77, 150, 255, 0.3),
        inset 0 0 30px rgba(77, 150, 255, 0.1);
}

/* Alternative 4: 3D Flip effect */
.navbar-link.flip-effect {
    perspective: 1000px;
}

.navbar-link.flip-effect span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link.flip-effect:hover span {
    transform: rotateX(360deg);
}

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

@media (max-width: 1024px) {
    .navbar {
        padding-left: 15%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 5%;
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
        justify-content: center;
        gap: 2px;
    }
    
    .navbar-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding-left: 2%;
        gap: 2px;
        flex-wrap: wrap;
    }
    
    .navbar-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* =====================================================
   ACCESSIBILITY & ANIMATION PREFERENCES
===================================================== */

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .navbar-link,
    .navbar-link::after,
    .navbar-link::before,
    .navbar-link.active {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for accessibility */
.navbar-link:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
    border-radius: 8px;
}
/*
.navbar{
padding-left: 25%;
}
.navbar-link{
float: left;
position: relative;
padding: 15px;
font-size: 16px;
color: white;
}*/
.fa.fa-arrow-down{
font-size: 14px; 
font-weight: 00;
}
.mobile-menu {
display: none;
}

/* FRONTPAGE */
.page-image{
width: 100%;
height: 500px;
}
.front{
background-image: url('../images/front.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;  
}




.front-image img{
width: 100%;
height: 600px;
}
.slide-container{
margin: 0 40px;
padding: 0;
display: flex;
justify-content: flex-start;
align-items: center;
min-height: 100vh;
font-family: Raleway, sans-serif;
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
position: absolute;
top: 0px;
width: 100%;
color: white;
}
.changebox{
   margin: 0 5px;
   color: #878787;
   overflow: hidden;
   transition: .50s;
   white-space: nowrap;
   text-shadow: 0px 1px 0px #4c4a4a;
}

.container-header {
padding: 10px 40px 10px;
font-weight: 700;
}
.page-message {
text-align: center;
width: 90%;
margin: 20px auto;
}
.content{
display: inline-block;
 height: 300px;
 width: 100%;
 position: relative;
 padding: 5px;
}
.content.it img, 
.content.iot img {
width:  50%;
object-fit: cover;
height: 300px;
}
.content.it img{
float: right;
}
.content.iot img {
float: left;
}
.caption{
position: absolute;
top: 70px;
}
.content.iot .caption{
left: 50%;
}
.content.it .caption{
left: 10%;
}
.caption h2{
font-weight: 600;
margin-top: 30px;
margin-bottom: -15px;
color: #686767;
}
.caption p{
text-align: center;
margin: 20px 0;
letter-spacing: 2px;
}

.btn a {
color: #5e5e5e;
margin: auto;
font-size: 15px;
border: none;
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
-webkit-transition-property: color;
transition-property: color;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
position: relative;
top: 40px;
float: right;
right: 20px;
font-weight: 700;
font-family: roboto;
}
.btn a:before {
 content: "";
 position: absolute;
 z-index: -1;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
-webkit-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-transition-property: transform;
transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn:hover, .btn:focus, .btn:active {
color: red;
}
.btn a:hover:before, .btn a:focus:before, .btn a:active:before {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
.expertise {
  padding: 40px 0;
  display: block;
  background: linear-gradient(135deg, #f9f9f9, #eef2f7);
}

.container-header h2 {
  font-size: 2rem;
  text-align: center;
  color: #1c2a48;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.expertise-block {
  flex: 1 1 40%;
  max-width: 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.expertise-block i {
  font-size: 45px;
  color: #1c2a48;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.expertise-block:hover i {
  color: #ff4b2b;
}

.expertise-block h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.expertise-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-container {
background:  white;
margin:  auto;
width:  100%;
padding-bottom: 30px;
padding-top: 50px;
display: inline-block;
}
.contact-message {
width: 35%;
height: 100vh;
float: left;
text-align: center;
}
.contact-field{
 display: flex;
 flex-wrap: nowrap;
 align-content: center;
 justify-content: flex-start;
 align-items: center;
}
.contact-message h2 {
margin: 2px 2px;
}
 .contact-message h3 {
margin: 2px 2px;
 }
.contact-form {
width:  60%;
float:  right;
padding-left: 20px;
}
.contact-form i{
 font-size: 34px;
 padding-right: 15px;
}
.contact-field i{
 font-size: 20px;
 padding-right: 15px;
 color: #172a55;
}
input {
width: 60%;
height: 35px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid lightgrey;
}
textarea {
width: 550px;
height:  250px;
border-radius: 5px;
border: 1px solid lightgrey;
}
::placeholder{
 padding-left: 20px;
 font-weight: 600;
 font-family: raleway;
}
input:hover,
textarea:hover{
border: none;
border-bottom: 1px solid #172a55;
border-left: 4px solid #172a55;
box-shadow: none;
background: white;
}
#submit {
width: 200px;
height: 40px;
font-size: 16px;
border: none;
color: white;
background: #172a55;
position: relative;
left: 400px;
margin: 20px 0;
}
i.fa-paper-plane{
 position: relative;
 font-size: 20px;
  left: -70px;
  color: white
}
#submit:hover {
color:  maroon;
background:white;
border: 1px solid #172a55;
border-left: 1px solid #172a55;
}
#submit:hover i.fa-paper-plane{
color:  #172a55;
}
.social i {
font-size:  25px;
padding: 5px;
color: maroon
}
.envelope {
width: 100%;
text-align:center;
display: none;
}
.envelope img {
width: 200px;
}
.success_message{
display: none ;
text-align: center;
color: blue;
}

/* IT Page */
.page{
width: 100%;
}
.page-main img{
width: 100%;
height: 600px;
}
.page-main h1{
margin: 200px 5%;
animation:slide-it 2s;
color: white;
position: absolute;
top: 0;
z-index: 2;
}
.page-main h2,
.page-main h3{
margin: 200px 5%;
animation:slide-it 2s;
color: white;
position: absolute;
top: 80px;
z-index: 2;
}
@keyframes slide-it {
  from {margin: 200px 0%;}
  to {margin: 200px 5%;}
}
.it-content{
background-color: white;
z-index: 1;
}
.page-container{
display: inline-block;
padding: 50px 20px;
}
.page-container h2{
color: #172a55;
}
.page-right{
float: right;
width: 50%;
text-align: center;
}
.page-left{
float: left;
width: 50%;
}
.it-bottom{
width: 100%;
display: inline-block;
text-align: center;
}
.page-left img, .page-right img{
width: 100%;
}
#web{
height: 50px;
}

/* IOT */
/*
.iot{
display: inline-block;
width: 100%;
background-color: white;
}
*/
.iot-quote{
padding: 60px 0px;
text-align: center;
}
.iot-quote h3{
color: #424242;
font-family:Raleway ;
width: 80%;
margin: auto;
}
#iot{
width: 100%;
height: 500px;
}
.iot h2{
text-align:center
}

/* company */

.region-message{
width: 90%;
text-align: center;
margin: 40px auto;
}
.message{
font-size: 30px;
font-family:Shadows Into Light;
font-weight: 600;
}
.message-title{
font-size: 18px;
font-family: arial;
padding-top: 10px; 
}
.company-content {
  color: #1c2a48;
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
  line-height: 1.6;
}

.company-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #ff4b2b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-content p {
  margin-bottom: 10px;
  color: #555;
}

.company-content ul {
  padding: 0;
  list-style: disc;
  color: #555;
}

.region-message {
  background: #fff;
  margin-top: 30px;
  text-align: center;
}

.region-message h4 {
  color: #333;

}

.region-message h6 {
  color: #777;
  font-style: italic;
}
.company-attributes-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin: 40px 0;
}

.company-attributes {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding-bottom: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px
}

.company-attributes:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.company-attributes img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.company-attributes h4 {
  font-size: 20px;
  color: #1c2a48;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-attributes p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.footer {
  background: linear-gradient(135deg, #0a0f1c, #1c2a48);
  color: #f0f0f0;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

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

.footer-nav li {
  margin: 8px 0;
}

.footer-nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.4rem;
  color: #f0f0f0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #ccc;
}
