  @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Bungee&family=Raleway:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

  @font-face {
    font-family: "CustomFont";
    src: url("/fonts/659b8cd3ac962913174d819f_PP\ Hatton\ Medium\ 500.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  }

  body {
    margin: 0;
    padding: 0;
    background: white;
    overflow-x: hidden;

  }

  /* Hero Section */
  .hero {
    height: 600px;
    background: linear-gradient(rgba(255, 166, 0, 0.064), rgba(0, 0, 0, 0.69)),
      url("../images/6721dbaa8bb18167470b6e57_img5.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.2) inset;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    overflow: hidden;
  }

  .hero-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-left: 30px;
    font-family: "Raleway", sans-serif;
  }

  .hero-title {
    font-family: "Raleway", sans-serif;
    font-size: 9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }

  /* Hero Responsive */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 7rem;
    }
  }

  @media (max-width: 768px) {
    .hero {
      height: 400px;
    }

    .hero-content {
      bottom: 15%;
      left: 5%;
      right: 5%;
    }

    .hero-title {
      font-size: 4rem;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      margin-left: 15px;
    }
  }

  @media (max-width: 480px) {
    .hero {
      height: 350px;
    }

    .hero-title {
      font-size: 3rem;
    }

    .hero-subtitle {
      font-size: 1rem;
      margin-left: 10px;
    }
  }

  /* Stars container */
  .stars {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }

  .star svg {
    width: 60px;
    height: 60px;
    fill: gold;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    animation: shine 0.6s forwards;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
  }

  @keyframes shine {
    0% {
      opacity: 0;
      transform: scale(0.5) rotate(0deg);
    }

    50% {
      opacity: 1;
      transform: scale(1.2) rotate(20deg);
    }

    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

  /* Card Styling */
  .achievement-card {
    width: 80%;
    max-width: 900px;
    background: linear-gradient(145deg, #e0f0ff, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 50px;
    text-align: center;
    transform: translateY(200px);
    opacity: 0;
    animation: slideUp 1s forwards ease-out;
    animation-delay: 1.5s;
    position: relative;
    overflow: hidden;
  }

  /* Glossy Effect */
  .achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    transform: skewX(-20deg);
    animation: shineCard 2s infinite;
  }

  @keyframes shineCard {
    0% {
      left: -100%;
    }

    50% {
      left: 120%;
    }

    100% {
      left: 120%;
    }
  }

  @keyframes slideUp {
    0% {
      transform: translateY(200px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Animated Heading */
  .animated-heading {
    font-size: 56px;
    font-weight: bold;
    color: #004080;
    display: inline-block;
  }

  .animated-heading span {
    display: inline-block;
    opacity: 0;
  }

  @keyframes letterInLeft {
    0% {
      transform: translateX(-80px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes letterInRight {
    0% {
      transform: translateX(80px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Paragraph styling */
  p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-top: 20px;
  }

  .design-section {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background: url("/images/659e28a2ff755cf625a6b68e_Group\ 1000003185.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .design-content {
    font-size: 6rem;
    font-weight: 500;
    color: #111;
    line-height: 1.3;
    font-family: "Sansation", sans-serif;
    max-width: 100%;
  }

  .design-content img {
    width: 120px;
    height: auto;
    vertical-align: middle;
    margin: 0 15px;
    border-radius: 4px;
  }

  .design-content span {
    display: inline-block;
    font-family: "CustomFont", serif;
  }

  @media (max-width: 1200px) {
    .design-content {
      font-size: 4.5rem;
    }

    .design-content img {
      width: 100px;
      margin: 0 10px;
    }
  }

  @media (max-width: 768px) {
    .design-section {
      height: 70vh;
      min-height: 400px;
    }

    .design-content {
      font-size: 2.5rem;
      padding: 0 10px;
    }

    .design-content img {
      width: 60px;
      margin: 0 8px;
    }
  }

  @media (max-width: 480px) {
    .design-section {
      height: 60vh;
      min-height: 350px;
    }

    .design-content {
      font-size: 1.8rem;
      line-height: 1.4;
    }

    .design-content img {
      width: 40px;
      margin: 0 5px;
    }
  }

  .gallery-container {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .scrolling-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
  }

  .gallery-track {
    display: flex;
    height: 100%;
    width: calc(400px * 12);
    /* 6 items * 2 sets * width */
    animation: infiniteScroll 30s linear infinite;
  }

  .gallery-track:hover {
    animation-play-state: paused;
  }

  @keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
      /* Move by half (one complete set) */
    }
  }

  /* Gallery Responsive */
  @media (max-width: 1200px) {
    .gallery-container {
      height: 80vh;
    }

    .scrolling-wrapper {
      height: 500px;
    }
  }

  @media (max-width: 768px) {
    .gallery-container {
      height: 60vh;
      min-height: 400px;
    }

    .scrolling-wrapper {
      height: 400px;
    }

    .gallery-track {
      width: calc(300px * 12);
    }
  }

  @media (max-width: 480px) {
    .gallery-container {
      height: 50vh;
      min-height: 300px;
    }

    .scrolling-wrapper {
      height: 300px;
    }

    .gallery-track {
      width: calc(250px * 12);
    }
  }

  .service-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .service-text {
    max-width: 700px;
  }

  .service-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }

  .service-label::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #000;
    margin-right: 10px;
  }

  .service-heading {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #000;
    font-family: "Sansation", sans-serif;
  }

  .service-heading span {
    display: inline-block;
    font-family: "CustomFont", serif;
  }

  .service-btn {
    align-self: center;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    white-space: nowrap;
  }

  .service-btn:hover {
    background: #333;
  }

  @media (max-width: 1024px) {
    .service-section {
      padding: 60px 30px;
    }

    .service-heading {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .service-section {
      flex-direction: column;
      align-items: flex-start;
      padding: 50px 20px;
    }

    .service-btn {
      margin-top: 30px;
      align-self: flex-start;
    }

    .service-heading {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .service-section {
      padding: 40px 15px;
    }

    .service-heading {
      font-size: 1.8rem;
    }

    .service-btn {
      padding: 12px 24px;
      font-size: 14px;
    }
  }

  .gallery-item {
    position: relative;
    width: 400px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @media (max-width: 768px) {
    .gallery-item {
      width: 300px;
      margin-right: 15px;
    }
  }

  @media (max-width: 480px) {
    .gallery-item {
      width: 250px;
      margin-right: 10px;
    }
  }

  .gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #ffffff;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
  }

  .gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .content {
    color: white;
    max-width: 100%;
  }

  .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  .gallery-item:hover .title {
    opacity: 1;
    transform: translateY(0);
  }

  .description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }

  .gallery-item:hover .description {
    opacity: 0.9;
    color: #fff;
    transform: translateY(0);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }

  .gallery-item:hover .cta-button {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px) translateY(0);
  }

  .cta-button svg {
    transition: transform 0.3s ease;
  }

  .cta-button:hover svg {
    transform: translateX(2px);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .title {
      font-size: 22px;
    }

    .description {
      font-size: 13px;
    }

    .overlay {
      padding: 24px;
    }

    .cta-button {
      padding: 10px 20px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .title {
      font-size: 18px;
    }

    .description {
      font-size: 12px;
    }

    .overlay {
      padding: 20px;
    }

    .cta-button {
      padding: 8px 16px;
      font-size: 12px;
    }
  }

  .service-section11 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .service-text11 {
    max-width: 1200px;
    width: 100%;
  }

  .service-label11 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
  }

  .service-label11::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #000;
    margin-right: 10px;
  }

  .service-heading11 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #000;
    font-family: "Sansation", sans-serif;
  }

  .service-heading11 span {
    display: inline-block;
    font-family: "CustomFont", serif;
  }

  @media (max-width: 1024px) {
    .service-section11 {
      padding: 60px 30px;
    }

    .service-heading11 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .service-section11 {
      padding: 50px 20px;
      text-align: left;
    }

    .service-label11 {
      justify-content: flex-start;
    }

    .service-heading11 {
      font-size: 2rem;
      text-align: left;
    }
  }

  @media (max-width: 480px) {
    .service-section11 {
      padding: 40px 15px;
    }

    .service-heading11 {
      font-size: 1.8rem;
    }
  }

  .icon_home {
    width: 200px;
    height: 100px;
    margin-top: 30px;
  }

  /*** 

====================================================================
		Testimonial Section
====================================================================

***/

  .large-container {
    position: static;
    max-width: 1580px;
    padding: 50px 30px;
    margin: 0 auto;
    margin-top: 70px;
  }

  @media (max-width: 1200px) {
    .large-container {
      max-width: 1200px;
      padding: 40px 25px;
    }
  }

  @media (max-width: 768px) {
    .large-container {
      padding: 30px 20px;
      margin-top: 50px;
    }
  }

  @media (max-width: 480px) {
    .large-container {
      padding: 20px 15px;
      margin-top: 30px;
    }
  }

  .testimonial-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: hidden;

    &:before {
      position: absolute;
      left: -200px;
      top: 22%;
      background-image: url(http://t.commonsupport.com/adro/images/icons/ring-circle.png);
      background-repeat: no-repeat;
      background-position: center;
      width: 701px;
      height: 756px;
      content: "";
      -webkit-animation: fa-spin 25s infinite alternate;
      -moz-animation: fa-spin 25s infinite alternate;
      -ms-animation: fa-spin 25s infinite alternate;
      -o-animation: fa-spin 25s infinite alternate;
      animation: fa-spin 25s infinite alternate;
    }

    .sec-title {
      position: relative;
      margin-bottom: 115px;
      margin-left: 10%;

    }

    .Testimonial_title {
      margin-bottom: 20px;
    }

    .Testimonial_title {
      font-size: 5rem;
      line-height: 1.3;
      font-weight: 500;
      color: #000;
      font-family: "Sansation", sans-serif;
    }

    @media (max-width: 1200px) {
      .Testimonial_title {
        font-size: 4rem;
      }
    }

    @media (max-width: 768px) {
      .Testimonial_title {
        font-size: 3rem;
      }
    }

    @media (max-width: 480px) {
      .Testimonial_title {
        font-size: 2.5rem;
      }
    }

    .sec-title h2 {
      margin-left: 10px;
      font-family: "CustomFont", serif;
    }

    .testimonial-carousel {
      position: relative;
      max-width: 1100px;
      margin: 0 -50px;
      margin-left: 5%;
    }
  }

  .testimonial-block {
    position: relative;
    padding: 50px;
  }

  .testimonial-block .inner-box {
    padding: 80px 105px;
    background-color: #ffffff;
    box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
  }

  .testimonial-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #282331;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
  }

  .testimonial-block .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
  }

  .testimonial-block .thumb {
    position: absolute;
    left: 0;
    top: 20px;
    height: 92px;
    width: 92px;
  }

  .testimonial-block .thumb img {
    border: 6px solid #e5e6fa;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
  }

  .testimonial-block .name {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 1.2em;
    color: #382c4d;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Niramit", sans-serif;
  }

  .testimonial-block .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #8053f7;
    font-weight: 400;
    font-family: "Muli", sans-serif;
  }

  /* Testimonial Responsive Styles */
  @media (max-width: 1200px) {
    .testimonial-block .inner-box {
      padding: 60px 80px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-block {
      padding: 30px;
    }

    .testimonial-block .inner-box {
      padding: 40px 50px;
    }

    .testimonial-block .info-box {
      padding-left: 100px;
    }

    .testimonial-block .thumb {
      width: 80px;
      height: 80px;
    }

    .testimonial-block .text {
      font-size: 16px;
      line-height: 28px;
      margin-bottom: 40px;
    }

    .testimonial-block .name {
      font-size: 19px;
    }

    .testimonial-block .designation {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .testimonial-block {
      padding: 20px;
    }

    .testimonial-block .inner-box {
      padding: 30px 25px;
    }

    .testimonial-block .info-box {
      padding-left: 0;
      padding-top: 20px;
      text-align: center;
    }

    .testimonial-block .thumb {
      position: relative;
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      left: auto;
      top: auto;
    }

    .testimonial-block .text {
      font-size: 15px;
      line-height: 26px;
      margin-bottom: 30px;
    }

    .testimonial-block .name {
      font-size: 18px;
    }

    .testimonial-block .designation {
      font-size: 14px;
    }
  }

  .testimonial-carousel {
    .owl-nav {
      position: absolute;
      right: 75px;
      bottom: 70px;
    }

    .owl-next,
    .owl-prev {
      position: relative;
      display: inline-block;
      height: 75px;
      width: 75px;
      line-height: 75px;
      text-align: center;
      border-radius: 50%;
      background-color: #ffffff;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

    .owl-next:hover,
    .owl-prev:hover {
      background-color: #00df97;
      box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
    }
  }

  .arrow-right,
  .arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
  }

  .arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
  }

  .testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;

    .image {
      position: relative;
      margin-right: 0;

      img {
        display: inline-block;
        max-width: 100%;
        height: auto;
      }
    }
  }

  @media only screen and (max-width: 767px) {
    .testimonial-section .sec-title {
      margin-bottom: 50px;
    }

    .testimonial-block {
      padding: 0;

      .inner-box {
        box-shadow: none;
        border: 2px solid #f1f1f1;
      }
    }

    .testimonial-carousel {
      .owl-nav {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        text-align: center;
      }

      .owl-next,
      .owl-prev {
        border: 2px solid #f1f1f1;
      }
    }
  }

  @media only screen and (max-width: 1366px) {
    .large-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  .slider-container {
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;
    height: 100vh;
    min-height: 600px;
    background-image: url('Images/bg-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  @media (max-width: 1200px) {
    .slider-container {
      width: 95%;
      height: 80vh;
      min-height: 500px;
    }
  }

  @media (max-width: 768px) {
    .slider-container {
      width: 100%;
      height: 70vh;
      min-height: 400px;
      padding: 0 10px;
    }
  }

  @media (max-width: 480px) {
    .slider-container {
      height: 60vh;
      min-height: 350px;
      padding: 0 5px;
    }
  }

  @media (max-width: 580px) {
    .slider-container {
      height: 60vh;
      min-height: 350px;
      padding: 0 5px;
    }
  }

  .slider-images {
    display: flex;
    align-items: center;
    gap: 21px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 0 10px;
  }

  @media (max-width: 768px) {
    .slider-images {
      gap: 15px;
      padding: 0 5px;
      overflow-x: auto;
      overflow-y: hidden;
    }
  }

  @media (max-width: 480px) {
    .slider-images {
      gap: 10px;
      padding: 0;
      overflow-x: auto;
      overflow-y: hidden;
    }
  }

  .slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .slider-img {
    width: 90px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: 0.7s ease;
    flex-shrink: 0;
  }

  .slider-images .slider-img:first-child,
  .slider-images .slider-img:last-child {
    height: 480px;
  }

  .slider-images .slider-img:nth-child(2),
  .slider-images .slider-img:nth-child(6) {
    height: 560px;
  }

  .slider-images .slider-img:nth-child(3),
  .slider-images .slider-img:nth-child(4),
  .slider-images .slider-img:nth-child(5) {
    height: 665px;
  }

  @media (max-width: 1200px) {
    .slider-img {
      width: 80px;
    }

    .slider-images .slider-img:first-child,
    .slider-images .slider-img:last-child {
      height: 400px;
    }

    .slider-images .slider-img:nth-child(2),
    .slider-images .slider-img:nth-child(6) {
      height: 480px;
    }

    .slider-images .slider-img:nth-child(3),
    .slider-images .slider-img:nth-child(4),
    .slider-images .slider-img:nth-child(5) {
      height: 560px;
    }
  }

  @media (max-width: 768px) {
    .slider-img {
      width: 60px;
    }

    .slider-images .slider-img:first-child,
    .slider-images .slider-img:last-child {
      height: 300px;
    }

    .slider-images .slider-img:nth-child(2),
    .slider-images .slider-img:nth-child(6) {
      height: 360px;
    }

    .slider-images .slider-img:nth-child(3),
    .slider-images .slider-img:nth-child(4),
    .slider-images .slider-img:nth-child(5) {
      height: 420px;
    }
  }

  @media (max-width: 480px) {
    .slider-img {
      width: 45px;
    }

    .slider-images .slider-img:first-child,
    .slider-images .slider-img:last-child {
      height: 200px;
    }

    .slider-images .slider-img:nth-child(2),
    .slider-images .slider-img:nth-child(6) {
      height: 240px;
    }

    .slider-images .slider-img:nth-child(3),
    .slider-images .slider-img:nth-child(4),
    .slider-images .slider-img:nth-child(5) {
      height: 280px;
    }
  }

  .slider-container h1 {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: -10%;
    transform: rotate(270deg);
    transition: 0.7s ease;
  }

  .details {
    position: absolute;
    bottom: 43px;
    left: 43px;
  }

  .details h2 {
    font-family: "Jost", sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: left;
    line-height: 44px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.7s ease;
    display: none;
  }

  .details p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 33px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.7s ease;
    display: none;
  }

  @media (max-width: 768px) {
    .details h2 {
      font-size: 20px;
      line-height: 32px;
    }

    .details p {
      font-size: 16px;
      line-height: 26px;
    }
  }

  @media (max-width: 480px) {
    .details h2 {
      font-size: 16px;
      line-height: 24px;
    }

    .details p {
      font-size: 14px;
      line-height: 20px;
    }
  }

  .slider-img.active {
    width: 766px !important;
    height: 750px !important;
  }

  @media (max-width: 1200px) {
    .slider-img.active {
      width: 600px !important;
      height: 600px !important;
    }
  }

  @media (max-width: 768px) {
    .slider-img.active {
      width: 400px !important;
      height: 450px !important;
    }
  }

  @media (max-width: 480px) {
    .slider-img.active {
      width: 280px !important;
      height: 320px !important;
    }
  }

  .slider-img.active h1 {
    display: none;
  }

  .slider-img.active .details p,
  .slider-img.active .details h2 {
    display: block;
  }

  .hero_bottom1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    gap: 130px;

    margin-top: 100px;
  }

  .hero_bottom-heading1 {
    flex: 1;
    font-size: 3rem;
    width: 1900px;
    color: #000000;
    font-weight: 100;
    line-height: 1.2;
    border-left: 2px solid #ccc;
    padding-left: 50px;
  }

  .hero_bottom-heading span {
    font-style: italic;
  }

  /* Right Content */
  .hero_bottom-content {
    flex: 1;
    font-size: 1rem;
    color: #333;

    line-height: 1.6;
    text-align: justify;
  }

  .hero_bottom-content p {
    font-family: "Sansation", sans-serif;
  }


  /* Button */
  .hero_bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
  }

  .hero_bottom-btn:hover {
    background: #333;
  }

  .hero_bottom-btn::after {
    content: "→";
    margin-left: 10px;
    transition: 0.3s;
  }

  .hero_bottom-btn:hover::after {
    transform: translateX(4px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero_bottom {
      flex-direction: column;
      text-align: center;
    }

    .hero_bottom-heading {
      border-left: none;
      padding-left: 0;
      border-top: 2px solid #ccc;
      padding-top: 20px;
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
      max-width: 728px;
    }
  }

  @media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
      max-width: none;
    }

    .slide-in-heading {
      font-size: 6rem;
      line-height: 6rem;
    }

    .hero-text-block {
      font-size: 1.8rem;
      line-height: 2rem;
    }
  }

  /* Con
tact Section Responsive */
  .last_contact_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 60px;
    margin-top: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .last_contact_section .content {
    flex: 1;
    max-width: 600px;
  }

  .last_contact_section .content h1 {
    font-size: 3rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Sansation", sans-serif;
  }

  .last_contact_section .content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Sansation", sans-serif;
  }

  .last_contact_section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
  }

  .last_contact_section .btn:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .last_contact_section .image {
    flex: 1;
    max-width: 500px;
  }

  .last_contact_section .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Contact Section Responsive */
  @media (max-width: 1200px) {
    .last_contact_section {
      padding: 60px 5%;
      gap: 40px;
    }

    .last_contact_section .content h1 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .last_contact_section {
      flex-direction: column;
      text-align: center;
      padding: 50px 20px;
      gap: 30px;
    }

    .last_contact_section .content h1 {
      font-size: 2rem;
    }

    .last_contact_section .content p {
      font-size: 1rem;
    }
   
  }

  @media (max-width: 480px) {
    .last_contact_section {
      padding: 40px 15px;
    }

    .last_contact_section .content h1 {
      font-size: 1.8rem;
    }

    .last_contact_section .btn {
      padding: 12px 24px;
      font-size: 0.9rem;
    }
   
  }

  /* General Mobile Optimizations */
  @media (max-width: 768px) {
    body {
      font-size: 14px;
    }

    * {
      box-sizing: border-box;
    }
  }

  /* Prevent horizontal scroll on mobile */
  @media (max-width: 768px) {

    html,
    body {
      overflow-x: hidden;
      width: 100%;
    }
  }

  /*
 Additional Mobile Optimizations */
  @media (max-width: 480px) {
    .slider-container h1 {
      font-size: 16px;
    }

    .details {
      bottom: 20px;
      left: 20px;
    }

    .testimonial-section .sec-title {
      margin-left: 5%;
    }

    .service-label11 {
      margin-left: 0;
    }
  }

  /* Ultra-wide screen optimizations */
  @media (min-width: 1920px) {
    .hero-title {
      font-size: 12rem;
    }

    .design-content {
      font-size: 8rem;
    }

    .service-heading {
      font-size: 4rem;
    }

    .service-heading11 {
      font-size: 4rem;
    }
  }

  /* Tablet landscape optimizations */
  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
      font-size: 6rem;
    }

    .design-content {
      font-size: 4rem;
    }

    .slider-container {
      width: 95%;
    }
  }

  /* ============ SECOND SECTION (3D Model) ============ */
