 h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
    }

    span, a, button {
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
    }

    p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #fff;
      font-family: 'Roboto', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

 body{
  font-family:'Montserrat','Roboto',Arial,sans-serif;
  line-height:1.6;
  color:#e6edf7;
  min-height:100vh;
  letter-spacing:0.02em;

  background: linear-gradient(
    135deg,
    #070b20 0%,
    #0a0e27 40%,
    #0f1435 70%,
    #070b20 100%
  );

  background-size:400% 400%;
  animation:bgMove 18s ease infinite;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;

  scroll-behavior:smooth;

  transition:background 0.5s ease;
}

@keyframes bgMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      background: rgba(10, 14, 39, 0.95);
      padding: 25px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 200;
      box-shadow: 0 8px 32px rgba(74, 144, 226, 0.25), 0 2px 12px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid #4A90E2;
    }

    header img {
      height: 70px;
      margin-right: 38px;
      filter: drop-shadow(0 2px 18px #4A90E2cc);
      transition: transform 0.18s;
      border-radius: 12px;
    }

    header img:hover {
      transform: scale(1.09) rotate(-2deg);
      filter: drop-shadow(0 4px 24px #4A90E2ee);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
      font-size: 1.3rem;
      font-family: 'Montserrat', sans-serif;
      align-items: center;
    }

    nav ul li a {
      color: #fff;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: 20px;
      transition: all 0.22s;
      letter-spacing: 0.5px;
      font-size: 1em;
      background: rgba(74, 144, 226, 0.1);
      border: 1.5px solid #4A90E2;
    }

    nav ul li a:hover {
      background: #4A90E2;
      color: #fff;
      box-shadow: 0 4px 24px #4A90E288;
      transform: scale(1.06) translateY(-2px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;
      z-index: 300;
      gap: 5px;
    }

    .hamburger span {
      display: block;
      height: 3px;
      background: #4A90E2;
      border-radius: 3px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px #4A90E255;
    }

    @media (max-width: 900px) {
      nav ul {
      position: fixed;
      top: 90px;
      right: -100%;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      height: calc(100vh - 90px);
      background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
      padding: 40px 20px;
      transition: right 0.4s ease;
      z-index: 200;
      border-left: 2px solid #4A90E2;
      overflow-y: auto;
      backdrop-filter: blur(10px);
      }

      nav ul.show {
      right: 0;
      }

      .hamburger {
      display: flex;
      }

      #nav-links li {
      width: 100%;
      }

      #nav-links li a {
      font-size: 1rem;
      color: white;
      text-decoration: none;
      padding: 16px 24px;
      border-radius: 12px;
      background: rgba(74, 144, 226, 0.12);
      border: 2px solid #4A90E2;
      box-shadow: 0 4px 16px #4A90E222;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      }

      #nav-links li a:hover {
      background: linear-gradient(90deg, #4A90E2 0%, #00d4ff 100%);
      border-color: #00d4ff;
      transform: translateX(8px);
      box-shadow: 0 8px 24px #4A90E244;
      }

      #nav-links li a:active {
      transform: scale(0.96);
      }
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -8px);
    }

    .hero {
      min-height: 100vh;
      margin-top: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      flex-direction: column;
      padding: 80px 50px;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 720px;
      height: 700px;
      background: radial-gradient(circle at 30% 40%, #4A90E2 0%, #255ab4 50%, transparent 100%);
      opacity: 0.25;
      transform: translate(-50%, -50%) rotate(-10deg);
      z-index: 0;
      filter: blur(50px);
      animation: float 6s ease-in-out infinite;
      will-change: transform;
    }
    
    .hero::after {
      content: "";
      position: absolute;
      bottom: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
      opacity: 0.15;
      border-radius: 50%;
      z-index: 0;
      filter: blur(50px);
      animation: float 8s ease-in-out infinite reverse;
        will-change: transform;
    }

    @keyframes float {
      0%, 100% { transform: translate(-50%, -50%) translateY(0); }
      50% { transform: translate(-50%, -50%) translateY(-20px); }
    }

    .hero-content {
      background: transparent;
      box-shadow: none;
      z-index: 2;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero h2 {
      font-size: 6.9rem;
      margin-bottom: 40px;
      color: #fff;
      text-shadow: 0 0 65px rgba(74, 144, 226, 0.3);
      font-weight: 900;
      letter-spacing: 2px;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 30px;
      margin-bottom: 50px;
      font-family: 'Roboto', sans-serif;
      color: #b0d4ff;
      font-weight: 400;
      letter-spacing: 0.5px;
      text-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
       .hero .btn {
      display: inline-block;
      background: linear-gradient(90deg, #4A90E2 0%, #00d4ff 100%);
      box-shadow: 0 4px 32px rgba(74, 144, 226, 0.35), 0 0 60px rgba(0, 212, 255, 0.2);
      color: #fff;
      padding: 20px 36px;
      border-radius: 28px;
      font-weight: 700;
      font-size: 1.3rem;
      letter-spacing: 0.5px;
      border: none;
      transition: all 0.3s;
      cursor: pointer;
      margin: 10px auto;
      text-transform: uppercase;
      border: 2px solid transparent;
    }

    .hero .btn:hover {
      background: linear-gradient(90deg, #00d4ff 0%, #4A90E2 100%);
      transform: scale(1.08);
      box-shadow: 0 8px 40px rgba(74, 144, 226, 0.45), 0 0 80px rgba(0, 212, 255, 0.3);
    }

    @media (max-width: 768px) {
      .hero h2 {
      font-size: 75px;
      }
      .hero p {
      font-size: 19px;
      }
        .hero .btn { 
          padding: 20px 35px; 
      font-size: 1rem;
      }
      .btn {
      padding: 15px 20px; 
      font-size: 1rem;
      }
    }

    .btn {
      display: inline-block;
      background: linear-gradient(90deg, #4A90E2 0%, #00d4ff 100%);
      box-shadow: 0 4px 32px rgba(74, 144, 226, 0.35), 0 0 60px rgba(0, 212, 255, 0.2);
      color: #fff;
      padding: 12px 18px;
      border-radius: 28px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.5px;
      border: none;
      transition: all 0.3s;
      cursor: pointer;
      margin: 10px auto;
      text-transform: uppercase;
      border: 2px solid transparent;
    }

    .btn:hover {
      background: linear-gradient(90deg, #00d4ff 0%, #4A90E2 100%);
      transform: scale(1.08);
      box-shadow: 0 8px 40px rgba(74, 144, 226, 0.45), 0 0 80px rgba(0, 212, 255, 0.3);
    }

    section {
      padding: 90px 50px;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #4A90E2;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 900;
    }

    h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-weight: 900;
    }

    .section-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #4A90E2;
      font-size: 36px;
      margin: 60px 0;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 900;
    }

    .section-heading::before,
    .section-heading::after {
      content: "";
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, #4A90E2 0%, transparent 100%);
    }

    .section-heading::before {
      margin-right: 20px;
      background: linear-gradient(90deg, transparent 0%, #4A90E2 100%);
    }

    .section-heading::after {
      margin-left: 20px;
      background: linear-gradient(90deg, #4A90E2 0%, transparent 100%);
    }

    .features, .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
    }

    .card {
      background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(0, 212, 255, 0.03) 100%);
      padding: 50px 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1), 0 0 60px rgba(74, 144, 226, 0.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: 1.5px solid rgba(74, 144, 226, 0.3);
      z-index: 1;
      background-clip: padding-box;
      color: #fff;
    }

    .card::before {
      content: "";
      position: absolute;
      top: -60px;
      left: -60px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at 60% 40%, #4A90E2 0%, #255ab4 100%);
      opacity: 0.1;
      z-index: 0;
      border-radius: 50%;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(74, 144, 226, 0.2), 0 0 80px rgba(0, 212, 255, 0.1);
      border-color: rgba(74, 144, 226, 0.5);
      background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
    }

    .card span {
      font-size: 3.5rem;
      display: block;
      margin-bottom: 20px;
      color: #4A90E2;
      filter: drop-shadow(0 2px 8px #4A90E255);
      z-index: 2;
      position: relative;
      animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes popIn {
      0% {
      transform: scale(0.7) rotate(-10deg);
      opacity: 0;
      }
      60% {
      transform: scale(1.15) rotate(6deg);
      opacity: 1;
      }
      100% {
      transform: scale(1) rotate(0);
      }
    }

    .card h3 {
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
      z-index: 2;
      position: relative;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .card ul {
      color: #c0d0e0;
      font-size: 1rem;
      z-index: 2;
      position: relative;
      padding-left: 0;
      margin-bottom: 0;
      line-height: 1.8;
    }

    .card ul li {
      margin-bottom: 14px;
      line-height: 1.6;
      list-style: none;
      font-weight: 400;
      padding-left: 28px;
      position: relative;
    }

    .card ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #4A90E2;
      font-weight: 900;
    }

    .card p {
      color: #b0c0d0;
      font-size: 1.05rem;
      z-index: 2;
      position: relative;
      line-height: 1.7;
      font-weight: 400;
    }

    @media (max-width: 768px) {
      .card {
      padding: 36px 28px;
      border-radius: 12px;
      }
      .card span {
      font-size: 2.8rem;
      margin-bottom: 16px;
      }
      .card h3 {
      font-size: 1.2rem;
      }
      .card p,
      .card ul {
      font-size: 1rem;
      }
    }

    .about {
      background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(0, 212, 255, 0.03) 100%);
      box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1);
      border-radius: 16px;
      padding: 50px;
      border: 1.5px solid rgba(74, 144, 226, 0.3);
      color: #fff;
    }

    .about p {
      color: #b0c0d0;
      font-size: 1.15rem;
      line-height: 1.8;
    }

    .about ul {
      color: #b0c0d0;
    }

    .about ul li {
      margin-bottom: 15px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

footer{
background:linear-gradient(160deg,#0a0e27 0%,#141a36 60%,#0c0f2a 100%);
color:#d7e1f0;
padding:80px 40px 50px;
margin-top:80px;
position:relative;
border-top:2px solid #4A90E2;
box-shadow:0 -8px 40px rgba(0,0,0,0.45);
overflow:hidden;
}

footer::before{
content:"";
position:absolute;
top:-120px;
left:50%;
transform:translateX(-50%);
width:900px;
height:200px;
background:radial-gradient(circle,#4A90E2 0%,transparent 70%);
opacity:.08;
filter:blur(40px);
pointer-events:none;
}

.footer-content{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:60px;
position:relative;
z-index:2;
}

.footer-section{
text-align:left;
}

.footer-section h3{
color:#4A90E2;
font-size:1.6rem;
margin-bottom:20px;
font-weight:800;
letter-spacing:.06em;
position:relative;
padding-bottom:8px;
}

.footer-section h3::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:50px;
height:3px;
background:linear-gradient(90deg,#4A90E2,#00d4ff);
border-radius:3px;
}


footer p{
color:#a8b6c8;
line-height:1.6;
font-size:.95rem;
}

.footer-section ul{
list-style:none;
padding:0;
margin:0;
}

.footer-section ul li{
margin:8px 0;
}

.footer-section a{
color:#a8b6c8;
text-decoration:none;
position:relative;
transition:color .3s ease;
}

.footer-section a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0%;
height:2px;
background:#4A90E2;
transition:width .35s ease;
}

.footer-section a:hover{
color:#4A90E2;
}

.footer-section a:hover::after{
width:100%;
}

footer .social-links{
display:flex;
gap:18px;
margin-top:20px;
}

footer .social-links a{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#111633;
color:#4A90E2;
font-size:1.3rem;
border:1px solid rgba(74,144,226,.3);
transition:all .3s ease;
}

footer .social-links a::after{
display:none;
}

footer .social-links a:hover{
background:#4A90E2;
color:#fff;
transform:translateY(-4px);
box-shadow:0 8px 25px rgba(74,144,226,.5);
}

.footer-bottom{
margin-top:50px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
font-size:.85rem;
color:#7f8da3;
}

@media (max-width:900px){

.footer-content{
grid-template-columns:1fr 1fr;
gap:40px;
}

footer{
padding:60px 30px 40px;
}

.footer-section h3{
font-size:1.3rem;
}

footer p{
font-size:.95rem;
}

}

@media (max-width:600px){

footer{
padding:50px 20px 30px;
margin-top:60px;
}

.footer-content{
grid-template-columns:1fr;
gap:30px;
text-align:center;
}

.footer-section{
text-align:center;
}

.footer-section h3{
font-size:1.2rem;
}

.footer-section h3::after{
left:50%;
transform:translateX(-50%);
}

.footer-section ul li{
margin:10px 0;
}

footer .social-links{
justify-content:center;
margin-top:15px;
}

footer .social-links a{
width:44px;
height:44px;
font-size:1.2rem;
}

footer p{
font-size:.9rem;
}

.footer-bottom{
margin-top:35px;
font-size:.8rem;
}
}

    .contact-form {
      max-width: 550px;
      margin: 50px auto 25px auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
      background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(0, 212, 255, 0.03) 100%);
      border-radius: 16px;
      box-shadow: 0 6px 32px rgba(74, 144, 226, 0.1);
      padding: 50px 40px;
      border: 1.5px solid rgba(74, 144, 226, 0.3);
      position: relative;
      z-index: 2;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 14px 18px;
      font-size: 1.05rem;
      border: 1.5px solid rgba(74, 144, 226, 0.4);
      border-radius: 8px;
      outline: none;
      background: rgba(74, 144, 226, 0.05);
      transition: all 0.3s;
      font-family: 'Roboto', sans-serif;
      color: #fff;
      box-shadow: 0 2px 8px rgba(74, 144, 226, 0.05);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #7a94b0;
      opacity: 1;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #4A90E2;
      box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
      background: rgba(74, 144, 226, 0.08);
    }

    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-form button {
      padding: 16px 0;
      font-size: 1.1rem;
      font-weight: 700;
      background: linear-gradient(90deg, #4A90E2 0%, #00d4ff 100%);
      color: #fff;
      border: none;
      border-radius: 28px;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(74, 144, 226, 0.3);
      letter-spacing: 0.8px;
      margin-top: 15px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
    }

    .contact-form button::after {
      font-size: 1.2em;
      margin-left: 12px;
      vertical-align: middle;
      transition: margin-left 0.2s;
    }

    .contact-form button:hover {
      background: linear-gradient(90deg, #00d4ff 0%, #4A90E2 100%);
      transform: scale(1.05);
      box-shadow: 0 8px 40px rgba(74, 144, 226, 0.4), 0 0 60px rgba(0, 212, 255, 0.15);
    }

    .contact-form button:hover::after {
      margin-left: 18px;
    }

    @media (max-width: 768px) {
      .contact-form {
      padding: 36px 28px;
      border-radius: 12px;
      gap: 18px;
      }
      .hero h1 {
      font-size: 2.2rem;
      }
      .hero p {
      font-size: 1.1rem;
      }
      .btn {
      padding: 12px 24px;
      font-size: 12px;
      }
      .contact-form button {     
        padding: 14px 0;
        font-size: 14px;
       }
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin-top: 30px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(74, 144, 226, 0.15), 0 0 60px rgba(0, 212, 255, 0.05);
      border: 1.5px solid rgba(74, 144, 226, 0.3);
    }

    .video-container video,
    .video-container iframe {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

    #statusMessage {
      text-align: center;
      margin-top: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      font-size: 1rem;
    }
   .contact-section {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    padding-top: 20px;
  }

  .contact-section p {
    color: #eee;
    margin-bottom: 10px;
  }

.contact-link {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #4A90E2;
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: #4A90E2;
}

.contact-link:hover::after {
  width: 100%;
}

#vysledky img {
  cursor: zoom-in;
}

#lightbox {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:0.3s;
  backdrop-filter: blur(0px); 
}

#lightbox.active {
  opacity:1;
  pointer-events:auto;
  backdrop-filter: blur(22px); 
}

#lightbox img {
  max-width:90%;
  max-height:90%;
  position: relative;
  z-index: 10000; 
  border-radius: 15px;
  border: 3px solid #4A90E2;
}

#lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px; 
  width: 60px;
  height: 60px;
  background: rgba(74, 144, 226, 0.1);
  border: 1.5px solid #4A90E2;
  color: white;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#lightbox .close-btn:hover {
   background: #4A90E2;
   box-shadow: 0 4px 28px #4A90E288;
   transform: scale(1.2) rotate(90deg);
}

@media (max-width: 1024px){

section{
padding:70px 30px;
}

.hero{
padding:80px 30px;
}

.hero h2{
font-size:48px;
}

.hero p{
font-size:17px;
}

.features,
.services{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

}

@media (max-width: 768px){

#lightbox img{
max-width:90%;
max-height:80%;
border-width:2px;
}

#lightbox .close-btn{
top:15px;
right:15px;
width:50px;
height:50px;
font-size:28px;
}

.features,
.services{
grid-template-columns:1fr;
gap:25px;
}

}

@media (max-width: 480px){

header{
padding:16px 18px;
}

header img{
height:48px;
margin-right:8px;
}

nav ul{
top:70px;
}

section{
padding:55px 18px;
}

.hero{
padding:60px 18px;
}

.hero h2{
font-size:38px;
letter-spacing:1px;
line-height:1.2;
}

.hero p{
font-size:15px;
line-height:1.6;
}

.hero .btn{
padding:14px 20px;
font-size:14px;
}

h2{
font-size:22px;
}

h3{
font-size:15px;
}

.section-heading{
font-size:22px;
margin:35px 0;
}

.card{
padding:26px 20px;
}

.card span{
font-size:2.2rem;
}

.card h3{
font-size:1rem;
}

.card p,
.card ul{
font-size:0.9rem;
}

.about{
padding:26px 20px;
}

.about p{
font-size:0.95rem;
}

.contact-form{
padding:26px 20px;
}

.contact-form input,
.contact-form textarea{
font-size:0.9rem;
padding:12px;
}

.contact-form button{
font-size:14px;
padding:14px;
}

.video-container{
margin-top:20px;
}

#lightbox img{
max-width:92%;
max-height:70%;
}

#lightbox .close-btn{
top:10px;
right:10px;
width:44px;
height:44px;
font-size:24px;
}
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(74, 144, 226, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#4A90E2, #00d4ff);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#00d4ff, #4A90E2);
}
