 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

            
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
             background-color: #fff1fa;
        }

        /* Header */
        header {
             display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 130px;
    background-color: #fff1fa;

    /* box-shadow: 0 2px 10px rgb(255, 255, 255);
    position: relative;
    z-index: 10; */
        }

.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    /* background: #F3F3F3; same as body */
    background-color: #fff1fa;
}


        .logo img {
            height: 80px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #000;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            padding-bottom: 5px;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #5c83e6;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: #5c83e6;
            transform: translateY(-2px);
        }



        /* Hero Section */
        .hero {
            padding: 30px 130px;
            background-color: #fff1fa;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: bold;
            color: #5c83e6;
            margin-bottom: 10px;
            display: inline-block;
        }

        .hero h1 span {
            color: #000;
        }

        .hero .tagline {
            font-size: 30px;
            display: inline-block;
            margin-left: 20px;
            margin-bottom: 10px;
            vertical-align: middle;
            font-weight: 100;
        }
        .hero .tag {
            font-size: 30px;
            display: inline-block;
            margin-left: 20px;
            margin-bottom: 20px;
            vertical-align: middle;
            color: #5c83e6;
            font-weight: bolder;
        }

        .hero h2 {
            font-size: 48px;
            font-weight: 500;
        }

        .hero h2 span {
            color: #5c83e6;
        }

        /* Works Section */
        .works {
            padding: 30px 130px 50px 150px;
            background-color: #fff1fa;
        }

        .work-item {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }

        .work-item-1 {
           gap:130px
        }
        /* .work-item:nth-child(even) {
            /* flex-direction: row-reverse; */

        .video-container {
            flex: 1;
            max-width: 700px;
            background-color: #000;
            position: relative;
            padding-bottom: 39.375%;
            cursor: pointer;
            overflow: hidden;
            border-radius: 8px;
        }

        .work-item-2{
            gap: 180px;
        }
      

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #fff1fa;
        }

          .video-1{
            background-color: #ffffff;
        }
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 50px solid #000;
            border-top: 30px solid transparent;
            border-bottom: 30px solid transparent;
            cursor: pointer;
            z-index: 10;
        }

 .work-info {
    flex: 0 0 300px;
    text-align: center;
}

.work-info img {
    max-width: 200px;
    margin-bottom: 20px;
}

.work-info h3 {
    font-size: 32px;
    color: #5c83e6;
    margin-bottom: 10px;
}

/* Green variant heading */
.work-info.green h3 {
    color: #5A9E6F;
}

/* ================= LINK ================= */
.work-info a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    /* 🔑 SAME transition timing */
    transition: color 0.3s ease;
}


.know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.playbutton-icon {
  width: 20px;
  height: 20px;
  background-color: #5c83e6;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 12px;

  /* tiny optical fix */
  padding-left: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more:hover {
  color: #e49424;

}

.know-more:hover .playbutton-icon {
  background-color: #e49424;

}


/* Video 1 */
/* ===============================
   VIDEO FUNCTIONALITY STATES
   =============================== */

/* Hide play button while playing */
.video-container.playing .play-button {
  display: none;
}

/* Blur video when paused */
.video-container.paused video {
  filter: blur(6px);
}

/* Smooth transition */
.video-container video {
  transition: filter 0.35s ease;
}



.video-2 .play-button {
  border-left-color: #fff;   /* white triangle */
}

/* ================= HOVER ================= */
.work-info a:hover {
    color: #e49424;
}

.know-more:hover {
  color: #e49424;
}

.know-more:hover .play-icon {
  background-color: #e49424;
  transform: scale(1.05); /* optional – feels premium */
}

/* ================= GREEN VARIANT ================= */
.know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;

  transition: color 0.3s ease;
}

