* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body { 
  font-family: Inter, sans-serif; 
  color: rgb(15, 23, 42); 
  line-height: 1.6; 
  background: rgb(255, 255, 255); 
}
img {
  max-width: 193%;
  display: block;
}
a { 
  text-decoration: none; 
  color: inherit; 
}
ul { 
  list-style: none; 
}
:root { 
  --primary: #1e7cf6;
   --dark: #0b1220;
    --muted: #6b7280;
     --light: #f3f4f6;
      --border: #e5e7eb;
     }
.container { 
  max-width: 1200px; 
  margin: 0px auto; 
  padding: 0px 24px;
 }
.primary { 
  color: var(--primary); 
}
.btn { 
  display: inline-block;
   padding: 16px 24px 12px;
    border-radius: 999px;
     font-weight: 500;
      font-size: 18px;
       cursor: pointer;
        border-width: medium;
         border-style: none;
          border-color: currentcolor; 
          border-image: initial; 
          transition: 0.25s; 
          width: 170px; 
          height: 57px; 
          text-align: center; 
        }
.btn-primary { 
  background: var(--primary);
   color: rgb(255, 255, 255); 
  }
.btn-primary:hover { 
  background: rgb(0, 115, 209); 
}
.btn-dark { 
  background: rgb(0, 115, 209); 
  color: rgb(255, 255, 255); 
  white-space: nowrap; 
}
.btn-white { 
  background: rgb(255, 255, 255);
   color: var(--primary); 
  }
.btn-lg { 
  padding: 14px 36px; 
  font-size: 16px; 
}
.btn-block { 
  display: block; 
  width: 100%; 
  text-align: center; 
}
.site-header { 
  position: sticky; 
  top: 0px; z-index: 100; background: rgb(255, 255, 255); }
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 80px; 
}
.brand { 
  font-weight: 500; 
  font-size: 28px; 
}
.main-nav { 
  display: flex; 
  gap: 36px; 
  margin-right: 24px; 
  color: rgb(107, 114, 128); 
}
.main-nav a { 
  font-weight: 300; 
  font-size: 19px; 
}
.main-nav a:hover { 
  color: var(--primary);
 }
.nav-toggle { 
  display: none; 
  background: none; 
  border-width: medium; 
  border-style: none; 
  border-color: currentcolor; 
  border-image: initial; 
  font-size: 26px; 
  cursor: pointer; 
}
.hero { 
  padding: 40px 0px 80px; 
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 60% 40%; 
  gap: 40px; 
  align-items: center; 
}
.hello { 
  color: var(--primary);
   margin-bottom: 20px; 
  }
.hero-text h1 { 
  font-size: 48px; 
  font-weight: 700; 
  line-height: 1.2;
   margin-bottom: 24px; 
  }
.lead { 
  color: var(--muted); 
  font-size: 17px; 
  margin-bottom: 32px;
   max-width: 520px; 
  }
.hero-img {
  max-width: 480px;
  margin: 0px auto;
  border-radius: 999px;
  }
.stats { 
  padding: 40px 0px; 
}
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
  text-align: center; 
}
.stat h3 { 
  font-size: 32px; 
  font-weight: 600; 
  color: var(--primary); 
  margin-bottom: 6px; 
}
.stat p {
   color: var(--muted); 
  }
.section { 
  padding: 60px 0px; 
}
.section-title { 
  font-size: 36px;
   font-weight: 700; 
   text-align: center;
    margin-bottom: 48px;
   }
.services-grid { 
  display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 24px; 
  }
.service-card { 
  padding: 28px; 
  border-radius: 12px;
   box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: 0.3s; 
  }
.service-card:hover {
   transform: translateY(-4px); 
  }
.service-icon { 
  width: 25px;
   height: 50px; 
   color: var(--primary);
    margin-bottom: 18px;
   }
.service-card h5 { 
  font-size: 18px; 
  font-weight: 600;
   margin-bottom: 10px; 
  }
.service-card p { 
  color: var(--muted);
   margin-bottom: 16px;
   }
.learn { 
  color: var(--primary);
   font-weight: 500; 
  }
.learn:hover { 
  text-decoration: underline; 
}
.about-card { 
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: -31px;
     align-items: center;
      background: rgb(31, 41, 55);
       border-radius: 12px; 
       padding: 57px; 
      }
