*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --fs-1: 6rem;
  --fs-2: 5rem;
  --section-padding: 30px;
  --shadow-1: 2px 0 50px hsla(0, 0%, 0%, 0.2);
  --shadow-3: 0px 0px 60px hsla(202, 75%, 47%, 0.5);
  --transition: 0.25s ease;
  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;
}
body {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 24%);
  font-size: 1.6rem;
  line-height: 1.7;

}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
time,
span,
input,
button,
ion-icon {
  display: block;
}
img {
  height: auto;
}
input,
button {
  background: none;
  border: none;
  font: inherit;
}
input {
  width: 100%;
}
button {
  cursor: pointer;
}
ion-icon {
  pointer-events: none;
}
html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

.section {
  padding-block: var(--section-padding);
}
.h1,
.h2,
.h3 {
  font-family: var(--ff-oswald);
  line-height: 1.2;
  font-weight: 600;
}
.h1 {
  font-size: 4rem;
  text-transform: uppercase;
}
.h2,
.h3 {
  color: hsl(202, 72%, 15%);
}
.img-holder {
  background-color: var(--light-gray);
  aspect-ratio: var(--width) / var(--height);
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-subtitle {
  color: #3d83df;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: var(--ff-oswald);
  font-weight: 600;
  letter-spacing: 3px;
  margin-block-end: 10px;
}
.section-title {
  color: hsl(236, 57%, 28%);
  font-size: 3.6rem;
  margin-block-end: 30px;
}
.underline {
  position: relative;
}
.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 6px;
  background: radial-gradient(ellipse at top, #007196 9%, rgb(0, 18, 56) 100%);
  border-radius: 10px;
}
.section-text {
  line-height: 1.4;
}
.btn {
  max-width: max-content;
  margin-inline: auto;
  font-size: 14px !important;
  font-weight: 1.2em;
  position: relative;
  color: hsl(0, 0%, 100%);
  background-color: #1c7899;
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding-block: 10px;
  padding-inline: 15px 50px;
  border-radius: 2rem;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  transition: var(--transition);
}

.btn::before {
  top: 50%;
  right: 20px;
  width: 15px;
  height: 1px;
  background-color: hsl(0, 0%, 100%);
  transform: translateY(-50%);
}

.btn::after {
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid hsl(0, 0%, 100%);
  transform: translateY(-50%);
}

.btn:is(:hover, :focus)::before {
  width: 20px;
}

.btn:is(:hover, :focus)::after {
  right: 10px;
}
.grid-list {
  display: grid;
  gap: 30px;
}
.btn-link {
  color: #3d83df;
  font-size: var(--fs-7);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.btn-link>* {
  transform: translateX(-22px);
  transition: var(--transition);
}
.btn-link:is(:hover, :focus)>* {
  transform: translateX(0);
}
.w-100 {
  width: 100%;
}
.section-subtitle {
  font-size: 1.5rem;
  text-transform: uppercase;
  color:rgb(0, 18, 56);
  font-weight: 700;
  margin-block-end: 16px;
}
.banner-animation {
  animation: waveAnim 2s linear infinite alternate;
}
@keyframes waveAnim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(2px, 2px) rotate(1deg);
  }
}
.banner-animation {
  animation: waveAnim 2s linear infinite alternate;
}
/* Channel Manager + PMS */
.bg-images {
  background: rgba(0, 0, 0, 0.8);
  background-position: center;
  background-size: cover;
  height: 35vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.chnmanager{
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.text-center{
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/
.project { background-color: var(--alice-blue); }
.project :is(.section-subtitle, .section-title, .section-text) { text-align: center; }
.project .section-text { margin-block: 20px 50px; }
.project-card { position: relative; }
.project-card .action-btn {
  background-color: black;
  color:white;
  font-size: 28px;
  padding: 16px;
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  transition: var(--transition);
}
.project-card:is(:hover, :focus-within) .action-btn { opacity: 1; }
.project-card .card-tag {
  color: var(--dark-orange);
  font-size: var(--fs-9);
}
.project-card .h3 { font-size:7; }
.project-card .card-title { transition: var(--transition); }
.project-card :is(.card-title, .card-link):is(:hover, :focus) { color: var(--dark-orange); }
.project-card .card-link {
  color: var(--prussian-blue);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-block-start: 5px;
  transition: var(--transition);
}
.project-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-block-end: 40px;
  scroll-snap-type: inline mandatory;
}
.project-item {
  min-width: 100%;
  scroll-snap-align: start;
}
.project-list::-webkit-scrollbar { height: 15px; }
.project-list::-webkit-scrollbar-track { outline: 2px solid #236d82; }
.project-list::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured-1);
  background-color: var(--prussian-blue);
}
.project-list::-webkit-scrollbar-button { width: calc(25% - 40px); }
.wrapper {
  position: fixed;
  bottom: 100px;
  right: -380px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  font-size: 32px;
}
header h2 {
  color: #0f3872;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #0f3872;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: rgb(0, 18, 56);
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #0f3872;
}
#declineBtn {
  border: 2px solid #0f3872;
  background-color: #fff;
  color: #0f3872;
}
#declineBtn:hover {
  background-color: #0f3872;
  color: #fff;
}
.fade-in-text {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.custom-popup {
  border-radius: 10px; /* Rrumbullakos pak më shumë këndet */
  padding: 20px;
}

.custom-button {
  
  background: hsl(236, 57%, 28%) !important;
  color: #fff !important;
  font-size: 1.3em !important;
  border: 2px solid hsl(236, 57%, 28%) !important;
  border-radius: 5px !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
}

.custom-button:hover {
  background: #fff !important;
  color: hsl(236, 57%, 28%) !important;
}

@media (max-width: 768px) {
  .dropdown__list{
   padding: 10px;
  }
}
