

.offers-section {
    margin-bottom: 128px;
    padding: 64px;
    box-sizing: border-box;
}


.accordion-and-image {
    display: flex;
    gap: 32px;
}


.left-column {
    width: 55%;
    padding-left: 64px;
}


.section-title {
    font-size: 58px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: black;
    margin: 0 0 32px 0;
    line-height: 1.23;
}




.accordion-wrapper {
    display: flex;
    position: relative;
}

.vertical-line {
    position: absolute;
    left: -64px;
    width: 3px;
    background-color: black;
    top: 0;
    transition: top 0.4s ease, height 0.4s ease; 
}


.circle-indicator {
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    left: -5px; 
    top: 0;
    transition: top 0.4s ease;
}



.accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 593px;
}

.accordion-item {
    margin-bottom: 24px;
}

.accordion-header {
    font-size: 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    cursor: pointer;
    padding: 6px 0;
    color: grey;
    transition: color 0.3s;
    position: relative;
}

.accordion-header:hover {
    color: rgb(72, 72, 72);
}

.accordion-item.active .accordion-header {
    color: black;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.accordion-content p {
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 4px 0;
    max-width: 64ch;
    margin: 0;
    line-height: 1.26;
}

.right-column {
    width: 50%;
    position: relative;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.offer-contact-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 16px 48px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.68);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.offer-contact-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.offer-contact-btn:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


@media (max-width: 1590px) {
   
    .offers-section {
        padding: 48px;
        margin-bottom: 100px;
        height: 790px;
    }

   
    .accordion-and-image {
        gap: 24px;
    }

    .left-column {
        width: 60%;
        padding-left: 48px;
    }

   
    .section-title {
        font-size: 50px;
        margin-bottom: 28px;
    }

   
    .vertical-line {
        left: -48px;
        width: 2px;
    }

    .circle-indicator {
        left: -4px;
        width: 10px;
        height: 10px;
    }

   
    .accordion-header {
        font-size: 38px;
        padding: 4px 0;
    }

    .accordion-content p {
        font-size: 18px;
        max-width: 60ch;
        line-height: 1.3;
    }

   
    .right-column {
        width: 45%;
    }

    .offer-image {
        border-radius: 14px;
    }

   
    .offer-contact-btn {
        padding: 12px 40px;
        font-size: 18px;
        border-radius: 28px;
        bottom: 16px;
        right: 16px;
    }

    .offer-contact-btn:hover {
        transform: translateY(-2px);
    }
}







@media (max-width: 768px) {
   
    .offers-section {
        margin-bottom: 64px;
        padding: 32px 16px;
    }

   
    .accordion-and-image {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

   
    .left-column {
        width: 100%;
        padding-left: 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

   
    .accordion-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .vertical-line, .circle-indicator {
        display: none;
    }

    .accordion-item {
        margin-bottom: 0;
    }

    .accordion-header {
        font-size: 24px;
        padding: 4px 0;
    }

    .accordion-content p {
        font-size: 16px;
        line-height: 1.4;
    }

   
    .right-column {
        width: 100%;
    }

    .offer-image {
        border-radius: 12px;
    }

   
    .offer-contact-btn {
        padding: 10px 24px;
        font-size: 16px;
        bottom: 10px;
        right: 10px;
        border-radius: 20px;
    }
}










































.portfolio {
    padding: 0 96px 64px;

}

.section-title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.left-title {
    text-align: left;
    font-size: 58px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: black;
}

.right-title {
    text-align: right;
    font-size: 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: black;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 360px);
    gap: 32px;
}

.portfolio-item {
    position: relative;
    perspective: 1000px;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    box-sizing: border-box;
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
}

.front {
    background-color: #f9f9f9;
}

.back {
    position: relative;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.blurred-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    padding: 35px;
    border-radius: 16px; 
    box-sizing: border-box;
}


.portfolio-back-image {
    width: calc(100% + 90px);
    height: calc(100% + 90px); 
    object-fit: cover;
    transform: scaleX(-1); 
    filter: blur(24px);
    transform: translate3d(0, 0, 0);
    margin: -35px; 
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 16px;
    color: white;
    border-radius: 16px;
    text-align: left;
    box-sizing: border-box;
}

@media (max-width:1600px) {
    .card-overlay {
    padding: 0;
    }
}

.card-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    width: 80%;
}

.card-overlay .year {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    width: 80%;
}

.card-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    width: 80%;
}