.model-section {
  background: #fff;
  padding: 80px 5%; /* less padding = more full width */
}

.model-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Text */
.model-text {
  flex: 1;
  min-width: 400px;
  animation: fadeInLeft 1s ease;
}

.model-title {
font-size: 3rem;
      line-height: 1.3;
      font-weight: 500;
      color: #000;
      font-family: "Sansation", sans-serif;
}
.model-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 6px;
  background: linear-gradient(90deg, #004080, #e67e22);
  margin-top: 10px;
  border-radius: 4px;
}

.model-description {
  font-size: 22px;
  line-height: 1.9;
  color: #444;
}

.model-description {
  font-size: 20px;
  line-height: 1.9;
  color: #111; /* pure dark black for rich look */
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: justify; /* makes it professional */
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  margin-top: 15px;
  position: relative;
}

.model-description::before {
  content: "❝";
  font-size: 38px;
  color: #e67e22;
  position: absolute;
  left: -25px;
  top: -10px;
}

.model-description::after {
  content: "❞";
  font-size: 38px;
  color: #004080;
  position: absolute;
  bottom: -15px;
  right: -15px;
}




/* Right Model */
.model-viewer-wrapper {
  flex: 1;
  min-width: 400px;
  animation: fadeInRight 1s ease;
}

model-viewer {
  width: 100%;
  height: 550px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  background: #f9f9f9;
}