.play-icon {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 12px;
  padding-left: 3px;
  padding-top: 1px;

  color: #fff;
  background-color: #5A9E6F;   /* 💚 green */

  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover sync */
.know-more:hover {
  color: #5A9E6F;
}

.know-more:hover .play-icon {
  background-color: #5A9E6F;
  /* transform: scale(1.05); */
}


.know-more:hover .play-icon {
  background-color: #e49424;
  transform: scale(1.05); /* optional – feels premium */
}


/* Footer */

footer {
  background-color: #3C3C3C;
  color: #fff;
  padding: 60px 150px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid #666;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.work-footer{
  margin-top: 115px;
}

.social-cont{
  margin-top: 15px;
  margin-left: -5px;
}



.social-icon{
  height: 60px;
  width: 60px;
}

.footer-list{
  text-decoration: none;
  color: white;
}

.footer-list:hover{
  color: #5c83e6;
}

.contact {
  display: flex;
}

.label {
  width: 60px;        /* controls colon position */
}

.value {
  white-space: nowrap;
}

        /* Responsive */
        @media (max-width: 1024px) {
            header {
                padding: 20px 40px;
            }

            .hero {
                padding: 60px 40px;
            }

            .hero h1 {
                font-size: 70px;
            }

            .hero h2 {
                font-size: 38px;
            }

            .works {
                padding: 40px 40px;
            }

            .work-item {
                gap: 30px;
            }

            footer {
                padding: 40px 40px 20px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav ul {
                gap: 15px;
                font-size: 16px;
            }

            .hero {
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 50px;
            }

            .hero h2 {
                font-size: 28px;
            }

            .works {
                padding: 30px 20px;
            }

            .work-item,
            .work-item:nth-child(even) {
                flex-direction: column;
            }

            .work-info {
                flex: 1;
            }

            .footer-content {
                flex-direction: column;
                gap: 40px;
            }

            footer {
                padding: 30px 20px 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }

            .works {
                padding: 0px 40px;
            }
        }

        @media (max-width: 480px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero h2 {
                font-size: 24px;
            }

            .work-item {
                margin-bottom: 50px;
            }
        }

        /* ================================
   TABLET VIEW (<= 1024px)
   ================================ */
@media (max-width: 1024px) {

  /* Works section tightening */
  .works {
    padding: 0px 40px;
  }

  .work-item,
  .work-item-1,
  .work-item-2 {
    gap: 40px;
  }

  /* Keep side-by-side but balanced */
  .work-info {
    flex: 0 0 260px;
  }

  .video-container {
    max-width: 100%;
  }
}


/* ================================
   MOBILE VIEW (<= 768px)
   ================================ */
@media (max-width: 768px) {

  /* Hero fixes */
  .hero h1 {
    font-size: 44px;
    display: block;
  }

  .hero .tag,
  .hero .tagline {
    font-size: 20px;
    margin-left: 0;
    display: block;
  }

  .hero h2 {
    font-size: 26px;
    margin-top: 10px;
  }

  /* =====================
     WORKS SECTION
     ===================== */

  .work-item,
  .work-item-1,
  .work-item-2 {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
  }

  /* 🔑 KEY FIX: proper video proportion */
  .video-container {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 – perfect for mobile */
    border-radius: 10px;
  }

  .work-info {
    flex: unset;
    text-align: center;
  }

  .work-info img {
    max-width: 160px;
  }

  .work-info h3 {
    font-size: 26px;
  }

  /* Ensure second work video appears BELOW text */
  .work-item-2 {
    flex-direction: column-reverse;
  }

  /* Footer stacking */
  .footer-content {
    gap: 50px;
  }

  .work-footer {
    margin-top: 40px;
  }

    .hero > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* keeps left alignment clean */
    gap: 8px;
  }

  .hero h1 {
    margin-bottom: 0;
    line-height: 1;
  }

  .hero .tag,
  .hero .tagline {
    margin-left: 0;        /* 🔑 fixes misalignment */
    display: inline-block;
    font-size: 20px;
  } 

    .hero .tag,
  .hero .tagline {
    display: inline;
  }

  .top-line{
    line-height: -10px;
  }
    .work-item {
    flex-direction: column-reverse;
  }

  .social-cont{
  margin-top: 15px;
  /* color: #e49424; */
  margin-left: -5px;
}
}


/* ================================
   SMALL MOBILE (<= 480px)
   ================================ */
@media (max-width: 480px) {

  header {
    padding: 15px;
  }

  nav ul {
    gap: 12px;
  }

  nav ul li a {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .video-container {
    padding-bottom: 60%;
  }

  .footer-section h4 {
    font-size: 22px;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
    text-align: center;
  }

  .footer-bottom-right {
    justify-content: center;
  }

  .top-line{
    line-height: -10px;
  }


  
}
