header {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--block-padding);
    overflow: hidden;
}

header .header-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

}
header .header-top .text-box {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
header img {
   position: absolute;
   height: 100%;
   width: auto;
   top: 0;
   object-fit: cover;
   object-position: center;
   z-index: -1;
   mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
   -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.header-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.header-top .contact-btn {
    width: 120px;
    height: 40px;
    border-radius: 10px;
    border: none;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    font-variation-settings: 'wght' 600;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top .contact-btn:hover {
    background-color: #fff;
    color: #000;
}

.header-card {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding-block: 10px;
    height: 150px;
}
.header-card .card-box {
  padding-top: 10px;

    width: 100%;
    background: rgba(104, 152, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    position: relative;
    overflow: hidden;
}

.header-card .card-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.header-card .card-box:hover::before {
    opacity: 1;
}

.header-card .card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}
.header-card .card-box .card-box-img {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
 .header-card img {
    width: 100%;
    height: auto;
    border: 1px solid blue;
    object-fit: cover;
    object-position: center;
}
 .header-card .card-box span {
    height: 40px;
    font-size: .9rem;
    text-align: center;
    font-variation-settings: 'wght' 600;
}

.header-card-section {
    margin-top: -100px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 30px;
}

.section-5{
   height: auto !important;
}
.section5-card,.section8-card{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.section5-card .card,.section8-card .card{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.section5-card .card >span,.section8-card .card >span{
    font-size: 1.2rem;
    font-variation-settings: 'wght' 600;
}

.section-6{
    height: auto !important;
}

.section-7{
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.section-8{
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.section-2,.section-9,.section-3{
    height: auto !important;
}
/* animated button */
/* From Uiverse.io by gharsh11032000 */ 
.animated-button {
   margin-top: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 1.2rem;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    box-shadow: 0 0 0 2px rgb(255, 255, 255);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
    position: absolute;
    width: 24px;
    fill: rgb(255, 255, 255);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #212121;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px rgb(255, 255, 255);
  }
  
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  
  /* animate card */
  /* From Uiverse.io by SouravBandyopadhyay */ 
.notification {
    display: flex;
    flex-direction: column;
    isolation: isolate;
    position: relative;
    width: 100%;
    /* height: 8rem; */
    background: #29292c;
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.3rem;
    --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
    --color: #32a6ff;
    padding: 1rem;
  }
  
  .notification:before {
    position: absolute;
    content: "";
    inset: 0.0625rem;
    border-radius: 0.9375rem;
    background: #18181b;
    z-index: 2
  }
  
  .notification:after {
    position: absolute;
    content: "";
    width: 0.25rem;
    inset: 0.65rem auto 0.65rem 0.5rem;
    border-radius: 0.125rem;
    background: var(--gradient);
    transition: transform 300ms ease;
    z-index: 4;
  }
  
  .notification:hover:after {
    transform: translateX(0.15rem)
  }
  
  .notititle {
    color: var(--color);
    padding: 0 0.25rem 0.4rem 1.25rem;
    font-size: 1.8rem;
    font-variation-settings: 'wght' 700;
    transition: transform 300ms ease;
    z-index: 5;
  }
  
  .notification:hover .notititle {
    transform: translateX(0.15rem)
  }
  
  .notibody {
    color: #99999d;
    padding: 0 1.25rem;
    transition: transform 300ms ease;
    z-index: 5;
  }
  
  .notification:hover .notibody {
    transform: translateX(0.25rem)
  }
  
  .notiglow,
  .notiborderglow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle closest-side at center, white, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
  }
  
  .notiglow {
    z-index: 3;
  }
  
  .notiborderglow {
    z-index: 1;
  }
  
  .notification:hover .notiglow {
    opacity: 0.1
  }
  
  .notification:hover .notiborderglow {
    opacity: 0.1
  }
  
  .note {
    color: var(--color);
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.9rem;
    width: 75%;
  }


  .section5-card,section.section-8 .section8-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .section5-card .section-card-item .text-box span,
  section.section-8  .section8-card .section-card-item .text-box span {
    text-align: left;
    font-size: 1.4rem;
    padding-left: 0;
    color: #fff;
  }
  .section5-card .section-card-item .text-box,
  section.section-8 .section8-card .section-card-item .text-box {
    border: 1px solid rgb(255, 255, 255);
    padding: 1rem;
  }