.post-body .azura-gallery-img {
    height: 280px;
    max-width: none;
    margin: 0;
    border-radius: 12px;
}

.azura-hero .title .pri-color {
    background: linear-gradient(90deg, var(--primary), var(--darkBlue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.azura-hero {
    position: relative;
    padding: 160px 40px 80px;
    text-align: center;
    background-color: #fff;
    background-image: url('../../../images/backgournds/shapes-01.webp');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.azura-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.75) 0%,
        rgba(255,255,255,0.15) 35%,
        rgba(255,255,255,0.15) 65%,
        rgba(255,255,255,0.75) 100%
    );
    pointer-events: none;
}

.azura-hero-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(0,157,225,0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0,157,225,0.15);
    margin-bottom: 24px;
}

.azura-gallery-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: #f6f9fd;
    overflow: hidden;
}

.azura-gallery-label {
    text-align: center;
    margin-bottom: 40px;
}

.azura-gallery-label h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--darkBlue);
    margin: 0 0 8px;
}

.azura-gallery-label p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
}

.azura-gallery-row {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.azura-gallery-row + .azura-gallery-row {
    margin-top: 20px;
}

.azura-gallery-track {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
    width: max-content;
    will-change: transform;
    pointer-events: none;
}

.azura-gallery-track.scroll-left {
    animation: azuraScrollLeft 60s linear infinite;
}

.azura-gallery-track.scroll-right {
    animation: azuraScrollRight 60s linear infinite;
}

@keyframes azuraScrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes azuraScrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.azura-gallery-img {
    height: 280px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgb(0 157 225);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}

.azura-gallery-row:hover .azura-gallery-track {
    animation-play-state: paused;
}

.azura-gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,157,225,0.15);
}

.azura-gallery-row::before,
.azura-gallery-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.azura-gallery-row::before {
    left: 0;
    background: linear-gradient(90deg, #f6f9fd 0%, transparent 100%);
}

.azura-gallery-row::after {
    right: 0;
    background: linear-gradient(270deg, #f6f9fd 0%, transparent 100%);
}

.azura-cta {
    text-align: center;
    padding: 70px 40px;
    background: #ffffff;
}

.azura-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--darkBlue);
    margin: 0 0 12px;
}

.azura-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--lightBlue);
    margin: 0 0 32px;
    font-weight: 500;
}

.azura-cta-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 16px 42px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.azura-cta-btn:hover {
    background: var(--darkBlue);
}

@media (max-width: 1200px) {
    .azura-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .azura-hero {
        padding: 140px 30px 60px;
    }
    .azura-hero-title {
        font-size: 2.4rem;
    }
    .azura-gallery-row {
        height: 260px;
    }
    .azura-gallery-img {
        height: 220px;
    }
    .post-body .azura-gallery-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .azura-hero {
        padding: 120px 20px 50px;
    }
    .azura-hero-title {
        font-size: 2rem;
    }
    .azura-hero-desc {
        font-size: 1rem;
    }
    .azura-gallery-section {
        padding: 40px 0;
    }
    .azura-gallery-label h2 {
        font-size: 1.5rem;
    }
    .azura-gallery-row {
        height: 200px;
    }
    .azura-gallery-img {
        height: 170px;
    }
    .post-body .azura-gallery-img {
        height: 170px;
    }
    .azura-gallery-row::before,
    .azura-gallery-row::after {
        width: 40px;
    }
    .azura-cta {
        padding: 50px 20px;
    }
    .azura-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .azura-hero-title {
        font-size: 1.6rem;
    }
    .azura-gallery-row {
        height: 160px;
    }
    .azura-gallery-img {
        height: 130px;
    }
    .post-body .azura-gallery-img {
        height: 130px;
    }
}

.header-extended {
  position: relative;
  display: inline-block;
}

.header-extended::before,
.header-extended::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  background: #009DE1;
  border-radius: 1px;
}

.header-extended::before {
  right: 100%;
  width: 250px;
  margin-right: 20px;
}

.header-extended::after {
  left: 100%;
  width: 250px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .header-extended::before,
  .header-extended::after {
    width: 120px;
  }
  
  .header-extended::before {
    margin-right: 15px;
  }
  
  .header-extended::after {
    margin-left: 15px;
  }
}

header {
  overflow: hidden;
  position: relative;
  padding: 100px 0 100px;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../../images/backgournds/shapes-01.webp);
}
header::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: '';
  position: absolute;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0.7539390756302521) 0%, rgba(255,255,255,0.14889705882352944) 35%, rgba(255,255,255,0.1516981792717087) 65%, rgba(255,255,255,0.7539390756302521) 100%);
}

header .content {
  z-index: 2;
  position: relative;
}

header .title {
  margin-bottom: 30px;
  color: var(--darkBlue);
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),4.247rem);
}
header .para {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--lightBlue);
}
@media only screen and (max-width: 1199.98px) {
  header .para {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991.98px) {
  header .title {
    font-size: clamp(2.01rem,calc(.5rem + 4.9004vw),3.247rem);
  }
  header .para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  header {
    padding: 60px 0;
  }
  header .para {
    font-size: 14px;
  }
}