html {
  scroll-padding-top: 84px;
  scroll-behavior: smooth;
}

.hero-banner {
  position: relative;
  padding: 110px 0;
}
.hero-banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner h1,
.hero-banner p {
  color: white;
}

.hero-banner h1 {
  font-size: 60px;
  margin-bottom: 30px;
}
.hero-banner .container-fluid {
  position: relative;
}
.hero-banner .big-text {
  font-size: 24px;
  color: #29ccb1;
  margin-bottom: 0;
}

.alliances-wrapper {
  background-color: rgb(0 0 0 / 0%);
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(36, 103, 97, 0.52) 0%,
    #20262e 65.78947368421053%
  );
  border-radius: 30px;

  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  padding: 20px;
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.alliances-wrapper:last-child {
  margin-bottom: 0;
}
.alliances-box img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.alliances-box h4 {
  font-size: 24px;
  margin: 20px 0;
  color: var(--secondary-color);
}
.alliances-box p {
  font-size: 20px;
  color: white;
}

/*products-box  css start here*/
.products-box {
  background-color: rgb(0 0 0 / 0%);
  background-image: radial-gradient(
    circle at 100% 100%,
    #246761 0%,
    #243b4b 47.368421052631575%
  );
  border-radius: 30px;
  transition: all 0.3s ease-in-out 0s, visibility 0s;
  --transition: all 0.3s ease-in-out 0s, visibility 0s;
  padding: 20px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
  padding-bottom: 40px;
  height: 100%;
}
.products-box:hover {
  z-index: 1;
  transform: translateX(0) translateY(0) scaleX(1.05) scaleY(1.05) rotate(0deg)
    skewX(0deg) skewY(0deg);
  transform-origin: 50% 50%;
}

.products-box img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.products-box h4 {
  font-size: 20px;
  margin: 10px 0;
  color: white;
}
.products-box p {
  font-size: 16px;
  color: white;
}

/*target-box  css start here*/

.target-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.target-box {
  border-radius: 30px;
  padding: 20px;
  background-color: rgba(36, 59, 75, 1);

  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.6);
}
.target-box .for-line {
  width: 284px;
  height: 2.5px;
  background-color: rgb(0 168 142);
  box-sizing: border-box;
  margin: 5px 0;
}

.target-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}
.target-box p {
  font-size: 16px;
  color: white;
  margin-bottom: 0;
}

/*products-box  css start here*/
.technology-box {
  background-color: rgb(0 0 0 / 0%);
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(36, 103, 97, 0.52) 0%,
    #20262e 65.78947368421053%
  );
  border-radius: 30px;
  transition: all 0.3s ease-in-out 0s, visibility 0s;
  --transition: all 0.3s ease-in-out 0s, visibility 0s;
  padding: 20px;
  display: flex;
  height: 100%;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6);
}
.technology-box:hover {
  z-index: 1;
  transform: translateX(0) translateY(0) scaleX(1.05) scaleY(1.05) rotate(0deg)
    skewX(0deg) skewY(0deg);
  transform-origin: 50% 50%;
}

.technology-content {
  padding-left: 30px;
}
.technology-box img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.technology-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}
.technology-box p {
  font-size: 16px;
  color: white;
}
.technology-box a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}
.technology-box:hover a {
  color: var(--secondary-color);
}

.form-container {
  background: #21272f;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  font-size: 16px;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00d4a4;
}

/* Error state */
.form-group.error input:hover,
.form-group.error input:focus {
  border-color: rgb(0 168 142);
}
.form-group.error small {
  color: #e63946;
  position: absolute;
  bottom: -18px;
  left: 5px;
  font-size: 12px;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select,
.form-group option {
  color: #ddd;
  font-size: 16px;
  font-weight: 600;
}

.form-group select,
.form-group option {
  background: #21272f;
}

footer {
  background-color: #21272f;
  padding: 10px 0;
}
footer .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer span {
  margin-left: 20px;
  display: inline-block;
  color: #ddd;
  font-size: 14px;
}
footer a {
  margin-left: 20px;
  display: inline-block;
  color: #ddd;
  font-size: 14px;
  text-decoration: underline;
}
.social-icons {
  margin: 0;
  display: flex;
  align-content: center;
  gap: 10px;
}
.social-icons a {
  margin: 0;
}
.social-icons i {
  font-size: 23px;
  color: #00a88e;
}
footer a:hover,
footer a:hover i {
  color: white;
}
footer svg {
  max-width: 190px;
}

@media (max-width: 1199px) {
  .hero-banner {
    padding: 50px 0;
  }
  .hero-banner h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    background: #1c211d;
  }
  .hero-banner img {
    display: none;
  }
  .hero-banner h1 {
    font-size: 48px;
  }
  .alliances-box p {
    font-size: 18px;
  }
  footer {
    border-top: 1px solid var(--secondary-color);
    text-align: center;
  }
  footer .container-fluid {
    flex-direction: column;
    justify-content: center;
  }
  footer svg {
    display: block;
    margin: auto;
  }

  .social-icons {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .target-box .for-line {
    width: 170px;
  }
  .technology-box {
    max-width: 480px;
    margin: auto;
    height: auto;
  }
  .technology-box p {
    font-size: 17px;
  }
  .hero-banner h1 {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .hero-banner .big-text {
    font-size: 20px;
  }
  .heading-area {
    margin-bottom: 20px;
  }
  .hero-banner {
    border-bottom: 1px solid var(--primary-color);
  }
}

@media (max-width: 576px) {
  .hero-banner h1 {
    font-size: 34px;
  }
  .alliances-wrapper {
    display: inline-block;
  }
  .alliances-box {
    text-align: center;
  }

  .alliances-wrapper .alliances-box:first-child {
    margin-bottom: 35px;
  }
  .products-box {
    height: auto;
    max-width: 450px;
    margin: auto;
  }
  .target-wrapper {
    grid-template-columns: 1fr;
    max-width: 370px;
    margin: auto;
    text-align: center;
  }
  .target-box .for-line {
    width: 100%;
  }
  .alliances-box h4 {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 40px 0;
  }
  .hero-banner h1 {
    font-size: 31px;
  }
  .hero-banner .big-text,
  p {
    font-size: 18px;
  }
  .form-container {
    padding: 20px;
  }
}

@media (max-width: 374px) {
  .site-navbar .site-logo {
    max-width: 140px;
  }
  .site-navbar .button1 {
    min-width: inherit;
    padding: 10px 14px;
  }
  .hero-banner .big-text,
  p,
  .alliances-box p {
    font-size: 16px;
  }
  .products-box {
    padding-bottom: 20px;
  }
  .technology-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
  .technology-content {
    padding-left: 0px;
  }
  .technology-box img {
    margin: auto;
  }
  .alliances-box h4 {
    font-size: 21px;
  }
  .alliances-wrapper {
    padding: 15px;
  }
}

/* Cookie Consent Banner Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-top: 2px solid #29ccb1;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  color: #ffffff;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 300px;
}

.cookie-content p a {
  color: #29ccb1;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content p a:hover {
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}

.accept-btn {
  background-color: #29ccb1;
  color: #ffffff;
}

.accept-btn:hover {
  background-color: #22a896;
  transform: translateY(-1px);
}

.decline-btn {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.decline-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 15px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-content p {
    min-width: unset;
    font-size: 13px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

/* 404 Error Page Styles */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.error-container {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: bold;
  color: #22a896;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}

.error-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.error-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cccccc;
  line-height: 1.6;
}

.error-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.kaspersky-logo {
  margin-bottom: 40px;
}

.kaspersky-logo svg {
  height: 40px;
  width: auto;
}
