:root{
  --primary:#2563eb;
  --secondary:#0ea5e9;
  --dark:#020617;
  --light:#f8fafc;
  --muted:#64748b;
}

/* ================= GLOBAL ================= */
*{
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  padding-top:90px;
  background:#f9fafb;
  color:#0f172a;
}

.section{
  padding:100px 0;
}
.gallery-slider.grid-9.product .gallery-item img{
	box-shadow:none;
	border-radius:0;
}
h1,h2,h3{
  letter-spacing:-0.5px;
}
.gallery-slider.grid-9.product h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}
.gallery-slider.grid-9.product p {
	line-height:normal;
	font-size:14px;
}
.gallery-slider {
    gap: 25px;
}

p{
  line-height:1.8;
  color:#475569;
}

/* ================= NAVBAR ================= */
.navbar{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:18px 0;
}

.navbar-brand{
  font-size:28px;
  font-weight:700;
  color:#020617 !important;
}

.navbar-nav .nav-link{
  color:#020617 !important;
  font-weight:500;
  margin:0 12px;
}

.navbar-nav .nav-link:hover{
  color:#000 !important;
}

/* ================= BUTTONS ================= */
.btn{
  transition:.3s ease;
  font-weight:500;
  padding: 15px 25px;
}

.btn-warning{
  background:linear-gradient(135deg,#facc15,#f59e0b);
  border:none;
  color:#020617;
}

.btn-warning:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(0,0,0,.2);
}

.btn-outline-light:hover,
.btn-outline-dark:hover{
  transform:translateY(-2px);
}

/* ================= HERO ================= */
.hero{
  background:url(./images/banner.jpg) center/cover no-repeat;
  position:relative;
  border-radius:0 0 60px 60px;
  overflow:hidden;
}
.hero.pro{
  background:url(./images/pro.jpg) center/cover no-repeat;
 
}
.hero.support{
	background:url(./images/support.png) center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(2,6,23,.92) 0%,
    rgba(2,6,23,.75) 50%,
    rgba(2,6,23,.55) 100%
  );
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:3.4rem;
  line-height:1.15;
  color:#fff;
}

.hero p{
  max-width:720px;
  color:#e5e7eb;
}

/* ================= ABOUT ================= */
.placeholder-img img{
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* ================= GALLERY ================= */
.gallery-slider{
  margin-top:0px;
}
.download-box a > * {
    color: #000000;
}
.download-box a{
	text-decoration:none;
}
.gallery-slider.grid-9.product.support .gallery-item {
    position: relative;
}
.download-box {
    position: absolute;
    bottom: 6px;
    background: #fff;
    width: 94%;
    left: 10px;
	    padding: 8px;
}
.download-box h2 {
    font-size: 20px !important;
    margin: 0 !important;
}

.download-box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.gallery-item img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:18px;
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  transition:.4s ease;
}

.gallery-item img:hover{
  transform:translateY(-6px) scale(1.03);
}

.slick-prev:before,
.slick-next:before{
  font-size:40px;
  color:#020617;
}

/* ================= TESTIMONIAL ================= */
.test-card{
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#f1f5f9);
  box-shadow:0 25px 50px rgba(0,0,0,.12);
  transition:.3s ease;
  height:100%;
}

.test-card:hover{
  transform:translateY(-6px);
}

.test-card strong{
  display:block;
  margin-top:15px;
  color:#020617;
}

/* ================= CTA ================= */
.cta{
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  border-radius:40px;
  padding:90px 20px;

}

.cta h2{
  font-size:2.4rem;
  color:#fff;
}

.cta p{
  color:#e0f2fe;
}

.cta .btn{
  min-width:180px;
}

/* ================= FOOTER ================= */
.footer{
  background:#020617;
  color:#94a3b8;
  margin-top:-40px;
  padding-top:80px;
}

.footer h5{
  font-weight:600;
  margin-bottom:18px;
  color:#fff;
}

.footer p,
.footer li{
  font-size:15px;
  line-height:1.7;
      color: #f9c213a8;
}

.footer a{
  color:#94a3b8;
  text-decoration:none;
}

.footer a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid #1e293b;
  margin-top:40px;
  color:#64748b;
}
.test-card img {
    width: 35px;
    margin-right: 5px;
}
.gallery-slider.grid-9 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero h1{
    font-size:2.4rem;
  }
.gallery-slider.grid-9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
	        max-width: 100%;
}
.grid-9 .gallery-item img {
 
    height: 200px;
   
}
  .section{
    padding:70px 0;
  }

  .cta{
    border-radius:25px;
    padding:70px 15px;
  }
  .gallery-slider {
    max-width: 80%;
    margin: auto;
}
button.navbar-toggler

 {
   
    background: #000000;
}
}
