body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.main-section {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* .feature {
    background-color: gold;
    color: black;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    transition: transform 0.3s ease;
} */

.feature-link {
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Ensures the text color is the same as the text inside */
    display: inline-block; /* Wraps the anchor tag around the .feature div */
}

.feature {
    /* Your existing styles */
    cursor: pointer; /* Changes the mouse cursor on hover */
    color: #000;
    background-color: #ffd700; /* Example background color */
    padding: 10px 20px; /* Example padding */
    border-radius: 20px; /* Example border radius */
    margin: 10px; /* Example margin */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Example shadow for effect */
}


.feature:hover {
    transform: translateY(-5px);
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.9;
}


/* .description {
    margin: 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9em;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}  */

.description {
    position: relative; /* For pseudo-element positioning */
    margin: 50px;
    background: linear-gradient(to bottom, #000000, #fbfbfb10); /* Gradient background */
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9em;
    text-align: left;
    border-bottom: 3px solid gold; /* Solid gold border at the bottom */
    border-left: 3px solid transparent; /* Prep for gradient pseudo-element */
    border-right: 3px solid transparent; /* Prep for gradient pseudo-element */
}

.description::before,
.description::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px; /* Width of the gradient border */
    background: linear-gradient(to top, #ffd900cb, #000000a7); /* Gradient */
    z-index: 10;
}

.description::before {
    left: 0;
    border-top-left-radius: 10px; /* Match border radius */
    border-bottom-left-radius: 10px; /* Match border radius */
}

.description::after {
    right: 0;
    border-top-right-radius: 10px; /* Match border radius */
    border-bottom-right-radius: 10px; /* Match border radius */
}



.description h2, .description h3 {
    color: gold;
    margin-top: 50px;
}

.description ul {
    list-style: none;
    padding-left: 0;
}

.description li {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 10px;
}

.description li::before {
    content: '. '; /* Bullet character */
    color: gold;
    padding-right: 5px;
}

h1 {
    color: gold;
    font-size: 2.5em;
    margin-bottom: 0;
}

/* sectioon 2 */

.pricing-section {
    background-color: #000000; /* Adjust the background color as needed */
    padding: 50px 0;
    text-align: center;
    /* margin-top: 50px; */
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-card {
    background: linear-gradient(to bottom, #000000, #fbfbfb10); /* Adjust the background color as needed */
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    width: 300px; /* Adjust the width as needed */
    margin: 10px;
    position: relative; /* For pseudo-element positioning */
    border-bottom: 3px solid gold; /* Solid gold border at the bottom */
    border-left: 3px solid transparent; /* Prep for gradient pseudo-element */
    border-right: 3px solid transparent; /* Prep for gradient pseudo-element */
}

.pricing-card::before,
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px; /* Width of the gradient border */
    background: linear-gradient(to top, #ffd700, #000); /* Gradient */
    z-index: 10;
}

.pricing-card::before {
    left: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-card::after {
    right: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.plan-title {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.plan-cards-minimum {
    font-size: 1.2em;
    color: #aaa; /* Adjust color as needed */
    margin-bottom: 15px;
}

.plan-description {
    margin-bottom: 25px;
}

.plan-details {
    text-align: left;
}

.detail {
    margin-bottom: 10px;
}

.divider {
    border-bottom: 1px solid #ffd700; /* Adjust the divider color as needed */
    margin: 10px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Add padding as necessary */
}

.detail-value {
    margin-left: auto; /* This will push the span to the right */
}

/* section 3 */

.image-gallery {
    background-color: #000;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
    width: 15%; /* Adjust as needed */
    height: auto; /* Adjust if you want fixed height */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Enlarges the image */
    opacity: 0.7; /* Dim the image */
}
