 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
      scroll-behavior: smooth;
    }

    body, html {
      background: linear-gradient(to right, #090909, #140000);
      color: #fff;
    }

  /*nav part*/

  .navbar {
  background: rgba(0, 0, 0, 0.6); 
  backdrop-filter: blur(10px);   
  border-radius: 0;            
  margin: 0 auto;
  padding: 12px 20px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
  position: fixed;
}

.container {
  margin: 0 auto;
  padding: 5px 0;
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 16px;    
  font-weight: bold;
  color: white;         
  user-select: none;    
}

.logopic {
  height: 60px;
  width: auto;
}

.navlinks a {
  position: relative;
  margin: 0 10px;
  text-decoration: none;
  color: #f1efef;
  font-weight: 700;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.navlinks a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #b23959;
  transition: width 0.3s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

.navlinks a:hover {
  color: #efe9ea;
}

.hire-btn {
  background: linear-gradient(to right, #361616, #320808);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 17px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hire-btn:hover {
  background: linear-gradient(to right, #6b3737, #b30000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(69, 10, 10, 0.6);
}

    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: white;
    }
/* hero paart*/

    .hero {
      padding-top: 120px;
    }

    .hero-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      gap: 40px;
    }

    .hero-text {
      text-align: center;
    }

    .hero-text h1 {
      font-size: 2.5rem;
    }

    .profession {
      font-size: 2rem;
      background: linear-gradient(90deg, #da5e5e, #e75a5a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .video-highlight {
      font-size: 3rem;
      background: linear-gradient(90deg, #cb5858, #565051);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .craft {
      margin-top: 15px;
      font-size: 1rem;
    }

    .hero-buttons {
      margin-top: 25px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-contact {
      background: #712c21;
      padding: 12px 25px;
      border-radius: 30px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    .btn-contact:hover {
  background: #e4948d;
  transform: translateY(-2px);
}

   .social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 22px;
  color: #ffffff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e94f37;
}

    .hero-image-box {
      text-align: center;
    }

    .hero-img {
      max-width: 100%;
      border-radius: 20px;
    }

    @media (min-width: 768px) {
      .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }

      .hero-text {
        flex: 1;
      }

      .hero-image-box {
        flex: 1;
      }
    }

    .hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  padding: 20px;
  
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 12px;
}

.stat-number {
  font-size: 50px;
  font-weight: bold;
  color: white;
}

.stat-label {
  font-size: 18px;
  color: #dcdcdc;
}


@media (max-width: 480px) {
  .stat-number {
    font-size: 30px;
  }
  .stat-label {
    font-size: 14px;
  }
}


    @media (max-width: 768px) {
      .navlinks {
        display: none;
        flex-direction: column;
        background-color: rgba(0,0,0,0.8);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 10px;
      }

      .navlinks.active {
        display: flex;
      }

      .hamburger {
        display: block;
      }
    }

   @media (max-width: 768px) {
  .video-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .video-track {
    animation: none;
    flex-wrap: nowrap;
    width: max-content;
  }

  .video-card {
    min-width: 260px;
    height: 160px;
    flex: 0 0 auto;
  }

  .video-card iframe {
    pointer-events: auto;
    width: 100%;
    height: 100%;
  }
}
/*vedio section*/

.video-section {
  padding: 50px 20px;
  /* background-color: #000; */
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}

.video-scroll-wrapper {
  overflow-x: auto; 
  overflow-y: hidden;
  white-space: nowrap; 
  scroll-behavior: smooth;
}

.video-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.video-scroll-wrapper:hover .video-track,
.video-track:hover {
  animation-play-state: paused !important;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.video-card {
  position: relative;
  flex: 0 0 auto;
  min-width: 300px;
  height: 170px;
  width: 500px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
}

.video-card:hover iframe {
  pointer-events: auto;
}




    @media (max-width: 768px) {
  .video-card {
    width: 320px;
    height: 180px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .video-card {
    width: 260px;
    height: 146px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

 /*shorts section*/

.shorts-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.shorts-section .section-title {
  font-size: 4rem;
  margin-bottom: 30px;
}

.shorts-section .video-scroll-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /* Hide scrollbar */
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}
.shorts-section .video-scroll-wrapper::-webkit-scrollbar {
  display: none;  
}

.shorts-section .video-track {
  display: flex;
  gap: 20px;
  width: max-content;
  
}

.shorts-card {
  
  flex: 0 0 auto;
  width: 250px;
  height: 444px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-right: 20px;
  cursor: pointer;
  position: relative; 
}

.shorts-thumbnail {
  width: 100%;       
  height: 100%;      
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('images/YouTube_play_button_icon_\(2013–2017\).svg.png') no-repeat center center;
  background-size: contain;
  opacity: 0.9;
  cursor: pointer;
  z-index: 10; 
  pointer-events: none; 
}




.shorts-card:hover .play-button {
  opacity: 1;
}

.shorts-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  pointer-events: auto;
  transition: transform 0.4s ease;
}

.shorts-card:hover iframe {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .shorts-card {
    width: 160px;
    height: 280px;
  }

  .shorts-section .section-title {
    font-size: 1.5rem;
  }

  .shorts-thumbnail {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.4s ease;
  }

  .shorts-card:hover .shorts-thumbnail {
    transform: scale(1.05);
  }
      .play-button {
    width: 48px;
    height: 34px;
  }
}


@media (max-width: 480px) {
  .shorts-card {
    width: 120px;
    height: 210px;
  }
    .play-button {
    width: 32px;
    height: 22px;
  }
  
}


/*slider section*/


.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 600vw;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slider-section {
  flex: 0 0 100vw;
  height: 100%;
  text-align: center;
  padding: 60px 20px;
}

.slider-section h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.slider-section video,
.slider-section img {
  max-width: 80%;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.thumbnail-grid {
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.thumbnail-grid img {
  width: 40%;
  max-height: 50vh;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* Dot Navigation */
.dot-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #fff;
}
.media-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.media-group video
 {
  width: 40%;
  max-height: 50vh;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.media-group iframe {
  width: 40%;
  height: 50vh; /* Force same height as videos */
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  object-fit: cover;
}


@media (max-width: 768px) {
  .slider-section {
    padding: 30px 10px;
  }

  .slider-section h2 {
    font-size: 1.8rem;
  }

  .slider-section video,
  .slider-section img {
    max-width: 90%;
    max-height: 30vh;
  }

  .media-group {
    flex-direction: column;
    gap: 16px;
  }

  .media-group video,
  .media-group iframe {
    width: 85%;
    max-height: 30vh;
  }

  .thumbnail-grid img {
    width: 85%;
    max-height: 30vh;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slider-section h2 {
    font-size: 1.5rem;
  }

  .media-group video,
  .media-group iframe {
    width: 95%;
    max-height: 25vh;
  }

  .thumbnail-grid img {
    width: 95%;
    max-height: 25vh;
  }
}





.skills-section {
  padding: 80px 20px;
  text-align: center;
  /* background: #120f1f; */
  color: white;
}

.skills-title {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #141414, #ca7986, #fdb99b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.skills-subtitle {
  font-size: 1.1rem;
  color: #efe6e6;
  margin-bottom: 50px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.skill-card {
  background: #1c020a;
  border-radius: 20px;
  padding: 25px;
  width: 150px;
  box-shadow: 0 8px 20px rgba(40, 7, 7, 0.4);
  transition: transform 0.3s;
}

.skill-card:hover {
  transform: translateY(-15px);
}

.skill-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}


.skill-card .percent {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e3e1e6;
}

.skill-card .label {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
}



.testimonial-section {
  padding: 60px 30px;
  background-color: #0f0103;
  color: white;
}

.testimonial-container-vertical {
  display: flex;
  gap: 100px; 
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0; 
}

.testimonial-text {
  flex: 1;
  max-width: 400px;
  padding: 20px;
}

.testimonial-text h2 {
  font-size: 3.5rem;
  color: #e6e3eb;
  margin-bottom: 20px;
}

.testimonial-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}

.testimonial-cards-vertical {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px; 
}

.testimonial-card {
   background: #1c020a;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  text-align: left;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #fff;
}

.position {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.feedback {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.video-scroll-wrapper,
.shorts-section .video-scroll-wrapper,
.slider-container {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #232222;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5e2323;
}


#contact {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  
}

.contact-left,
.contact-right {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

/* Form Box  */
.form-box {
  background-color: #200909;
  border-radius: 10px;
  padding: 30px;
}

/* Info Box  */
.info-box {
  
  border-radius: 10px;
  padding: 30px;
}

.contact-left h2 {
  font-size: 40px;
  color: #e5e0ea;
  margin: 0;
}

.contact-left p {
  margin: 20px 0;
  color: #ccc;
}

.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

input,
select,
textarea {
  flex: 1;
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: white;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

select {
  margin-top: 10px;
}

textarea {
  margin-top: 15px;
}

button {
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(to right, #313133, #9f5c5c);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  opacity: 0.9;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h4 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #e0dbdb;
}

.contact-info p {
  margin: 0;
  color: #eee;
  font-size: 18px;
}

.contact-info a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  color: #da6a73;
}


.footer {
  background-color: #0f0a0a;
  padding: 30px 20px;
  text-align: center;
  color: #bbb;
  border-top: 1px solid #222;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #df4444;
}
