body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1f1f1f; /* Dark background color */
    color: #ddd; /* Lighter text color */
    background-image: url('owner.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    height: 500; 
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    background: -webkit-linear-gradient(45deg, #0b0a09, #6b4e01, #b7a200, #0b0a09);
    
   
}
.logo {
    width: 140px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    display: inline-block;
    margin-right: 20px; /* Adjust margin for separation */
    margin-left: 1px; /* Adjust margin to create space between logo and text */
}
.main-content {
    padding-bottom: 305px; /* Adjust according to footer height */
}


.header-content {
    position: relative;
    z-index: 1;

    
}

.header-content h1 {
    font-size: 1.5em; /* Decrease font size */
    margin-bottom: 5px; /* Adjust margin */
    animation: slideIn 1s ease 0.5s forwards;
}

.header-content p {
    font-size: 1em;
    margin-bottom: 10px;
    animation: slideIn 1s ease 1s forwards;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: slideIn 1s ease 1.5s forwards;
    display: inline-block; /* Align navigation horizontally */
    margin-left: 0px;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
    border-radius: 20px;
    overflow: hidden;
}

nav ul li a {
    display: block;
    padding: 12px 24px; /* Increased button size */
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 30px; /* Increased border radius */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7f00ff, #e100ff); /* Gradient with purple shades */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
nav ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}
nav ul li a:hover:before {
    transform: translate(-50%, -50%) scale(1);
}
nav ul li a:hover {
        background: #7f00ff; /* Brighter purple on hover */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2)
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    background-color: #ffc837;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #ff8008;
    top: 50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
h3 {
    font-size: 27px;
    font-family: 'Unispace';
    color: #ffffff;
    padding: 30px;
    text-align: center;
    margin-top: 0;
}
.container {
    max-width: 1200px; /* Adjusted width */
    max-height: 500px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.473);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #e585087e;
}
.package {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ca0e0e00; 
}
.package:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
h2 {
    font-family: 'Unispace';
    color: #ffffff;
    margin-top: 0;
    text-align: center;
    font-size: 27px;
    margin-bottom: 10px; /* Increased margin */
}
.offer p {
    color: #fdfdfd; 
    font-size: 22px;
}
.offer strong {
    color: #ffee00;
    font-size: 25px;
}

.vip-info {
    max-width: 1200px; /* Adjusted width */
    max-height: 700px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.473);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #e585087e;
}

.vip-info h2 {
    font-family: 'Unispace';
    color: #ffffff; /* Dark Red */
    margin-top: 0;
    text-align: center;
    font-size: 27px;
    margin-bottom: 10px; 
}
.vip-info p {
    color: #ffee00;
    margin: 8px 0;
}
.vip-info strong {
    color: #ffee00; /* Bright Green */
    margin: 8px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
.features-container {
    display: flex;
    flex-direction: row;
    
}

.strong-list {
    margin-right: 100px; /* Adjust the spacing between strong tags and the list */
}

.centered-list {
    list-style: none;
    padding: 0;
    text-align: left; /* Adjust the text alignment within the list */
}
.centered-list li {
    font-size: 20px;
    color: #ffee00;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

a {
    text-decoration: none;
}
.paypal {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
    
}

button.paypal-button {
    background-color: #003087;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.685);
}

button.paypal-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

button.paypal-button:hover::before {
    width: 300%;
    height: 300%;
}

button.paypal-button img {
    height: 25px;
    margin-right: 10px;
    z-index: 2;
}

button.paypal-button i {
    margin-left: 10px;
    z-index: 2;
}
.iframe {
    text-align: center; /* Center align the widget */
}

.iframe img {
    width: 900px; /* Set the width of the widget */
    height: auto; /* Maintain aspect ratio */
}

footer {
    width: 100%;
    
    background-color: #c7c7c7c2;
    padding: 10px 0;
    text-align: center;
    color: #1f1f1f;
}

.social-icons img {
    width: 30px; 
    margin: 0 10px; 
}

.social-icons a {
    text-decoration: none; 
    color: #fff; 
}


.copyright {
    margin-top: 10px; 
    font-size: 14px; 
}