.circle-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: default; 
}

.circle-timer svg {
    width: 50px;
    height: 50px;
}

circle {
    stroke-dasharray: 62.83; 
    stroke-dashoffset: 62.83; 
    fill: transparent; 
    cursor: pointer;
}

.portfolio-card.flipped {
    transform: rotateY(180deg);
}

.portfolio-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.portfolio-btn {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 8px 24px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.68);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}






@media (max-width: 768px) {
   
    .portfolio {
        padding: 16px;
    }

    
     .section-title-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }

   
    .left-title {
        font-size: 32px;
        font-weight: 600;
        color: black;
        margin-bottom: 8px;
        text-align: left;
    }

   
    .right-title {
        font-size: 24px;
        font-weight: 400;
        color: black;
        text-align: left;
        margin-bottom: -2px;
    }


   
    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        grid-template-rows: repeat(1, 280px);
    }

   
    .portfolio-item {
        perspective: 1000px;
    }

   
    .portfolio-card {
        position: relative;
        width: 100%;
        height: 280px;
        transition: transform 0.6s ease;
    }


   
    .front {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        backface-visibility: hidden;
        border-radius: 12px;
    }

   
    .front {
        background-color: #f9f9f9;
    }


   
    .card-overlay h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        text-align: left;
        width: 94%;

    }

    .card-overlay .year,
    .card-overlay p {
        font-size: 14px;
        text-align: left;
        width: 94%;
    }

    .year {
        display: none;
    }

   
    .portfolio-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }


   
    .portfolio-btn {
        padding: 8px 18px;
        font-size: 14px;
        position: absolute;
        left: 16px;
        bottom: 16px;
        border-radius: 24px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.7);
        transition: background 0.3s;
    }

    .portfolio-btn:hover {
        background: rgba(0, 0, 0, 0.85);
    }
}




























.for-business-section {
    background-color: #222222;
    padding: 60px 128px;
    width: 100%;
    margin: 64px auto;
    min-height: 530px;
  }
  
  .business-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    width: 100%;  
}
  
 
  .business-left {
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 1;
    padding-right: 20px;
  }
  
  .business-services {
    font-size: 63px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
  }
  
  .business-agency {
    font-size: 29px;
    font-weight: 300;
    margin-top: 50px;
  }
  
 
  .business-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 20px;
  }
  
  .business-website {
    font-size: 29px;
    font-weight: 300;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
  }
  

  .redirect-button {
    font-size: 19px;
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .redirect-button:hover {
    background-color: #ffffff;
    color: #222222;
    transform: scale(1.05);
  }
  
  .redirect-button:active {
    transform: scale(0.95);
  }
  
 
  .redirect-button::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
  }
  
  .redirect-button:active::before {
    transform: translate(-50%, -50%) scale(1);
  }





  @media (max-width: 768px) {
   
    .for-business-section {
        padding: 40px 24px;
        margin: 32px 0;
        min-height: auto;
    }

   
    .business-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

   
    .business-left {
        padding-right: 0;
        margin-bottom: 33px;
    }

   
    .business-services {
        font-size: 32px;
        font-weight: 300;
        line-height: 1.3;
        margin: 0;
    }

   
    .business-agency {
        font-size: 20px;
        margin-top: 16px;
        margin-bottom: 10px;
    }

   
    .business-right {
        padding-left: 0;
        align-items: flex-start;
    }

   
    .business-website {
        font-size: 20px;
        margin-bottom: 10px;
    }

   
    .redirect-button {
        font-size: 16px;
        padding: 8px 20px;
    }
}











