/* Global Styles */
:root {
    --primary-green: #0a2e1f;
    --accent-green: #10b981;
    --dark-bg: #050505;
    --light-gray: #f8f9fa;
    --text-white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Typography Responsiveness */
h1 {
    font-size: 2.5rem;
}

h2.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

@media (max-width: 991px) {
    h1 { font-size: 1.8rem; }
    h2.section-title { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 1.4rem; }
    h2.section-title { font-size: 1.2rem; }
    .navbar-brand img { height: 30px; }
    .nav-link { font-size: 0.9rem; }
}
.navbar-brand {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: #f8f9fa;
}
.navbar-brand:hover {
    color: #10b981;
}
.footer-logo {
    text-decoration: none;
     display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    align-items: center;
    font-weight: 800;
    color: #f8f9fa;
    margin-bottom: 25px;
}
.text-accent {
    color: var(--accent-green) !important;
}

.bg-dark-green {
    background-color: var(--primary-green);
}

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

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

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

.btn-cta {
    background: var(--accent-green);
    color: var(--primary-green) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    background: #0d9668;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    color: white;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
        padding: 120px 0 60px;
    }
}

.scroll-arrow {
    display: inline-block;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.mistake-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border-left: 5px solid var(--accent-green);
    position: relative;
}

.mistake-card .number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Pricing */
.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    background: var(--text-white);
    border: 2px solid var(--accent-green);
    transform: scale(1.05);
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-tag {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.btn-outline-accent {
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 700;
}

.btn-outline-accent:hover {
    background: var(--accent-green);
    color: white;
}

/* Form */
.form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.btn-primary {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    font-weight: 700;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #0d9668;
    border-color: #0d9668;
}

/* Footer */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

/* Swiper Custom */
.swiper-pagination-bullet-active {
    background: var(--accent-green);
}

/* Utils */
.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.custom-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}/* Main container padding */
.rightsCloudWrap {
    padding: 30px 25px 0;
    line-height: 1.6;
}

/* Moderate heading styles */
.rightsCloudWrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.rightsCloudWrap h2 {
    font-size: 20px;
    margin: 25px 0 15px;
    font-weight: 600;
    color: #333;
}

.rightsCloudWrap h3 {
    font-size: 18px;
    margin: 20px 0 12px;
    font-weight: 600;
    color: #444;
}

.rightsCloudWrap h4 {
    font-size: 16px;
    margin: 15px 0 10px;
    font-weight: 600;
    color: #444;
}

.rightsCloudWrap h5 {
    font-size: 14px;
    margin: 15px 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
}

/* Content text styles */
.rightsCloudWrap p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
}

/* List styles */
.rightsCloudWrap ul {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style-type: disc;
}

.rightsCloudWrap li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
}
.swiper-horizontal>.swiper-pagination-bullet {
    bottom: -5px !important;
}
.swiper-pagination {
    bottom: -5px !important;
}
.swiper {
    padding-bottom: 40px !important;
}
.navbar-toggler {
    background-color: #0d9668;
}
section {
    overflow: hidden;
}
.hero-section h1 {
    margin-top: 50px;
}