/* ðŸŒŒ GLOBAL */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    overflow-x: hidden;

    background: 
        radial-gradient(circle at 20% 30%, rgba(0,150,255,0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,150,255,0.2), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0,150,255,0.15), transparent 60%),
        #000;

    background-attachment: fixed;
}

/* ðŸ”” ANNOUNCEMENT */
.announcement {
    background: #000;
    text-align: center;
    padding: 10px;
}

.offer-text {
    font-size: 15px;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
}

.new-price {
    color: #F54927;
    font-weight: 700;
}

.highlight {
    color: #F54927;
    font-weight: 700;
}

/* ðŸ” NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ðŸ”— NAV LINKS */
nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

nav a:not(.btn):not(.primary-btn):not(.pricing-btn):not(.how-btn)::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #00c6ff;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}
/* 🔘 BASE BUTTON */
/* 🔘 ONE BUTTON SYSTEM */
.btn,
.primary-btn,
.pricing-btn,
.how-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;

    text-decoration: none;
    border: none;

    font-size: 15px;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(45deg, #00c6ff, #0072ff);

    cursor: pointer;
    transition: all 0.3s ease;
}

/* ✨ HOVER */
.btn:hover,
.primary-btn:hover,
.pricing-btn:hover,
.how-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0,150,255,0.6);
}

/* ðŸš€ HERO */
.hero {
    min-height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-top {
    font-size: 18px;
    color: #00c6ff;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 53px;
    font-weight: 900;
    margin: 10px 0;
}

.highlight-blue {
    color: #07ACDE;
}

.hero-sub {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.video {
    display: flex;
    flex-direction: column;
    align-items: center; /* ðŸ‘ˆ THIS fixes left alignment */
    text-align: center;
    padding: 80px 20px;
}

/* Title */
.video-title {
    font-size: 35px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center; /* ðŸ‘ˆ ensure center */
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* adjust size here */
    margin: 30px auto;
    padding-bottom: 40.25%; /* ðŸ‘ˆ EXACT 16:9 */
}

/* ðŸŽ¥ Iframe */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    border-radius: 15px;
    border: none;

    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

/* Subtitle */
.video-sub {
    font-size: 15px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: center; /* ðŸ‘ˆ ensure center */
}

/* 🏭 INDUSTRIES */
.industries {
    text-align: center;
    padding: 80px 20px;
}

/* 🔧 INDUSTRIES TITLE SPACING FIX */
.industries .section-top {
  color: #00c6ff;
    margin-bottom: 2px;
}

.industries .section-title {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 3;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.industry-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,150,255,0.3);
}

.industry-card i {
    font-size: 25px;
    margin-bottom: 10px;
    color: #00c6ff;
}

.industry-card h3 {
    font-size: 12px;
    margin-bottom: 6px;
}

.industry-card p {
    font-size: 12px;
    color: #aaa;
}

/* 🚀 FEATURES SECTION */
.features {
    text-align: center;
    padding: 100px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top small heading */
.features .section-top {
    color: #00c6ff;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Main title */
.features .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.features-sub {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #aaa;
    font-size: 14px;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 👈 perfect layout */
    gap: 25px;
    width: 100%;
}

/* CARD */
.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

/* HOVER */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,150,255,0.25);
}

/* ICON */
.feature-card i {
    font-size: 24px;
    color: #00c6ff;
    margin-bottom: 12px;
}

/* TITLE */
.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

/* TEXT */
.feature-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .features {
        padding: 70px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* 💰 PRICING */
.pricing {
    padding: 60px;
}

.pricing-grid {
    display: flex;
    gap: 20px;
}

.price-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
}

.featured {
    border: 2px solid #6366f1;
}

/* 📞 FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #020617;
}
/* 🔐 BACKDROP */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);

    justify-content: center;
    align-items: center;
}

/* 📦 POPUP BOX */
.popup-content {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 35px 30px;
    border-radius: 18px;

    width: 92%;
    max-width: 380px;

    text-align: center;
    position: relative;

    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 70px rgba(0,0,0,0.7);

    animation: popupFade 0.3s ease;
}

