
/* ----------------------
   BODY STYLE
------------------------- */

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box; 
    overflow-x: hidden;
    overflow-y: hidden;
  }
  




/* ----------------------
   HERO SECTION
------------------------- */

.graphicHeroSection {
    position: relative;
    overflow: hidden;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-image: url('/assets/images/graphic/background5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    margin-top: 100px;
}

.graphicHeroSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 47, 129, 0.65);
}

.graphicHeroContainer {
    max-width: 1000px;
    width: 100%;
    padding: 0 15px;
    position: relative;
}

.graphicHeroContent {
    max-width: 800px;
    margin: 0 auto;
}

.graphicHeroTitle {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.graphicHeroSubtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.5;
}

.graphicCtaWrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.graphicCtaButton {
    padding: 12px 30px;
    font-size: 1.05rem;
    background-color: white;
    color: #002f81;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

.graphicCtaButton:hover {
    background-color: #e6e6e6;
    color: #001f5e;
    transform: scale(1.05);
}

.graphicCtaButton.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.graphicCtaButton.secondary:hover {
    background-color: white;
    color: #002f81;
}

@media (max-width: 768px) {
    .graphicHeroTitle {
        font-size: 32px;
    }

    .graphicHeroSubtitle {
        font-size: 1rem;
    }

    .graphicCtaWrapper {
        flex-direction: column;
    }

    .graphicCtaButton {
        width: 60%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .graphicHeroTitle {
        font-size: 28px;
    }

    .graphicHeroSubtitle {
        font-size: 16px;
    }

    .graphicCtaButton {
        width: 70%;
        margin: auto;
    }
}









/* ----------------------
   SERVICE DETAILS
------------------------- */

.uxDescSection {
    background-color: white;
    padding: 60px 0px 40px 0;
  }
  
  .uxDescCon {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .uxLeftGrid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  .uxHeading {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    color: #333;
    margin-bottom: 15px;
  }
  
  
  
  .uxDescription {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  .uxRightGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
  }
  
  .uxImageContainer {
    height: 400px;
  }
  
  .uxImageContainer img {
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .uxImageContainer img:hover {
    transform: scale(1.05);
  }
  
  .uxImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
  }
  
  .uxImageAndBorder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }
  
  .uxImageBorderTop img, 
  .uxImageBorderBottom img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }
  
  .uxImageBorderTop img:hover,
  .uxImageBorderBottom img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 1024px) {
    .uxDescCon {
      grid-template-columns: 1fr;
      padding: 20px;
      width: 85%;
    }
  
    .uxHeading {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .uxDescription {
      font-size: 1rem;
      text-align: center;
    }
  
    .uxImageContainer img {
      border-radius: 15px;
      max-height: 500px;
    }
  
    .uxImageAndBorder {
      gap: 15px;
    }
  
    .uxRightGrid{
      display: flex;
      margin: 0 auto;
      align-items: center;
    }
  
  }
  
  @media (max-width: 768px) {
    .uxDescCon {
      grid-template-columns: 1fr;
      padding: 20px;
    }
  
    .uxHeading {
      font-size: 1.6rem;
    }
  
    .uxDescription {
      font-size: 0.95rem;
    }
  
    .uxImageContainer img {
      border-radius: 15px;
      max-height: 250px;
    }
  
    .uxRightGrid {
     display: block;
     width: 80%;
     
    }
  
    .uxImageAndBorder {
     display: flex;
     flex-direction: row;
     margin-top: -130px;
    }
  
    
  }












/* ----------------------
   DESIGN LIST SECTION
------------------------- */

.desDesignServices {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.desSectionTitle {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.0;
  color: #222;
}

.desSectionDesc {
  font-size: 17px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.desServiceContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.desServiceCard {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.desServiceCard:hover {
  background-color: #007bff;
  transform: translateY(-10px);
  color: white;
}

.desServiceCard:hover .desServiceIcon {
  background-color: white;
  color: #007bff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.desServiceCard .desServiceIcon {
  font-size: 20px;
  margin-bottom: 20px;
  background-color: #007bff;
  color: white;
  padding: 12px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desServiceTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.desServiceDescription {
  font-size: 15px;
  color: #666;
  transition: color 0.3s ease;
}

.desServiceCard:hover .desServiceDescription {
  color: white;
}

/* Responsive */

@media (max-width: 768px) {
  .desSectionTitle {
    font-size: 30px;
    padding: 0 15px;
  }

  .desSectionDesc {
    font-size: 15px;
    padding: 0 15px;
  }

  .desServiceCard {
    width: 80%;
    margin: 0 auto;
    padding: 30px 20px;
  }

  .desServiceTitle {
    font-size: 1.2rem;
  }

  .desServiceDescription {
    font-size: 0.9rem;
  }

  .desServiceContainer {
    grid-template-columns: 1fr;
  }
}






/* ----------------------
   PORTFOLIO SECTION
------------------------- */

.picScrollingCon {
  background-color: #ffffff;
  border-top: 1px solid rgba(249, 245, 241, 0.286); /* #f9f5f149 converted */
  border-bottom: 1px solid rgba(249, 245, 241, 0.286);
  padding: 80px 30px;
  margin: 70px auto 0 auto;
  overflow: hidden;
  max-width: 1200px;
}

.uiImageMarquee {
  display: flex;
  justify-content: space-between;
  width: 200%;
}

.uiImageRow {
  display: flex;
  gap: 20px;
  animation: uiMarqueeLeft 20s linear infinite;
  width: 50%;
}

.rightColumn {
  margin-top: 10px;
  animation: uiMarqueeRight 20s linear infinite;
  width: 50%;
}

.scrollImage {
  width: 180px;
  max-height: 200px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.scrollImage:hover {
  transform: scale(1.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pauseBtnCon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

#pauseButton {
  width: 20%;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #0056b3;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#pauseButton:hover {
  background-color: #003d80;
}

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

@keyframes uiMarqueeRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}


@media (max-width: 1024px) {
  .scrollImage {
    width: 150px;
  }
}

@media (max-width: 760px) {
  .scrollImage {
    width: 120px;
  }
  .picScrollingCon {
    padding: 40px 10px;
  }
}







/* ----------------------
   S
------------------------- */





/* ----------------------
   S
------------------------- */