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

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






/* ----------------------
   HERO SECTION
------------------------- */
.appHeroSection {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e2a47, #2f3c57); 
    color: #fff;
    width: 100%;
    border-bottom: 2px solid #333;
    margin-top: 100px;
  }

  .appHeroGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }

  .appHeroLeftColumn {
    display: grid;
    grid-template-rows: auto auto;
  }

  .appHeroTextContainer {
    margin-bottom: 20px;
  }

  .appHeroMainText {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.0;
    margin: 0;
    color: #fff;
  }

  .appHeroHighlight {
    color: #3498db;
    font-family: 'Courier New', monospace;
  }

  .appHeroSubText {
    font-size: 17px;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.5;
    max-width: 500px;
  }

  .appHeroButtonContainer {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
  }

  .appHeroGetStartedBtn {
    background: linear-gradient(to right, #3498db, #6e44ad);
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .appHeroGetStartedBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .appHeroRightColumn {
    display: grid;
    grid-template-rows: auto auto;
  }

  .appHeroIconContainer {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .appHeroTechAnimation {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateTechSymbols 6s infinite linear;
    perspective: 500px; 
  }

  .techSymbol {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 100px;
    text-align: center;
    line-height: 120px;
    color: #3498db;
    font-family: 'Courier New', monospace;
    font-weight: bold; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
  }

  .techSymbol:nth-child(1) {
    transform: rotateY(0deg) translateZ(60px);
  }
  .techSymbol:nth-child(2) {
    transform: rotateY(60deg) translateZ(60px);
  }
  .techSymbol:nth-child(3) {
    transform: rotateY(120deg) translateZ(60px);
  }
  .techSymbol:nth-child(4) {
    transform: rotateY(180deg) translateZ(60px);
  }
  .techSymbol:nth-child(5) {
    transform: rotateY(240deg) translateZ(60px);
  }
  .techSymbol:nth-child(6) {
    transform: rotateY(300deg) translateZ(60px);
  }

  @keyframes rotateTechSymbols {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }


  @media (max-width: 1000px) {
    .appHeroGrid {
      grid-template-columns: 1fr;
      text-align: center;
      justify-items: center;

    }

    .appHeroMainText {
      font-size: 38px;

    }

    .appHeroHighlight {
      font-size: 30px;
    }

    .appHeroTechAnimation {
      width: 100px;
      height: 100px;
    }

    .appHeroButtonContainer{
      justify-content: center;
      margin-top: 10px;
    }

    .appHeroGetStartedBtn {
      font-size: 18px;
      padding: 15px 25px;
    }

    .appHeroSubText {
      font-size: 18px;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .appHeroSection {
      padding: 60px 15px;
    }

    .appHeroMainText {
      font-size: 32px;
    }

    .appHeroHighlight {
      font-size: 25px;
    }

    .appHeroTechAnimation {
      width: 80px;
      height: 80px;
    }

    .appHeroGetStartedBtn {
      font-size: 16px;
      padding: 14px 18px;
    }

    .appHeroSubText{
      font-size: 17px;
    }

  }

  @media (max-width: 480px) {

  .appHeroGrid{
      padding: 20px;
  }
    .appHeroSection {
      padding: 50px 10px;
    }

    .appHeroMainText {
      font-size: 30px;
    }

    .appHeroHighlight {
      font-size: 25px;
    }

    .appHeroTechAnimation {
      width: 60px;
      height: 60px;
    }

    .appHeroGetStartedBtn {
      font-size: 16px;
      width: 100%;
      margin-bottom: -20px;
    }

    .appHeroSubText{
      font-size: 16px;
      text-align: center;
    }
  }








/* ----------------------
   DECS SECTION
------------------------- */
.solutionSection {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 251, 253, 0.8) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }

  .descContainer {
    width: 86%;
    margin: auto;
  }

  .solutionRow {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .imageContainer {
    display: flex;
    justify-content: center;
    margin-right: 20px;
  }

  .imageItem {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .imageItem img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
  }

  .imageItem:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }

  .contentContainer {
    color: #040404;
    text-align: left;
  }

  .solutionTitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0c0c0c;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 10px;
    background-image: linear-gradient(to right, #ff9900, #ff5500);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom left;
  }

  .appAnimatedText {
    display: inline-block;
    color: #151414;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
  }

  .solutionDescription {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .appBtn {
    padding: 15px 30px;
    font-size: 16px;
    background: linear-gradient(to right, #fe5209ec, #ff7511);
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .appBtn:hover {
    background: linear-gradient(to right, #ff7511, #fe5209ec);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
  }

  @media (max-width: 768px) {
    .solutionRow {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .imageContainer {
      margin-right: 0;
      margin-bottom: 30px;
    }

    .imageItem img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .solutionTitle, .appAnimatedText {
      font-size: 22px;
    }

    .solutionDescription {
      font-size: 15px !important;
    }

    .appBtn {
      padding: 12px 25px;
    }
  }

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

    .solutionDescription {
      font-size: 16px;
    }

    .appBtn {
      padding: 10px 20px;
    }
  }







/* ----------------------
   AP NICHE SECTION
------------------------- */

.apServiceOverview {
    padding: 80px 60px;
    background-color: #f8f9fa;
    color: #333;
}

.apOverviewTitle {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}

.apHighlightText {
    color: #007bff;
}

.apOverviewDescription {
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.3;
}

.apServiceCardsContainer {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 25px;
    margin-top: 10px;
    transform: translateY(50px);
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.apServiceCard {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apServiceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    background-color: #f1f8ff;
}

.apCardContent {
    text-align: center;
}

.apServiceIcon {
    font-size: 35px;
    margin-bottom: 20px;
    color: #007bff;
    transition: color 0.3s ease;
}

.apServiceCard:hover .apServiceIcon {
    color: #0056b3;
}

.apCardTitle {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.apServiceCard:nth-child(1) .apServiceIcon { color: #28a745; }
.apServiceCard:nth-child(2) .apServiceIcon { color: #ffc107; }
.apServiceCard:nth-child(3) .apServiceIcon { color: #007bff; }
.apServiceCard:nth-child(4) .apServiceIcon { color: #dc3545; }
.apServiceCard:nth-child(5) .apServiceIcon { color: #17a2b8; }
.apServiceCard:nth-child(6) .apServiceIcon { color: #28a745; }
.apServiceCard:nth-child(7) .apServiceIcon { color: #ffc107; }
.apServiceCard:nth-child(8) .apServiceIcon { color: #17a2b8; }
.apServiceCard:nth-child(9) .apServiceIcon { color: #007bff; }
.apServiceCard:nth-child(10) .apServiceIcon { color: #dc3545; }

@media (max-width: 1024px) {
    .apServiceCardsContainer {
        grid-template-columns: repeat(4, 1fr); 
    }
}

@media (max-width: 768px) {
    .apServiceOverview {
        padding: 60px 20px;
    }

    .apOverviewTitle {
        font-size: 25px;
        padding: 0 10px;
    }

    .apOverviewDescription {
        font-size: 16px;
        padding: 0 10px;
    }

    .apServiceCardsContainer {
        grid-template-columns: repeat(2, 1fr); 
        padding: 20px;
    }

    .apCardTitle {
        font-size: 15px;
    }

    .apServiceIcon {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .apOverviewDescription {
        font-size: 14px;
    }

    .apCardTitle {
        font-size: 14px;
    }

    .apServiceIcon {
        font-size: 28px;
    }
}













/* ----------------------
   PORTFOLIO SECTION
------------------------- */
.apPortfolioSlider {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.594);
    /* padding: 40px 60px; */
}

.apSlider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.apSlide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.apSlideContent {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.apVideoSlider {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.apVideoSlider video {
    width: 45%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    pointer-events: none;
}

.apVideoSlider video:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.apSlideButtons {
    text-align: center;
    position: absolute;
    top: 50%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    transform: translateY(-50%);
}

.apSlideButtons button {
    border: none;
    border-radius: 7px;
    cursor: pointer;
    padding: 10px;
    color: white;
    font-size: 18px;
    background: #0085ff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.apSlideButtons button:hover {
    transform: scale(1.3);
    background-color: #006bb3;
}

@media (max-width: 768px) {
    .apPortfolioSlider {
        padding: 20px;
        width: 90%;
        margin: 60px auto;
    }

    .apVideoSlider {
        flex-direction: column;
        align-items: center;
    }

    .apVideoSlider video {
        width: 90%;
        max-width: 90%;
    }

    .apSlideButtons {
        position: relative;
        top: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .apSlideButtons button {
        width: 15%;
        margin: 20px 0;
        font-size: 15px;
        padding: 8px;
        text-align: center;
    }
}