/* ✨ ANIMATION */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ❌ CLOSE BUTTON */
.popup .close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
    color: #94a3b8;
    transition: 0.2s;
}

.popup .close:hover {
    color: white;
    transform: scale(1.1);
}

/* 🏷 TITLE */
.popup-content h2 {
    margin-bottom: 18px;
    font-size: 22px;
}

/* 🧾 INPUTS */
.popup-content input {
    width: 100%;
    padding: 14px 16px;
    margin: 12px 0;

    border-radius: 12px;
    border: 1px solid #1e293b;

    background: #020617;
    color: white;

    font-size: 15px;
    transition: 0.25s;
}

.popup-content input::placeholder {
    color: #64748b;
}

.popup-content input:focus {
    outline: none;
    border-color: #07ACDE;
    box-shadow: 0 0 0 2px rgba(7,172,222,0.25);
}

/* 🔘 BUTTON */
.popup-content button {
    width: 100%;
    margin-top: 18px;
    padding: 14px;

    border-radius: 999px;
    border: none;

    background: #07ACDE;
    color: white;
    font-weight: 600;
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.popup-content button:hover {
    box-shadow: 0 0 25px rgba(7,172,222,0.6);
    transform: translateY(-1px);
}

/* smooth scroll */
html {
    scroll-behavior: smooth;
}


.features-sub {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #aaa;
    font-size: 14px;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); /* 👈 5 per row */
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,150,255,0.25);
}

/* Icon */
.feature-card i {
    font-size: 22px;
    color: #00c6ff;
    margin-bottom: 10px;
}

/* Title */
.feature-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Text */
.feature-card p {
    font-size: 12px;
    color: #aaa;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

}
/* 💡 WHY SRONUS */
.why {
    text-align: center;
    padding: 80px 20px;
}

/* Grid → 3 per row */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 👈 3 in a row */
    gap: 30px; /* 👈 more spacing */
    max-width: 1000px; /* 👈 tighter = cleaner */
    margin: 50px auto 0;
}

/* Card */
.why-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 25px; /* 👈 bigger */
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* Hover */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,150,255,0.3);
}

/* Big stat */
.why-card h3 {
    font-size: 28px; /* 👈 bigger number */
    color: #00c6ff;
    margin-bottom: 10px;
}

/* Text */
.why-card p {
    font-size: 14px; /* 👈 slightly bigger */
    color: #aaa;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* 🔧 SECTION SPACING FIX */
.section-top {
    margin-bottom: 2px;
}

.section-title {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}
/* 🔵 WHY SRONUS TITLE COLOR */
.why .section-top {
    color: #00c6ff;
}
/* ⭐ TESTIMONIALS */
.testimonials {
    text-align: center;
    padding: 100px 20px;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 50px auto 0;
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

/* ⭐ STARS */
.stars {
    color: #facc15; /* gold */
    margin-bottom: 10px;
}

/* USER ROW */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

/* AVATAR */
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #00c6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* TEXT */
.user-info h4 {
    margin: 0;
    font-size: 14px;
}

.user-info span {
    font-size: 12px;
    color: #aaa;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.heart {
    color: pink;
}
.testimonials .section-top {
    font-size: 26px;
    font-weight: 700;
}

.testimonials .section-title {
    font-size: 16px;
    color: #aaa;
    font-weight: 400;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;

    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 35px rgba(0,150,255,0.25);
}
/* ✨ SCROLL ANIMATION BASE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* WHEN VISIBLE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* OPTIONAL VARIATIONS */
.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
/* STAGGER DELAY */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 👇 THIS CREATES EVEN DELAYS */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }
.hero {
    min-height: calc(100vh - 120px); /* 👈 adjust for navbar + announcement */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero-container {
    max-width: 650px; /* 👈 slightly tighter = perfect centering feel */
    margin: 0 auto;
}
/* 💰 PRICING SECTION */
.pricing {
    text-align: center;
    padding: 100px 20px;
}

/* GRID */
.pricing-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* CARD */
.price-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 350px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* HOVER */
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0,150,255,0.3);
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* TITLE */
.price-card h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

/* PRICE */
.price {
    font-size: 36px;
    font-weight: 800;
}

.price span {
    font-size: 14px;
    color: #aaa;
}

/* OLD PRICE */
.old-price {
    text-decoration: line-through;
    color: #888;
    margin: 5px 0;
}

/* SAVE */
.save {
    color: #00c6ff;
    font-weight: 600;
    margin-bottom: 20px;
}

/* FEATURES LIST */
.price-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.price-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
/* ⚙️ HOW IT WORKS */
.how {
    text-align: center;
    padding: 100px 20px;
}

/* GRID */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

/* CARD */
.how-card {
    background: rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* HOVER */
.how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,150,255,0.25);
}

