/* Global Styles */
* {
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF8C00;
    --dark-orange: #E67E00;
    --light-orange: #FFF5E6;
    --dark-bg: #1A1A1A;
    --text-main: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

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

@media (max-width: 767px) {
    .section-title { font-size: 1.5rem; }
    .navbar-brand { font-size: 1rem; }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

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

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

.btn-cta:hover {
    background: var(--dark-orange);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
}

.scroll-arrow {
    margin-top: 4rem;
    font-size: 3rem;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Sections */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
}

/* Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-orange);
}

.check-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    height: 100%;
}

.check-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-right: 20px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-orange);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1;
}

.step-card h5, .step-card p {
    position: relative;
    z-index: 2;
}

/* Pricing */
.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.price-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    position: relative;
}

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

.price-tag {
    margin: 25px 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-orange);
}

/* Buttons */
.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: var(--dark-orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255,140,0,0.4);
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 15px;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer */
.footer-section {
    background: #f8f9fa;
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
}

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

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.email-text {
    word-break: break-all;
    font-weight: 600;
    color: var(--primary-orange);
}

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

.text-orange {
    color: var(--primary-orange);
}

.max-w-600 {
    max-width: 600px;
}

.max-h-400 {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.h-300 {
    height: 300px;
}

.object-fit-cover {
    object-fit: cover;
}

/* Swiper Custom */
.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}
.swiper-pagination {
    bottom: -5px !important;
}
.swiper {
    padding-bottom: 35px !important;
}
.accordion-button:not(.collapsed) {
    background-color: var(--light-orange);
    color: var(--dark-orange);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}/* Main container spacing */
.lawMatrixNode {
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Moderate header sizes */
.lawMatrixNode h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.lawMatrixNode h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.lawMatrixNode h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.lawMatrixNode h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.lawMatrixNode h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraph styles */
.lawMatrixNode p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

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

.lawMatrixNode li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Remove margin from the last element in the container */
.lawMatrixNode > *:last-child {
    margin-bottom: 0;
}
.hero-btns a {
    margin: 8px !important;
}
@media (max-width:767px) {
    .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
 
}

section {
    overflow: hidden;
}