* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('Assets/Stocks/Backgrund.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    overflow-x: hidden;
}

.social-media-bar {
    position: fixed;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, top;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background-color: #ff3e00;
    transition: height 0.3s ease;
}

.social-link:hover {
    color: #ff3e00;
    transform: rotate(180deg) translateY(-5px);
}

.social-link:hover::after {
    height: 40px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background-color: #ff3e00;
    transition: height 0.3s ease;
}

.nav-links a:hover {
    color: #ff3e00;
    transform: translateY(-3px);
}

.nav-links a:hover::after {
    height: 20px;
}

.nav-links a.active {
    color: #ff3e00;
}

.nav-links a.active::after {
    height: 20px;
}

.nav-right {
    justify-self: end;
}

.get-in-touch {
    background: #ff3e00;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease !important;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.get-in-touch:hover {
    color: #fff !important;
    transform: scale(1.05);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    position: relative;
}

.discover-link {
    position: absolute;
    right: 100px;
    bottom: 100px;
    width: 120px;
    height: 120px;
    cursor: pointer;
    text-decoration: none;
}

.discover-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.discover-text span {
    position: absolute;
    left: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #fff;
    transform-origin: 0 60px;
    font-weight: 500;
    letter-spacing: 1px;
}

.discover-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    color: #ff3e00;
    font-size: 32px;
    transition: all 0.3s ease;
}

.discover-link:hover .discover-arrow {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
    color: #ff5e30;
}

.hero-content {
    width: 80%;
    max-width: 1400px;
    text-align: center;
}

.title-wrapper {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}

.separator {
    width: 80px;
    height: 4px;
    background: #ff3e00;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.separator_main {
    width: 80px;
    height: 4px;
    background: #ff3e00;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.section-header {
    text-align: center;
    width: 100%;
    padding-top: 20px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.all-services {
    padding: 100px 130px;
    background: rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 30px 90px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 62, 0, 0.1);
    border-color: rgba(255, 62, 0, 0.3);
}

.service-icon {
    font-size: 40px;
    color: #ff3e00;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff3e00;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid rgba(255, 62, 0, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 160px;
}

.service-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    background: rgba(255, 62, 0, 0.1);
    border-color: #ff3e00;
}

.service-cta:hover i {
    transform: translateX(5px);
}

.add-more {
    border: 2px dashed rgba(255, 62, 0, 0.3);
    background: transparent;
}

.add-more:hover {
    background: rgba(255, 62, 0, 0.05);
}

.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-box {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 40px 100px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 62, 0, 0.2);
}

.pricing-box.featured {
    background: rgba(255, 62, 0, 0.1);
    border-color: rgba(255, 62, 0, 0.3);
    transform: scale(1.05);
}

.pricing-box.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ff3e00;
}

