/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /* background: #fcf9f4; */
  color: #333;
  overflow-x: hidden;
}

/* ================= PAGE WRAPPER ================= */
.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: #fcf9f4; /* same as body */
}
/* ================= BANNER ================= */
.banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= SECTION SYSTEM ================= */
.section {
  padding: 15px 275px;
}

@media (max-width: 1024px) {
  .section {
    padding: 30px 50px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 25px 20px;
  }
}
.img-cont{
  margin-left: 70px;
}
/* ================= HEADINGS & TEXT ================= */
.section__heading {
  font-size: 44px;
  margin-bottom: 20px;
}

.section__content {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
}

.section__content__p p {
  font-size: 18px;
}

/* ================= INTRO SECTION ================= */
.section--intro .section__content {
  margin-top: 40px;
}

.intro__logo {
  width: 550px;
  max-width: 100%;
  display: block;
  margin: 0 auto 40px;
  margin-top: 20px;
}

/* ================= OVERVIEW SECTION ================= */
.section--overview .section__heading {
  margin-top: 25px;
}

.section--overview .section__content {
  margin-top: 10px;
}

.overview__logo-image {
  width: 400px;
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

/* ================= DESIGN SECTION ================= */
.design__intro {
  margin-top: 20px;
}

.design__element {
  margin-top: 30px;
}

.design__image {
  width: 500px;
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

.design__conclusion {
  margin-top: 15px;
}

.logo-ani{
  margin-bottom: 30px;
  margin-top: 40px;
}

/* ================= VIDEO SECTION ================= */
.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-container__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

/* Blur when paused */
.video-container.is-paused .video-container__video {
  filter: blur(6px);
}

.video-container__play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 64px;
  color: #fff;
}

.video-container.is-playing .video-container__play-button {
  display: none;
}

.animation__description {
  margin-top: 40px;
  max-width: 900px;
  margin-bottom: 60px;
}

.animation__description p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ================= FOOTER BANNER ================= */
.footbanner {
  margin-bottom: -5px;
  width: 100%;
}

.footbanner img {
  width: 100%;
  height: 17px;
}

/* ================= 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: 50px;
  width: 50px;
}

.footer-list{
  text-decoration: none;
  color: white;
}

.footer-list:hover{
  color: #4a90e2;
}

.contact {
  display: flex;
}

.label {
  width: 60px;        /* controls colon position */
}

.value {
  white-space: nowrap;
}

/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   TABLET VIEW (481px - 1024px)
   ============================================ */

@media (max-width: 1024px) {
    /* Banner - adjust height */
    .banner {
        height: 280px; /* Reduced from 350px */
    }

    /* Section - reduce padding */
    .section {
        padding: 25px 60px; /* Reduced from 275px */
    }

    /* Headings */
    .section__heading {
        font-size: 38px; /* Reduced from 44px */
        margin-bottom: 18px;
    }

    /* Content text */
    .section__content {
        font-size: 17px; /* Reduced from 18px */
        max-width: 100%;
    }

    .section__content__p p {
        font-size: 17px;
    }

    /* Intro logo */
    .intro__logo {
        width: 450px; /* Reduced from 550px */
        margin: 30px auto 35px;
    }

    .section--intro .section__content {
        margin-top: 35px;
    }

    /* Overview logo */
    .overview__logo-image {
        width: 350px; /* Reduced from 400px */
        margin: 25px auto;
    }

    /* Design images */
    .img-cont {
        margin-left: 40px; /* Reduced from 70px */
    }

    .design__image {
        width: 400px; /* Reduced from 500px */
        margin: 25px auto;
    }

    .design__intro {
        margin-top: 18px;
    }

    .design__element {
        margin-top: 25px;
    }

    .logo-ani {
        margin-bottom: 25px;
    }

    /* Video container */
    .video-container {
        max-width: 600px; /* Reduced from 700px */
    }

    .video-container__play-button {
        font-size: 56px; /* Reduced from 64px */
    }

    .animation__description {
        margin-top: 35px;
    }

    .animation__description p {
        font-size: 17px;
    }

    /* Footer banner */
    .footbanner img {
        height: 20px; /* Reduced from 25px */
    }

    /* Footer - reduce padding */
    footer {
        padding: 60px 60px 30px; /* Reduced from 150px */
    }

    .work-footer {
        margin-top: 60px; /* Reduced from 115px */
    }
}