.about-img img { 
  border-radius: 10px;
   width: 436px;
    max-height: 429px;
     object-fit: cover;
     }
.about-text h2 { 
  font-size: 36px; 
  font-weight: 700;
   color: rgb(255, 255, 255);
    margin-bottom: 18px;
     line-height: 1.2; 
    }
.about-text p { 
  color: rgb(209, 213, 219);
   margin-bottom: 24px; 
  }
.socials { 
  display: flex;
   gap: 12px; 
  }
.socials a { 
  width: 36px;
   height: 36px; 
   display: grid;
    place-items: center;
     color: rgb(249, 250, 251); 
    }
.socials a:hover { 
  color: var(--primary); 
}
.socials svg { 
  width: 24px; height: 24px;
 }
.brand { 
  display: flex;
   align-items: center; 
   text-decoration: none; 
  }
.logo { 
  height: 195px;
   width: auto;
    display: block; 
  }
.portfolio-section { 
  width: 100%;
   max-width: 1100px;
    margin: auto;
     padding: 60px 20px; 
    }
.portfolio-header { 
  display: flex;
   justify-content: space-between;
    align-items: center;
     gap: 20px;
      margin-bottom: 35px;
       flex-wrap: wrap; 
      }
.portfolio-header h2 { 
  font-size: 42px;
   font-weight: 700;
    color: rgb(0, 0, 0); 
  }
.portfolio-header h2 span { 
  color: rgb(23, 130, 255); 
}
.view-btn { 
  text-decoration: none;
   background: rgb(13, 125, 245);
    color: rgb(255, 255, 255);
     padding: 18px 35px;
      border-radius: 50px; 
      font-size: 18px; 
      font-weight: 600; 
      transition: 0.3s; 
    }
.view-btn:hover { 
  background: rgb(0, 95, 209); 
}
.portfolio-grid { 
  display: grid; 
  grid-template-columns: repeat(12, 1fr);
   gap: 22px; 
  }
/* CARD */

.portfolio-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:white;
}


.portfolio-card img{
  width:100%;
  height:100%;

  /* IMPORTANT */
  object-fit:cover;

  /* keeps focus centered */
  object-position:center;

  display:block;
  transition:0.4s;
}
.portfolio-card:hover img { 
  transform: scale(1.05); 
}
.portfolio-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 97%;
  padding: 22px;
  color: rgb(255, 255, 255)
}
.portfolio-content h3 { 
  font-size: 32px; 
  margin-bottom: 8px; 
}
.portfolio-content p { 
  font-size: 15px; 
  font-weight: 600; 
}
.big-left { 
  grid-column: span 6; 
  height: 420px; 
}
.small { 
  grid-column: span 3;
   height: 420px;
   }
.bottom-small { 
  grid-column: span 3;
   height: 380px; 
  }
.big-right { 
  grid-column: span 6;
   height: 380px; 
  }
.cta-strip { 
  display: flex; 
  justify-content: space-between;
   align-items: center;
    gap: 24px;
     border: 1px solid var(--border);
      border-radius: 12px;
       padding: 32px;
        flex-wrap: wrap; 
      }
.cta-strip h2 { 
  font-size: 30px;
   font-weight: 700;
    margin-bottom: 8px;
   }
.cta-strip p { 
  color: var(--muted);
 }
.testi-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}

.testi { 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 28px; 
}

.testi-q { 
  font-size: 18px; 
  font-weight: 600; 
  margin-bottom: 12px; 
}

.testi-b { 
  color: #606f8d; 
  margin-bottom: 20px; 
   font-family: "Lilita One", sans-serif;
}