/* STEP NUMBER */
.step {
    font-size: 28px;
    font-weight: 800;
    color: #00c6ff;
    margin-bottom: 10px;
}

/* TITLE */
.how-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* TEXT */
.how-card p {
    font-size: 13px;
    color: #aaa;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}
/* 🔒 SECURITY SECTION */
.sponsor {
    text-align: center;
    padding: 70px 20px;
}

/* TOP TEXT */
.sponsor-top {
    color: #00c6ff;
    font-size: 14px;
    margin-bottom: 5px;
}

/* TITLE */
.sponsor-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ICON */
.lock-icon {
    font-size: 22px;
    color: #00c6ff;
}

/* SUBTEXT */
.sponsor-sub {
    font-size: 13px;
    color: #aaa;
}
/* ❓ FAQ SECTION */
.faq {
    text-align: center;
    padding: 100px 20px;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
}

/* PLUS ICON */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
    color: #00c6ff;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    text-align: left;
    color: #aaa;
    font-size: 14px;
    transition: max-height 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-bottom: 15px;
}

.faq-item.active .faq-question::after {
    content: '-';
}
/* 🔵 FAQ TITLE COLOR */
.faq .section-top {
    color: #00c6ff;
}
/* 🔻 FOOTER */
.footer {
    background: rgba(255,255,255,0.03);
    padding: 70px 20px 30px;
    margin-top: 100px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LOGO */
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: WHITE;
    margin-bottom: 10px;
}

/* TEXT */
.footer-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

/* LINKS */
.footer-col a {
    display: block;
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 6px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #00c6ff;
}

/* CONTACT TEXT */
.footer-col p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
}

/* TRUST LINE */
.footer-trust {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: #888;
}

/* SOCIAL */
.footer-social {
    text-align: center;
    margin-top: 15px;
}

.footer-social a {
    margin: 0 10px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-social a:hover {
    color: #00c6ff;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #777;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #00c6ff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 15px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.footer-col p:hover {
    color: #fff;
    transition: 0.2s;
}
section {
    scroll-margin-top: 120px;
}
#pricing,
#faq {
    scroll-margin-top: 100px;
}
html {
    scroll-behavior: smooth;
}
.section-cta {
    text-align: center;
    margin-top: 30px;
}
.section-cta .btn:hover {
    transform: translateY(-2px);
}
input, button {
    outline: none;
    border: none;
}
.signup-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    padding: 100px 20px;
}

.signup-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.signup-section p {
    color: #aaa;
    margin-bottom: 30px;
}

/* FORM BOX */
.signup-form {
    width: 100%;
    max-width: 420px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}
.signup-form input {
    padding: 16px 18px;
    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.15); /* thicker + visible */
    background: rgba(255,255,255,0.04);

    color: #fff;
    font-size: 15px;

    transition: all 0.25s ease;
}
.signup-form input:focus {
    border-color: #07ACDE;
    box-shadow: 0 0 0 2px rgba(7, 172, 222, 0.2);
    background: rgba(255,255,255,0.06);
}
.signup-form input::placeholder {
    color: #888;
}
.signup-form {
    gap: 18px;
}
a.btn,
a.primary-btn,
a.pricing-btn,
a.how-btn {
    text-decoration: none !important;
}
/* ✅ NAVBAR BUTTON FIX (FORCE SAME SIZE) */
.navbar .btn,
.navbar .primary-btn {
    padding: 12px 26px !important;
    font-size: 14px !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px; /* 👈 forces same height */
    line-height: 1;
}
/* ✨ GLOBAL SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* 👇 WHEN VISIBLE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}