@font-face {
    font-family: myFirstFont;
    src: url(/fonts/roboto.ttf);

    
  }
@font-face
{

    font-family:robotobold;
    src: url(/fonts/robotobold.ttf);
}

html
{
    scroll-behavior: smooth;
}

body
{
    background-color:white;
    margin:0;
    padding:0;
    font-family: 'Poppins', sans-serif;  
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 200px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}



.nav {
  display: flex;
  width: 100%;
  height: 5.5em;
  background-color: rgba(248, 249, 252, 0.705);
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 0 1rem;    
  box-sizing: border-box;
}


.logo-nav {
  margin-left: 20px;
  max-width: 140px;  
  width: 15vw;        
  height: auto;       
  min-width: 100px;   
}

.nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;      
  justify-content: end;
  align-items: center;
  flex-grow: 1;        
  min-width: 200px;    
  gap: 10px;            
  width: auto;
}


.nav-list ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.nav-ul {
  display: flex;
  flex-wrap: wrap;       
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 30px;             
  justify-content: center;
  align-items: center;
}
.nav-ul li {
  margin: 0;            
}


.nav-ul li a {
  text-decoration: none;
  color: #031e3a;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.nav-ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #062b53;
  transition: width 0.3s ease;
}

.nav-ul li a:hover::after {
  width: 100%;
}

.lang {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  margin-left: 30px;
  gap: 10px;
}


.al-lang, .en-lang {
  display: inline-block;
  width: 40px;
  height: 26px;
  background-color: #003865;
  border-radius: 16px;
  padding-left: 20px;
  color: white;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease, color 0.6s ease;
}

.al-lang{
  margin-right: 10px;
}

.al-lang:hover {
  background-image: url('img/albania.png');
  color: transparent; 
}

.en-lang:hover {
  background-image: url('img/united-kingdom.png'); 
  color: transparent; 
}  

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #062b53;
  padding: 1rem;
}

/*First section */

.hero-section {
  margin-top: 5.5em;
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.1);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 12px;
}

.hero-text p {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ddd;
}

/*Solution Section*/

.solutions-section {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.solution-h2{
  font-weight: 600;
  color:#e75b1a;
}

.solution-p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 10px auto 30px;
  text-align: center;
  color: #333;
  transition: all 0.6s ease-out;
  opacity: 0;
  transform: translateY(30px);
}

.solution-p.visible {
  opacity: 1;
  transform: translateY(0);
}


.solution-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card h3 {
  margin-bottom: 12px;
  color: #0d3b66;
}

.solution-card img.encrypted-photo {
  width: 50%;
  max-width: 80px;
  height: auto;
  display: block;
  margin: 20px auto 0;
  object-fit: contain;
}

.solution-card img.communication-photo {
  width: 50%;
  max-width: 80px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  object-fit: contain;
}

.solution-card img.satellite-photo {
  width: 50%;
  max-width: 80px;
  height: auto;
  display: block;
  margin: 70px auto 0;
  object-fit: contain;
}

.solution-card img.firewall-photo {
  width: 40%;
  max-width: 60px;
  height: auto;
  display: block;
  margin: 70px auto 0;
  object-fit: contain;
}

/* Company Section */
.company-section {
  margin-top: 20px;
  padding: 60px 20px;
  background-color: #041a3b;
  color: #fff;
  display: flex;
  justify-content: center;
}

.company-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 40px;
}

.company-text {
  flex: 1;
  min-width: 280px;
}

.company-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.company-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 4px;
  background-color: #e75b1a;
  margin-top: 8px;
  transition: width 0.3s ease;
}

.company-title:hover::after {
  width: 100%;
}

.company-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cfd8e1;
  transition: color 0.3s ease;
}

.title-dibarcom{
  color: #e75b1a;
}

.company-description:hover {
  color: #ffffff;
}


.company-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.company-image img {
  max-width: 100%;

}

/* .company-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
} */

/* .company-image img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(11, 192, 240, 0.2);
} */


/*Partners*/

.partner-section {
  padding: 100px 20px;
  background-color: #041a3b;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.partner-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #e75b1a;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .logo-track img {
    height: 40px;
    margin: 0 20px;
  }
}


/*Footer*/ 

footer {
  background-color: #031e3a;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
}

.first {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.first > div:first-child img {
  max-width: 300px;
  height: auto;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.info-container > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 250px;
}

.info-container img {
  width: 25px;
  height: 25px;
  margin-top: 4px;
}



.map-phone-container{
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
}

.map-phone-container:hover{
  transform: translateY(-8px) scale(1.05);
  border-radius: 10px;
  /* box-shadow: 0 10px 20px rgba(11, 192, 240, 0.2); */
  box-shadow: 0 10px 20px rgba(248, 9, 9, 0.527);
}

.p-map{
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}

.p-phone{
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}

.email-phone-container{
  width: 230px;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  padding-top: 10px;
  padding-left: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.email-phone-container:hover{
  transform: translateY(-8px) scale(1.05);
  border-radius: 10px;
  /* box-shadow: 0 10px 20px rgba(11, 192, 240, 0.2); */
  box-shadow: 0 10px 20px rgba(8, 99, 23, 0.651);
}

.email-con{
  display: flex;
  flex-direction: column;
}
.p-email{
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.social-media{
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.social-media img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.first > div:last-child img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.first > div:last-child img:hover {
  transform: translateY(-5px);
}

.second {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  border-top: 1px solid #ffffff33;
  padding-top: 15px;
}


#backToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:#134ca1;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  display: none;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}
/* 
#backToTopBtn:hover {
  background-color: rgb(37, 109, 187);
} */

  /* Responsive Design */
  @media (max-width: 850px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-info {
      justify-content: center;
    }
  
    .info-block {
      max-width: 100%;
    }
  
    .logo img {
      max-width: 200px;
    }

    .info-block p {
        font-size: 14px;
      }
      
       .phone-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .phone-label,
  .phone-number {
    width: 100%;
    font-size: 16px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    padding: 0 1rem;
  }

  .nav-logo {
    display: flex;
    flex: 1;
    align-items: center;
  }

  .logo-nav{
    margin-top: 50px;
  }

  .hamburger {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(221, 232, 245, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    text-align: center;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list ul {
    flex-direction: column;
    padding: 0;
  }

  .nav-list ul a {
    margin: 10px 0;
  }

  .lang {
    margin-bottom: 10px;
  }

  .al-lang, .en-lang {
  padding-left: 0;
  text-align: center;          
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-text h1 {
    font-size: 1.8rem;
    padding: 15px 20px;
  }

  .hero-text p {
    font-size: 1rem;
  }


  .company-container {
    flex-direction: column;
    text-align: center;
  }

  .company-title {
    font-size: 2.2rem;
  }

  .company-description {
    font-size: 1rem;
  }
}

@media (max-width: 850px) {
  .first {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .first > div:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .first > div:first-child img {
    max-width: 160px;
    height: auto;
  }

  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .info-container > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .map-phone-container,
  .email-phone-container {
    padding-left: 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .map-con,
  .phone-con,
  .email-con,
  .social-media {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-media {
    margin-top: 15px;
  }

  .social-media img {
    margin-top: 5px;
  }

  .p-map,
  .p-phone,
  .p-email {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .second {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
  }

 #backToTopBtn {
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  padding: 0;
  background-color: #134ca1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#backToTopBtn img {
  width: 28px;
  height: 28px;
}

#backToTopBtn:hover {
  transform: scale(1.1);
}
}