.testi-author { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.testi-author img { 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  object-fit: cover; 
}

.testi-author span { 
  color: rgb(156, 163, 175); 
  font-size: 14px; 
}

.pricing-wrap { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  align-items: start; 
}

.pricing-intro h2 { 
  font-size: 36px; 
  font-weight: 700; 
  margin-bottom: 18px; 
  line-height: 1.2; 
}

.pricing-intro p { 
  color: var(--muted); 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}

.plan { 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 14px; 
  display: flex; 
  flex-direction: column; 
  gap: 18px; 
}

.plan-featured { 
  background: var(--primary); 
  border-color: var(--primary); 
  color: rgb(255, 255, 255); 
}

.plan-head { 
  background: var(--light); 
  border-radius: 10px; 
  padding: 18px; 
  text-align: center; 
}

.plan-head h3 { 
  font-size: 18px; 
  font-weight: 500; 
  color: var(--primary); 
  margin-bottom: 8px; 
}

.plan-price { 
  font-size: 40px; 
  font-weight: 700; 
}

.plan-featured .plan-head { 
  background: rgb(21, 101, 216); 
}

.plan-featured .plan-head h3 { 
  color: rgb(255, 255, 255); 
}

.plan ul { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  padding: 0px 8px; 
  flex: 1 1 0%; 
}

.plan li { 
  color: var(--muted); 
}

.plan li::before { 
  content: "✓ "; 
  color: rgb(22, 163, 74); 
  font-weight: 700; 
}

.plan-featured li { 
  color: rgb(229, 231, 235); 
}

.faq { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  max-width: 900px; 
  margin: 0px auto; 
}

.faq details { 
  border: 1px solid var(--border); 
  background: var(--light); 
  border-radius: 8px; 
  padding: 16px 20px; 
  font-weight: 500; 
}

.faq summary { 
  cursor: pointer; 
  list-style: none; 
  display: flex; 
  justify-content: space-between; 
}

.faq summary::after { 
  content: "+"; 
  color: var(--muted); 
}

.faq details[open] summary::after { 
  content: "−"; 
}

.faq p { 
  margin-top: 12px; 
  color: var(--muted); 
  font-weight: 400; 
}

.site-footer { 
  padding: 32px 0px; 
  border-top: 1px solid var(--border); 
  margin-top: 40px; 
}

.footer-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 12px; 
  color: var(--muted); 
  font-size: 14px; 
}
@media (max-width: 992px) {
  .hero-text h1 { font-size: 38px; }
  .section-title, .about-text h2, .pricing-intro h2, .portfolio-head h2, .cta-strip h2 { font-size: 30px; }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-wrap { grid-template-columns: 1fr; }
  .hero-img { height: 332px; width: 338px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 80px; left: 0px; right: 0px; background: rgb(255, 255, 255); flex-direction: column; padding: 20px; gap: 16px; box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 20px; display: none; margin: 0px; }
  .main-nav.open { display: flex; }
  .header-inner > .btn { display: none; }
  .hero-grid, .about-card, .testi-grid, .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-text h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .proj, .proj-big { grid-area: span 1 / span 1; }
  .section { padding: 40px 0px; }
  .section-title { font-size: 26px; margin-bottom: 32px; }
  .cta-strip { padding: 24px; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 28px; }
  .stat h3 { font-size: 26px; }
}
@media (max-width: 991px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .big-left, .big-right, .small, .bottom-small { grid-column: unset; width: 100%; }
  .big-left, .big-right { height: 380px; }
  .small, .bottom-small { height: 300px; }
  .portfolio-header h2 { font-size: 34px; }
}
@media (max-width: 767px) {
  .portfolio-section { padding: 40px 15px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .portfolio-header h2 { font-size: 28px; line-height: 1.2; }
  .view-btn { padding: 14px 24px; font-size: 15px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 129px; }
  .big-left, .big-right, .small, .bottom-small { height: 260px; }
  .portfolio-content { padding: 18px; }
  .portfolio-content h3 { font-size: 22px; }
  .portfolio-content p { font-size: 14px; }
}
@media (max-width: 480px) {
  .portfolio-header h2 { font-size: 24px; }
  .view-btn { width: 100%; text-align: center; }
  .big-left, .big-right, .small, .bottom-small { height: 220px; }
  .portfolio-content h3 { font-size: 19px; }
}

/*==========================
VIDEO SECTION
===========================*/

.video-section{
    padding:100px 20px;
    background:#081B38;
}

.video-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.video-title{
    color:#fff;
    font-size:64px;
    font-weight:700;
    text-align:center;
    margin-bottom:40px;
    font-family: "Roboto Condensed", sans-serif;
}

.video-card{
    position:relative;
    width:100%;
    max-width:900px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.video-card video{
    width:100%;
    display:block;
    border-radius:25px;
}

.play-btn{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#1565ff;
    font-size:36px;
    cursor:pointer;
    transition:.3s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
}

@media(max-width:768px){

.video-title{
    font-size:34px;
}

.video-card{
    max-width:100%;
}

.play-btn{
    width:70px;
    height:70px;
    font-size:28px;
}

}