/* ============================================
   MOBILE VIEW (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    /* Banner - mobile height */
   /* ✅ FIX BANNER FOR MOBILE */
  .banner {
    height: auto;              /* 🔑 remove forced height */
  }

  .banner__image {
    height: auto;
    width: 100%;
    object-fit: contain;       /* 🔑 show full image */
  }


    /* Section - minimal padding */
    .section {
        padding: 10px 20px; /* Reduced from 275px */
    }

    /* Headings */
    .section__heading {
        font-size: 28px; /* Reduced from 44px */
        margin-bottom: 15px;
        line-height: 1.3;
    }

    /* Content text */
    .section__content {
        font-size: 16px; /* Reduced from 18px */
        line-height: 1.6;
        max-width: 100%;
    }

    .section__content__p p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Intro section */
    .intro__logo {
        width: 100%;
        max-width: 300px; /* Reduced from 550px */
        margin: 25px auto 30px;
    }

    .section--intro .section__content {
        margin-top: 25px;
    }

    /* Overview section */
    .section--overview .section__heading {
        margin-top: 0;
    }

    .section--overview .section__content {
        margin-top: 15px;
    }

    .overview__logo-image {
        width: 100%;
        max-width: 280px; /* Reduced from 400px */
        margin: 25px auto 10px;
    }

    /* Design section */
    .design__intro {
        margin-top: 15px;
    }

    .design__element {
        margin-top: 20px;
    }

    /* Remove left margin on mobile - center images */
    .img-cont {
        margin-left: 0; /* Remove 70px offset */
        text-align: center;
    }

    .design__image {
        width: 100%;
        max-width: 320px; /* Reduced from 500px */
        margin: 20px auto;
    }

    .design__conclusion {
        margin-top: 15px;
    }

    /* Logo animation section */
    .logo-ani {
        margin-bottom: 20px;
    }

    /* Video wrapper */
    .video-wrapper {
        width: 100%;
    }

    .video-container {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 10px;
    }

    .video-container__video {
        width: 100%;
        height: 100%;
    }

    .video-container__play-button {
        font-size: 48px; /* Reduced from 64px */
    }

    /* Animation description */
    .animation__description {
        margin-top: 30px;
        max-width: 100%;
    }

    .animation__description p {
        font-size: 15px;
        margin-top: 12px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    /* Footer banner */
    .footbanner {
        margin-bottom: -3px;
    }

    .footbanner img {
        height: 15px; /* Reduced from 25px */
    }

    /* Footer - mobile optimization */
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column; /* Stack footer sections */
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 24px; /* Reduced from 28px */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px; /* Reduced from 16px */
    }

    /* Remove large top margin when stacked */
    .work-footer {
        margin-top: 30px;
    }

    /* Footer bottom - stack vertically */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        font-size: 12px;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    /* Social icons - proper spacing */
     .social-cont {
        display: flex;
        gap: 5px;
        /* justify-content: center; */
        margin-top: 15px;
        margin-left: -5px;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 380px)
   ============================================ */

@media (max-width: 380px) {
    /* Extra small screens - further reductions */
    .banner {
        height: 180px;
    }

    .section__heading {
        font-size: 24px;
    }

    .section__content {
        font-size: 15px;
    }

    .section__content__p p {
        font-size: 15px;
    }

    .intro__logo {
        max-width: 260px;
    }

    .overview__logo-image {
        max-width: 240px;
    }

    .design__image {
        max-width: 280px;
    }

    .video-container__play-button {
        font-size: 42px;
    }

    .animation__description p {
        font-size: 14px;
    }

    .footbanner img {
        height: 12px;
    }
}