body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}
header {
    background-color: #0f0e0e;
    color: white;
    padding: 0.15rem;
    text-align: center;
}
nav {
    background-color: #ffd700;
    padding: 0.15rem;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a[href="#packages"] {
    color: #000000;
}
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    z-index: 0;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    z-index: 0;
    background-color: #efe9e9;
}

.hero-content {
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.btn {
    background-color: #FFD700;
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.services {
    padding: 4rem 2rem;
    text-align: center;
}
@media (max-width: 768px) {
    .services {
        padding: 2rem 1rem;
    }
}
.services h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid a {
    text-decoration: none;
}
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
.card {
    --card-bg: linear-gradient(to top right, rgb(7 16 45), rgb(58 60 84));
    --card-accent: #7c3aed;
    --card-text: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

    width: 190px;
    height: 254px;
    background: var(--card-bg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, sans-serif;
}

@media (max-width: 768px) {
    .card {
        width: 70vw;
        height: auto;
        min-height: 200px;
        margin: 0 auto;
    }
    .card__content {
        padding: 0.5em;
    }
}

@media (max-width: 480px) {
    .card {
        width: 75vw;
        min-height: 180px;
    }
    .card__content {
        padding: 0.4em;
    }
}

.card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card__glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(
      circle at 50% 0%,
      rgba(124, 58, 237, 0.3) 0%,
      rgba(124, 58, 237, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card__content {
    padding: 1.25em;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    padding: 0.25em 0.5em;
    border-radius: 999px;
    font-size: 0.7em;
    font-weight: 600;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.card__image {
  width: 100%;
  height: 100px;
  background: linear-gradient(45deg, #a78bfa, #8b5cf6);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.card__text {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.card__title {
    color: var(--card-text);
    font-size: 1.1em;
    margin: 0;
    font-weight: 700;
    text-decoration: none;
}

.card__description {
    color: var(--card-text);
    font-size: 0.75em;
    margin: 0;
    opacity: 0.7;
    text-decoration: none;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card__price {
    color: var(--card-text);
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
}

.card__button {
    width: 28px;
    height: 28px;
    background: var(--card-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

/* Hover Effects */
.card:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.service-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-item img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.service-item h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}
.service-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}
.about {
    background-color: #000000;
    padding: 4rem 2rem;
    text-align: left;
    color: white;
}
.about h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
}
.about h3 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
}
.about .btn {
    margin-top: 1rem;
}
.contact {
    padding: 4rem 2rem;
    text-align: center;
}
.contact h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #FFD700;
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}
footer {
    background-color: white;
    color: #000000;
    text-align: center;
    padding: 1rem;
}



.packages {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ffffff;
}
.packages h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.package-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.package-card {
    background-color: #ffffff;
    color: #000000;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}
.package-card:hover {
    transform: translateY(-10px);
}
.package-card.silver {
    border: 2px solid #C0C0C0;
}
.package-card.silver:hover {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000000;
}
.package-card.gold {
    border: 2px solid #FFD700;
}
.package-card.gold:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFFFFF;
}
.package-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.package-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.package-card ul li {
    margin-bottom: 0.5rem;
}
.package-card .btn {
    display: inline-block;
    margin-top: 1rem;
}

.card {
    max-width: 350px;
    background-color: rgb(7 16 45);
    background: linear-gradient(to top right, rgb(7 16 45), rgb(58 60 84));
    background: -webkit-linear-gradient(to top right, rgb(7 16 45), rgb(58 60 84));
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgb(84 90 106);
}

.small-text, .title,.desc {
    font-weight: 600;
}

.title,.desc {
    margin: 8px 0;
}

.small-text {
    color: #488aec;
    font-size: 14px;
}

.title {
    color: #fff;
    font-size: 26px;
    line-height: 26px;
}

.desc {
    color: rgb(151 153 167);
    font-size: 13px;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 6px;
    text-decoration: none;
}

.button:first-child {
    box-shadow: 0 4px 6px -1px #488aec31, 0 2px 4px -1px #488aec17;
    background-color: #488aec;
}

.button:last-child {
    box-shadow: 0 4px 6px -1px #0b162531, 0 2px 4px -1px #0e192b17;
    background-color: #fff;
}

.icon {
    height: 25px;
    width: 25px;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.icon svg:last-child {
    fill: #000
}

.button-text {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.button-text span:first-child {
    font-size: 12px;
    font-weight: 600;
}

.google span:first-child {
    color: rgb(219 206 253);
}

.apple span:first-child {
    color: rgb(81 87 108);
}

.google span:last-child {
    color: #fff;
    font-weight: 800;
}

.apple span:last-child {
    color: #000;
    font-weight: 800;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: #ffd700;
    transition: left 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
    opacity: 0;
}

nav.active {
    left: 0;
    opacity: 1;
}

nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul li a {
    color: #000000;
    padding: 1rem;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000000;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

nav.active ~ .overlay {
    display: block;
}

@media (max-width: 768px) {
    /* Additional mobile adjustments if needed */
}


