.hero {
    background-image: url('../Images/bg2.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ================= NAVBAR ================= */

.navbar {
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 123, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* NAV LINKS */
.nav-link {
    color: white;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #00d4ff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

/* Center slide underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #007bff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* ================= BUTTONS ================= */

.btn-custom {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    border-radius: 999px;
    border: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.5);
}

/* Shine effect */
.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.6s;
}

.btn-custom:hover::before {
    left: 100%;
}

/* ================= GLASS BANNER ================= */

.glass-banner {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 14px 22px;
    display: inline-block;
    color: white;
    margin-top: 50px;
    transition: all 0.4s ease;
}

.glass-banner:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

/* Fix heart shadow error (removed wrong semicolon) */
.blue-heart {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.8));
}

/* ================= PRICING SECTION ================= */

.tgx-wrapper {
    background-image: url('../Images/bg2.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.tgx-hero-title {
    font-weight: 700;
    font-size: 2.2rem;
}

.tgx-hero-sub {
    opacity: 0.9;
    font-size: 1rem;
}

/* ================= CARDS ================= */

.tgx-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    padding: 0 !important; /* completely removed padding */
    overflow: hidden; /* ensures children don’t overflow rounded corners */
}

.tgx-card img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0; /* top corners rounded for image */
    transition: transform 0.4s ease;
}

.tgx-card h4,
.tgx-card h6,
.tgx-card ul,
.tgx-card button {
    margin: 12px 16px; /* small spacing inside card, optional */
}

.tgx-card ul {
    padding-left: 16px;
}

.tgx-card button {
    margin-bottom: 16px;
}

/* Hover effect remains */
.tgx-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.tgx-card:hover img {
    transform: scale(1.08);
}

/* Highlighted card animation */
.tgx-highlight {
    border: 2px solid #0d6efd;
    animation: pulseBorder 2.5s infinite;
}



@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 rgba(13,110,253,0.4); }
    50% { box-shadow: 0 0 30px rgba(13,110,253,0.8); }
    100% { box-shadow: 0 0 0 rgba(13,110,253,0.4); }
}

/* ================= BADGE ================= */

.tgx-badge {
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}



/* ================= DOWNLOAD BUTTON ================= */

.tgx-download-btn {
    margin-bottom: -120px;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.tgx-download-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.7);
}

.tgx-btn {
    border-radius: 10px;
    padding: 10px 0;
    font-weight: 600;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border: none;
    transition: all 0.3s ease;
}

.tgx-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* ================= MOBILE FLOAT ================= */

@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 0 rgba(0,123,255,0.0); }
    50% { box-shadow: 0 0 35px rgba(0,123,255,0.6); }
    100% { box-shadow: 0 0 0 rgba(0,123,255,0.0); }
}

.mobile-float {
    animation: floatY 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.mobile-float:hover {
    transform: scale(1.07) rotate(-3deg);
}

/* ================= FOOTER ================= */

footer {
    color: white;
    background: rgba(0, 123, 255, 0.95);
    padding: 20px 0px;
    text-align: center;
}

/* .tgx-wrapper {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
} */

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,123,255,0.6);
}

.feature-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.gift-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.gift-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,123,255,0.6);
    background: rgba(255,255,255,0.15);
}

.gift-card i {
    color: #ffd700;
}

.compare-card {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.compare-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.6);
    background: rgba(255,255,255,0.15);
}

.compare-card img {
    transition: 0.4s ease;
}

.compare-card:hover img {
    transform: scale(1.05);
}

/* Banner Background */
.cta-banner {
    padding: 50px 60px;
    background-image: url('../Images/bg2.png');
    color: white;
    background-size: cover;
}

/* Container */
.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Text */
.cta-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: #d0d8ff;
    max-width: 650px;
    line-height: 1.6;
}

/* Download Button */
.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 28px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #3aa0ff, #5ed0ff);
    box-shadow:
        0 0 15px rgba(90,180,255,0.6),
        inset 0 0 10px rgba(255,255,255,0.2);
    transition: 0.3s;
}

.download-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.6);
    background: rgba(255,255,255,0.15);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text .small {
    font-size: 14px;
}

.btn-text .big {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h1 {
        font-size: 28px;
    }
}