/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
overflow-x: hidden;
  
}

/* Header Styles */
header {
  background: #f4f4f4;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('images/hero-image.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
}

/* Container for sections */
.container {
  width: 90%;
  max-width: 100%;
  margin: auto;
  padding: 40px 0;
}

/* About Section */
.about {
  background: #f9f9f9;
  text-align: center;
}

/* Services Section */
.services {
  background: #fff;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service {
  flex: 1 1 300px;
  margin: 20px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 5px;
}

/* Contact Section */
.contact {
  background: #f9f9f9;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact label {
  margin: 10px 0 5px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.contact button {
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}


/* Partners Section */
.partners {
  background: #fff;
  text-align: center;
  padding: 40px 0;
}

.partners h2 {
  margin-bottom: 10px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.partner {
  flex: 0 1 150px;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.partner:hover {
  transform: scale(1.05);
}

.partner img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header Styles */
header {
  background: #f4f4f4;
  padding: 20px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo img {
  max-height: 70px; /* Adjust to control logo size */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links a.active {
  text-decoration: underline; /* Example styling for active page link */
}

/* Services Page */
.services-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-page h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-page .intro {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #555;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  color: #007B7F;
  margin-bottom: 10px;
}

.service-box p {
  color: #333;
  font-size: 0.95rem;
}


/* About Page */
.about-page {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.about-page h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-page .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.about-content {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.contact-info-page {
  background: linear-gradient(to bottom, #d1fae5, #f2f9f1); /* soft green top-to-bottom */
  padding: 80px 20px;
  text-align: center;
  border-radius: 0; /* remove rounded corners for full-width feel */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.contact-item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: center;
  justify-items: center;
}

.partner img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact Info Page */
.contact-info-page {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-info-page h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info-page .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-item {
  background: #f9f9f9;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-width: 250px;
}

.contact-item h3 {
  color: #007B7F;
  margin-bottom: 10px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}


/* Customers Section */
.customers {
  padding: 10px 20px 20px 20px; /* top, right, bottom, left */
}

.customers h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Slider */
.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 24); /* 12 logos * 2 */
  animation: scroll 40s linear infinite;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slide img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s, filter 0.3s;
}

.slide img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contact-item a:hover {
  color: #25D366;
}

.partner-page {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partner-logo {
  max-width: 200px;
  margin: 20px auto;
}

.partner-page .intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.partner-details {
  max-width: 100%;
  margin: auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
}

.partner-details ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.partner-details ul li {
  margin-bottom: 10px;
}

/* Kaspersky EDR Promo Section */
.edr-promo {
  background-color: #f4faff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.edr-promo h3 {
  color: #007B7F;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.edr-promo .highlight {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}

.edr-features ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
  text-align: left;
}

.edr-features ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}


@media (max-width: 70%) {
  .nav-links {
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .service-box {
    width: 100%;
  }
}


.map-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}


.hero-slideshow {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-slideshow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slide img {
    max-width: 70px;
  }
}