/* Simple animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
/* ================== RESPONSIVE DESIGN ================== */

/* Tablets */
@media (max-width: 1024px) {
  .model-section {
    padding: 60px 5%;
  }

  .model-title {
    font-size: 2.5rem;
  }

  .model-description {
    font-size: 18px;
    line-height: 1.7;
  }

  model-viewer {
    height: 450px;
  }
}

/* Mobile Large (landscape & big phones) */
@media (max-width: 768px) {
  .model-content {
    flex-direction: column; /* stack text & model */
    gap: 30px;
    text-align: center;
  }

  .model-text {
    min-width: 100%;
    animation: fadeInUp 1s ease;
  }

  .model-title {
    font-size: 2rem;
  }

  .model-description {
    font-size: 16px;
    text-align: justify; /* keep professional look */
  }

  .model-description::before {
    left: -10px;
    top: -5px;
    font-size: 28px;
  }

  .model-description::after {
    bottom: -10px;
    right: -10px;
    font-size: 28px;
  }

  .model-viewer-wrapper {
    min-width: 100%;
    animation: fadeInUp 1s ease;
  }

  model-viewer {
    height: 350px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .model-title {
    font-size: 1.6rem;
  }

  .model-description {
    font-size: 15px;
    line-height: 1.6;
  }

  model-viewer {
    height: 280px;
  }
}

/* Extra simple animation for stacked view */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}