:root {
    --primary-bg: #050a24;
    --secondary-bg: #0a1133;
    --gold: #f3b72c;
    --gold-hover: #d49a1d;
    --text-white: #ffffff;
    --text-muted: #b0b8d1;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Background Bubbles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: rgba(243, 183, 44, 0.15);
    border-radius: 50%;
    filter: blur(4px);
    box-shadow: 0 0 10px rgba(243, 183, 44, 0.3);
    animation: bubbleFloat 20s linear infinite;
}

.bubble:nth-child(1) { width: 5px; height: 5px; top: 10%; left: 20%; animation-duration: 15s; }
.bubble:nth-child(2) { width: 8px; height: 8px; top: 30%; left: 80%; animation-duration: 25s; animation-delay: -5s; }
.bubble:nth-child(3) { width: 4px; height: 4px; top: 50%; left: 40%; animation-duration: 18s; animation-delay: -2s; }
.bubble:nth-child(4) { width: 10px; height: 10px; top: 70%; left: 10%; animation-duration: 30s; }
.bubble:nth-child(5) { width: 6px; height: 6px; top: 90%; left: 60%; animation-duration: 22s; animation-delay: -10s; }
.bubble:nth-child(6) { width: 7px; height: 7px; top: 15%; left: 90%; animation-duration: 28s; }
.bubble:nth-child(7) { width: 5px; height: 5px; top: 40%; left: 5%; animation-duration: 16s; animation-delay: -4s; }
.bubble:nth-child(8) { width: 9px; height: 9px; top: 60%; left: 70%; animation-duration: 35s; }
.bubble:nth-child(9) { width: 4px; height: 4px; top: 80%; left: 30%; animation-duration: 19s; animation-delay: -8s; }
.bubble:nth-child(10) { width: 6px; height: 6px; top: 25%; left: 50%; animation-duration: 24s; }
.bubble:nth-child(11) { width: 8px; height: 8px; top: 45%; left: 85%; animation-duration: 27s; animation-delay: -1s; }
.bubble:nth-child(12) { width: 5px; height: 5px; top: 65%; left: 15%; animation-duration: 14s; }
.bubble:nth-child(13) { width: 7px; height: 7px; top: 85%; left: 45%; animation-duration: 32s; animation-delay: -3s; }
.bubble:nth-child(14) { width: 10px; height: 10px; top: 5%; left: 75%; animation-duration: 40s; }
.bubble:nth-child(15) { width: 4px; height: 4px; top: 35%; left: 95%; animation-duration: 21s; animation-delay: -6s; }
.bubble:nth-child(16) { width: 6px; height: 6px; top: 12%; left: 12%; animation-duration: 17s; }
.bubble:nth-child(17) { width: 9px; height: 9px; top: 32%; left: 72%; animation-duration: 26s; animation-delay: -4s; }
.bubble:nth-child(18) { width: 5px; height: 5px; top: 52%; left: 42%; animation-duration: 19s; animation-delay: -1s; }
.bubble:nth-child(19) { width: 11px; height: 11px; top: 72%; left: 12%; animation-duration: 31s; }
.bubble:nth-child(20) { width: 7px; height: 7px; top: 92%; left: 62%; animation-duration: 23s; animation-delay: -9s; }
.bubble:nth-child(21) { width: 8px; height: 8px; top: 17%; left: 92%; animation-duration: 29s; }
.bubble:nth-child(22) { width: 6px; height: 6px; top: 42%; left: 7%; animation-duration: 17s; animation-delay: -3s; }
.bubble:nth-child(23) { width: 10px; height: 10px; top: 62%; left: 72%; animation-duration: 36s; }
.bubble:nth-child(24) { width: 5px; height: 5px; top: 82%; left: 32%; animation-duration: 20s; animation-delay: -7s; }
.bubble:nth-child(25) { width: 7px; height: 7px; top: 27%; left: 52%; animation-duration: 25s; }
.bubble:nth-child(26) { width: 9px; height: 9px; top: 47%; left: 87%; animation-duration: 28s; animation-delay: -2s; }
.bubble:nth-child(27) { width: 6px; height: 6px; top: 67%; left: 17%; animation-duration: 15s; }
.bubble:nth-child(28) { width: 8px; height: 8px; top: 87%; left: 47%; animation-duration: 33s; animation-delay: -4s; }
.bubble:nth-child(29) { width: 11px; height: 11px; top: 7%; left: 77%; animation-duration: 41s; }
.bubble:nth-child(30) { width: 5px; height: 5px; top: 37%; left: 97%; animation-duration: 22s; animation-delay: -5s; }

@keyframes bubbleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    50% { transform: translateY(-150px) translateX(60px) scale(1.2); }
    80% { opacity: 0.6; }
    100% { transform: translateY(-300px) translateX(-60px) scale(1); opacity: 0; }
}


.text-gold {
    color: var(--gold);
}

.bg-dark-2 {
    background-color: var(--secondary-bg);
}

.py-100 {
    padding: 100px 0;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #ffcc00);
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 183, 44, 0.4);
    background: linear-gradient(135deg, #ffcc00, var(--gold));
    color: #000;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

a {
    color: rgb(255 255 255);
    text-decoration: none;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}

/* Navbar */
.navbar {
    background: rgba(5, 10, 36, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-white) !important;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 183, 44, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-image {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(212, 154, 29, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.service-card {
    background: linear-gradient(180deg, rgba(212, 154, 29, 0.8) 0%, var(--primary-bg) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    margin-top: 50px;
    z-index: 2;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.service-card .icon-box img {
    width: 60%;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

/* About Section */
.benefit-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.vision-mission-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.vision-mission-card:hover {
    background: rgba(243, 183, 44, 0.05);
    border-color: var(--gold);
}

/* Value Cards */
.value-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card i {
    font-size: 2.5rem;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(243, 183, 44, 0.05);
}

/* Estimator */
.estimator-form {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.estimator-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
}

.results-panel {
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
    border: 2px solid var(--gold);
    border-radius: 20px;
}

.result-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Rank Cards */
.rank-card {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.rank-card .rank-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
}

.reward-box {
    margin-top: 25px;
    padding: 15px;
    background: rgba(243, 183, 44, 0.1);
    border-radius: 10px;
}

.rank-card:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}

/* Footer & Important Info */
.important-info-box {
    background: linear-gradient(135deg, rgba(243, 183, 44, 0.05), transparent);
    border: 1px solid var(--gold);
    border-radius: 20px;
}

.terms-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.border-gold {
    border: 1px dashed var(--gold);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

/* Stats */
.stat-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Feature Checklist */
.check-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
}