.logo {
  max-height: 60px;
  width: auto;
}
.fond-image {
  background: linear-gradient(
    120deg,
    rgba(20, 24, 45, 0.95),
    rgba(40, 45, 90, 0.9)
  );
}

.hero-logo {
  max-width: 40%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}


.navbar-item.has-text-centered {
    flex-grow: 1;
    text-align: center;
}
.navbar-item.has-text-centered:last-child {
    text-align: right;
}

a {
 text-decoration: none!important;
}

.cloud-card {
  background: linear-gradient(135deg, #1e1f2b, #2b2d42);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}


.cloud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(99, 102, 241, 0.25),
    rgba(0, 0, 0, 0.2)
  );
  pointer-events: none;
}


.cloud-card:hover::before {
  opacity: 1;
}

.cloud-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}


.cloud-card .rounded-full {
  position: relative;
  transition: all 0.4s ease;
}

.cloud-card .rounded-full::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}


.cloud-card:hover .rounded-full {
  transform: rotate(8deg) scale(1.15);
}

.cloud-card:hover .rounded-full::after {
  opacity: 1;
}


.cloud-card i {
  transition: transform 0.4s ease;
}

.cloud-card:hover i {
  transform: rotate(-8deg) scale(1.2);
}


.cloud-card ul li {
  transition: transform 0.25s ease;
}

.cloud-card ul li:hover {
  transform: translateX(6px);
}

.cloud-card a {
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cloud-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cloud-card:hover a::after {
  transform: translateX(100%);
}
.cloud-card h3 {
  color: #ffffff;
}

.cloud-card p,
.cloud-card span,
.cloud-card li {
  color: #dbe1ff;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
}



.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background-image: linear-gradient(to right, #0EA5E9, #4F46E5);
  color: white;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background-color: #0000;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: hsl(var(--muted));
}


.offer-card {
  border-radius: 1rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.offer-description {
  color: var(--color-syntra-gray);
  margin-bottom: 1rem;
}

.offer-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-syntra-indigo);
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.offer-price-period {
  font-size: 0.9rem;
  color: var(--color-syntra-gray);
  margin-left: 0.25rem;
}

.offer-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  color: #000;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.offer-features li svg {
  color: #10b981;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.offer-popular-badge {
  display: inline-block;
  background-color: var(--color-syntra-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.offer-cta {
  margin-top: auto;
  width: 100%;
}

.category-filters {
  display: flex;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.category-filter-container {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category-filter {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-filter:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.category-filter.active {
  background-color: var(--color-syntra-blue);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.float {
    border: 1px solid black;
    box-shadow: 8px 7px 25px gray;
    border-radius: 5px;
    -webkit-transition : 0.2s;
    -moz-transition    : 0.2s;
    -o-transition      : 0.2s;
    transition         : 0.2s;
    animation: float 1s ease-in-out;
    width: 15%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #e2e2e2;
}

@keyframes float {
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

.inline {
    display: flex;
    flex-direction: row;
    margin: auto;
}

.float:hover {
    transform: translate3d(0, -6px, 0);
}

.bold {
    margin-top: 10px;
    font-weight: bold;
    font-size: 22px;
}

.others {
    font-size: 17px;
}

.price {
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
}

.center {
    text-align: center;
}

.image-Steven {
    border-radius: 100%;
}

.display-section1 {
    display: flex;
    margin-top: 30px;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.boxtwo {
    background-color: var(--bulma-scheme-main);
    color: var(--bulma-text);
    border-radius: var(--bulma-radius-large);
    box-shadow: var(--bulma-shadow);
    padding: 1.25rem;
}



.service-box {
    background-color: #2d2d31;
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box .title {
    color: white;
    margin-top: 15px;
}

.service-box .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #ffdd57;
}

.service-box .icon {
    color: #ffdd57;
    margin-bottom: 10px;
}

    

.witems-4 .witems-item {
    float: left;
    width: 25%;
}

.witems {
    position: relative;
}

.witems-4 .witems-item {
    float: left;
    width: 25%;
}
.spaced-card {
    margin: 12px;
    perspective: 800px;
}




.fond-image {
    background-image: url("../img/fond.png");
    padding: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.boxtwo {
    background-color: var(--bulma-scheme-main);
    color: var(--bulma-text);
    border-radius: var(--bulma-radius-large);
    box-shadow: var(--bulma-shadow);
    padding: 1.25rem;
}

.media {
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}


.btn-gradient {
  background: linear-gradient(135deg, #6f42c1, #4e73df);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #4e73df, #6f42c1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}



.offers-section {
  min-height: auto !important;
  height: auto !important;
  padding-top: 2rem !important;
  padding-bottom: 4rem;
  background: transparent;
}

.offers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offers-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.heading-gradient {
  background: linear-gradient(90deg, #4f46e5, #38bdf8);
  
  -webkit-text-fill-color: transparent;
}

.offers-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #4f46e5;
  text-align: center;
}


.category-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.category-filter-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-filter {
  padding: 0.5rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #d1d5db;
  color: #374151;
  transition: all 0.2s ease;
  background: #ffffff;
}

.category-filter:hover {
  background: #f3f4f6;
}

.category-filter.active {
  background: #3b82f6;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}


.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}


.offer-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-card.popular {
  box-shadow: 0 0 0 3px rgba(59,130,246,0.5), 0 20px 40px rgba(0,0,0,0.15);
}

.offer-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.offer-badge {
  display: inline-block;
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.offer-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000;
}

.offer-description {
  color: #4b5563;
  margin-bottom: 1rem;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.offer-price strong {
  font-size: 2rem;
  font-weight: 800;
  color: #4338ca;
}

.offer-price span {
  font-size: 0.9rem;
  color: #6b7280;
}

/* BODY */
.offer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-features {
  margin-bottom: 1.5rem;
}

.offer-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.offer-feature::before {
  content: "✔";
  color: #22c55e;
  font-weight: bold;
  margin-right: 0.5rem;
}

.feature-highlight {
  font-weight: 600;
  color: #111827;
}


.offer-actions {
  margin-top: auto;
}

.offer-actions a {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}


.site-footer {
  background: #1f232a;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 15px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: #94a3b8;
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #60a5fa;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.footer-bottom {
  border-top: 1px solid #2c313a;
  padding: 1rem;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
}


.animate-fade-up {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.team-card {
  background: #1e2228;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(116, 140, 215, 0.3);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(116,140,215,0.35);
}

.team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #748cd7;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 22px;
  font-weight: 700;
  color: #748cd7;
  margin-bottom: 8px;
}

.team-role {
  font-size: 15px;
  font-weight: 500;
  color: #ff4d4d;
  font-style: italic;
}

.imginfo {
    height: auto;
    max-width: 71%;

}
