    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: Arial, sans-serif;
      background: #ffffff;
      color: #222;
    }
    
        /* Header */
header {
    background: #fff;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 100px;
    width: auto;
    margin-left: 70px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* .brand-links {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #999;
} */

.brand-links a {
    text-decoration: none;
    color:#000000;
    transition: color 0.3s;
}

.brand-links a:hover {
    color: #4a90e2;
}

.brand-links span {
    color: #000000;
}

nav {
    /* background: #f5f5f5; */
    padding: 15px 30px;
    border-radius: 5px;
    padding-top: 0px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #000;
    transform: translateY(-2px);
}


        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }   

    /* ── HERO BANNER ── */
    .hero-banner img {
      width: 100%;
      display: block;
      margin-bottom: 60px;
    }

    /* ── SECTION BLOCKS ── */
    .section-block {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 90px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block.alt {
      background: #ffffff;
    }
    .section-block.reverse {
      flex-direction: row-reverse;
    }

/* sectionblock-3d */
.section-block-3d {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 90px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 70px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-3d.alt {
      background: #ffffff;
    }
    .section-block-3d.reverse {
      flex-direction: row-reverse;
    }

    /* sectionblock-2d */
.section-block-2d {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 40px;
      line-height: 1.5;
    }
    .section-block-2d.alt {
      background: #ffffff;
    }
    .section-block-2d.reverse {
      flex-direction: row-reverse;
    }


    /* sectionblock-DI */
.section-block-DI {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 90px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 90px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-DI.alt {
      background: #ffffff;
    }
    .section-block-DI.reverse {
      flex-direction: row-reverse;
    }
/* sectionblock-GD */
.section-block-GD {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 140px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-GD.alt {
      background: #ffffff;
    }
    .section-block-GD.reverse {
      flex-direction: row-reverse;
    }

     /* ── SECTION BLOCKS-BD ── */
    .section-block-BD {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 160px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-BD.alt {
      background: #ffffff;
    }
    .section-block-BD.reverse {
      flex-direction: row-reverse;
    }


    /* ── SECTION BLOCKS-VFX ── */
    .section-block-VFX {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 130px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-VFX.alt {
      background: #ffffff;
    }
    .section-block-VFX.reverse {
      flex-direction: row-reverse;
    }



    /* ── SECTION BLOCKS-SD ── */
    .section-block-SD {
        padding: 60px 100px;
      display: flex;
      align-items: center;
      gap: 200px;
      padding: 5px 60px;
      background: #fff;
      margin-left: 180px;
      margin-right: 170px;
      line-height: 1.5;
    }
    .section-block-SD.alt {
      background: #ffffff;
    }
    .section-block-SD.reverse {
      flex-direction: row-reverse;
    }

    
    /* all images size */
.section-image-AI {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-AI img {
      max-width: 350px;
      max-height: auto;
      object-fit: contain;
    }

    .section-image-CI {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-CI img {
      max-width: 520px;
      max-height: auto;
      object-fit: contain;
    }


.section-image-DI {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-DI img {
      max-width: 475px;
      max-height: auto;
      object-fit: contain;
    }

.section-image-GD {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-GD img {
      max-width: 460px;
      max-height: auto;
      object-fit: contain;
      margin-top: 80px;
    }

.section-image-BD {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-BD img {
      max-width: 400px;
      max-height: auto;
      object-fit: contain;
       margin-top: 100px;
    }

.section-image-2D {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-2D img {
      max-width: 700px;
      max-height: auto;
      object-fit: contain;
    }

    .section-image-3D {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-3D img {
      max-width: 600px;
      max-height: auto;
      object-fit: contain;
    }

        .section-image-VFX {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-VFX img {
      max-width: 460px;
      max-height: auto;
      object-fit: contain;
      margin-top: 130px;
    }

    .section-image-SD {
      flex: 0 0 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-image-SD img {
      max-width: 300px;
      max-height: auto;
      object-fit: contain;
      margin-top: 60px;
    }











    .section-content {
      flex: 1;
    }
    .section-content h2 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #111;
    }
    .section-content p {
      font-size: 17px;
      color: #333;
      margin-bottom: 16px;
    }
    .section-content ul {
      list-style: none;
      padding: 0;
    }
    .section-content ul li {
      font-size: 15px;
      color: #222;
      padding: 2px 0;
    }
    .section-content ul li::before {
      content: '• ';
      margin-right: 10px;
    }

    /* ── KNOW MORE BAR ── */
    .know-more-bar-CI {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;

      margin-left: 180px;
      margin-right: 200px;
      margin-bottom: 60px;
      margin-top: -10px;
    }
    .know-more-bar-CI a {
      color: #bcb4ff;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-CI a:hover { text-decoration: underline; }

     .know-more-bar-AI {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: center;

      margin-left: 500px;
      margin-right: 200px;
      margin-bottom: 60px;
      margin-top: -30px;
    }
    .know-more-bar-AI a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-AI a:hover { text-decoration: underline; } 


    .know-more-bar-DI {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;
      line-height: 1.5;

      margin-left: 655px;
      margin-right: 200px;
      margin-bottom: 60px;
      margin-top: -10px;
    }
    .know-more-bar-DI a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-DI a:hover { text-decoration: underline; } 

    .know-more-bar-GD {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;

      margin-left: 180px;
      margin-right: 200px;
      margin-bottom: 40px;
      margin-top: -50px;
    }
    .know-more-bar-GD a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-GD a:hover { text-decoration: underline; }


    .know-more-bar-BD {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;
      line-height: 1.5;

      margin-left: 740px;
      margin-right: 200px;
      margin-bottom: 90px;
      margin-top: -80px;
    }
    .know-more-bar-BD a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-BD a:hover { text-decoration: underline; }

    .know-more-bar-2D {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: center;

      margin-left: -105px;
      margin-right: 200px;
      margin-bottom: 60px;
      margin-top: -10px;
    }
    .know-more-bar-2D a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-2D a:hover { text-decoration: underline; }


    .know-more-bar-3D {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;
      line-height: 1.5;

      margin-left: 760px;
      margin-right: 170px;
      margin-bottom: -20px;
      margin-top: -10px;
    }
    .know-more-bar-3D a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-3D a:hover { text-decoration: underline; }


    .know-more-bar-VFX {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;
      line-height: 1.5;

      margin-left: 180px;
      margin-right: 200px;
      margin-bottom: 60px;
      margin-top: -115px;
    }
    .know-more-bar-VFX a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-VFX a:hover { text-decoration: underline; }


    .know-more-bar-SD {
      display:block;
      padding: 16px 60px;
      font-size: 18px;
      color: #333;
      text-align: left;
      line-height: 1.5;

      margin-left: 680px;
      /* margin-right: 200px; */
      margin-bottom: 60px;
      margin-top: -30px;
    }
    .know-more-bar-SD a {
      color: #bcb4ff;
      font-size: 18px;
      /* margin-left: 8px; */
      font-weight: 700;
      text-decoration: none;
    }
    .know-more-bar-SD a:hover { text-decoration: underline; }


/* footer */
    footer {
    background: #000;
    color: #fff;
    padding: 60px 100px 30px;
}

.footer-logo {
    margin-bottom: 10px;
    margin-left: 70px;
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h3 {
    /* font-size: 14px; */
    margin-bottom: 20px;
    color: #fff;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    letter-spacing: 1px;
}
.footer-works {
    margin-top: 135px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul a {
    text-decoration: none;
    color:#ffffff;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: #4a90e2;
}

.footer-column a,
.footer-column p {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #666;
    font-size: 12px;
}

/* Inner container to control width */
.footer-bottom-inner {
    /* max-width: 1200px;       */
    margin: 0 auto;
    padding: 30px 0px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left & Right text */
.footer-left,
.footer-right {
    margin: 0;
    white-space: nowrap;
}
.footer-icons{
  display: flex;
  justify-content: left;
  font-size: 0px;
  margin-top: 15px;
  gap: 10px;   /* space between icons */
}

/* Footer links */
.footer-right a {
    color: #666;
    text-decoration: none;
}

.footer-right a:hover {
    color: #4a90e2;
}