.plan-price span {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.unlock-price {
    background: transparent;
    border: 1px solid #ff3e00;
    color: #ff3e00;
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.unlock-price:hover {
    background: #ff3e00;
    color: #fff;
    transform: translateY(-2px);
}

.unlock-price.featured {
    background: #ff3e00;
    color: #fff;
}

.unlock-price.featured:hover {
    background: transparent;
    color: #ff3e00;
}

.action-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.plan-features {
    margin-bottom: 40px;
}

.feature {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:last-child {
    border-bottom: none;
}

.buy-now {
    display: inline-block;
    background: transparent;
    border: 2px solid #ff3e00;
    color: #ff3e00;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.buy-now:hover {
    background: #ff3e00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 62, 0, 0.3);
}

.buy-now.featured {
    background: #ff3e00;
    color: #fff;
}

.buy-now.featured:hover {
    background: transparent;
    color: #ff3e00;
}

.service-item {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #ff3e00;
}

.dot-separator {
    color: #ff3e00;
    font-size: 18px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 130px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.custom-star {
    color: #ff3e00;
    font-size: 120px;
    margin-left: 20px;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(255, 62, 0, 0.8);
    animation: rotateStar 8s linear infinite;
    position: relative;
    transform-origin: center;
    z-index: 10;
    top: -20px;
    line-height: 0;
    -webkit-text-fill-color: #ff3e00;
    opacity: 1;
}

@keyframes rotateStar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tagline {
    font-size: 18px;
    color: #888;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 95%;
    max-width: 650px;
    filter: drop-shadow(0 0 30px rgba(255, 62, 0, 0.3));
    animation: rocketFloat 8s ease-in-out infinite,
        rocketTilt 12s ease-in-out infinite;
    transform-origin: center center;
}

@media (max-width: 1400px) {
    .main-title {
        font-size: 110px;
    }
}

@media (max-width: 1200px) {
    .main-title {
        font-size: 90px;
    }

    .hero-content {
        width: 90%;
    }

    .custom-star {
        font-size: 70px;
        top: 8px;
    }
}

@media (max-width: 992px) {
    .hero {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 70px;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
}

/* Media Queries */
@media (max-width: 1024px) {
    .main-title {
        font-size: 100px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pricing-box {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .social-media-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        padding: 15px 20px;
        grid-template-columns: auto auto;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
        margin-top: 20px;
    }

    .get-in-touch {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        padding: 100px 20px 50px;
        text-align: center;
        gap: 40px;
    }

    .main-title {
        font-size: 50px;
    }

    .separator {
        width: 60px;
        height: 3px;
    }

    .separator_main {
        width: 60px;
        height: 3px;
    }

    .services-list {
        gap: 10px;
    }

    .service-item {
        font-size: 14px;
    }

    .dot-separator {
        font-size: 14px;
    }

    .hero-content .tagline {
        font-size: 16px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo img {
        height: 30px;
    }

    .get-in-touch {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content .tagline {
        font-size: 14px;
    }

    .hero-image img {
        width: 90%;
        max-width: 300px;
    }
}

@keyframes rocketFloat {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(-10px);
    }

    75% {
        transform: translateY(20px) translateX(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rocketTilt {
    0% {
        transform: rotate(2deg);
    }

    25% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(1deg);
    }

    75% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(2deg);
    }
}

.rocket-wrapper {
    position: relative;
    z-index: 1;
}

.rocket-particles {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: radial-gradient(circle at top,
            rgba(255, 62, 0, 0.4) 0%,
            transparent 70%);
    filter: blur(5px);
    animation: particlesFloat 2s ease-out infinite;
    z-index: -1;
}

@keyframes particlesFloat {
    0% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(1.5);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About Page Styles */
.about-page {
    padding-top: 100px;
}

.about-hero {
    min-height: calc(100vh - 100px);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 62, 0, 0.1);
    border-color: rgba(255, 62, 0, 0.3);
}

.about-icon {
    font-size: 40px;
    color: #ff3e00;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    nav {
        padding: 20px;
        grid-template-columns: auto auto auto;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .get-in-touch {
        padding: 8px 15px;
    }
}

@media (max-width: 1200px) {
    .pricing-container {
        padding: 0 20px;
    }

    .pricing-box {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .pricing-box {
        width: 100%;
        max-width: 500px;
    }

    .pricing-box.featured {
        transform: scale(1);
    }

    .pricing-box.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        grid-template-columns: auto auto;
    }

    .nav-links:not(.get-in-touch) {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 100px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 47px;
    }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 50px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.footer-section {
    color: #fff;
    text-align: left;
}

.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section:last-child {
    text-align: right;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ff3e00;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #ff3e00;
}

.footer-section:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section:nth-child(2) p {
    justify-content: flex-start;
    width: fit-content;
}

.footer-section:last-child p {
    justify-content: flex-end;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: #ff3e00;
}

.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    justify-content: flex-end;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a img {
    width: 80%;
    height: 80%;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ff3e00;
    transform: translateY(-3px);
    background: rgba(255, 62, 0, 0.1);
}

.footer-social a:hover img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(3124%) hue-rotate(355deg) brightness(101%) contrast(100%);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        gap: 30px;
    }
}