/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');


:root {
    --primary-color: #0F6679;
    --secondary-color: #619146;
    --accent-color: #0F6679;
    --success-color: #619146;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0F6679 0%, #619146 100%);
    --gradient-hover: linear-gradient(135deg, #619146 0%, #0F6679 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* ===== Navbar Styles ===== */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(15, 102, 121, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(15, 102, 121, 0.2);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 102, 121, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230F6679' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    position: relative;
    margin: 0 15px;
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 0 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: slideInDown 1s ease;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: slideInUp 1s ease 0.2s both;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    animation: slideInUp 1s ease 0.4s both;
    display: flex;
    gap: 15px;
    /* flex-wrap: wrap; */
}

.btn-primary-custom {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(15, 102, 121, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== Animations ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ===== Section Styles ===== */
section {
    padding: 90px 0;
}

section.light-section {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: slideInDown 0.8s ease;
    color: var(--primary-color);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease 0.2s both;
}

/* ===== Card Styles ===== */
.service-card {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 45px 35px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 102, 121, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 102, 121, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== Package Cards ===== */
.package-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 35px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(15, 102, 121, 0.2);
    transform: scale(1.03);
    background: linear-gradient(to bottom, rgba(15, 102, 121, 0.02), white);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 102, 121, 0.15);
    border-color: var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(97, 145, 70, 0.3);
}

.package-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.package-features li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.package-features li:hover {
    padding-left: 15px;
    color: var(--primary-color);
}

.package-features li::before {
    content: '\2713';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.3rem;
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(15, 102, 121, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 14px 45px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(15, 102, 121, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 102, 121, 0.4);
    background: var(--gradient-hover);
}

.success-message {
    background-color: #d1f2d9;
    color: #1e7e34;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid var(--secondary-color);
    font-weight: 500;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

/* ===== About Section ===== */
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 15px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.features-list li:hover {
    padding-left: 10px;
    color: var(--secondary-color);
}

.features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.features-list li:hover::before {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
}

/* ===== Contact Section ===== */
.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(15, 102, 121, 0.08);
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(15, 102, 121, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ===== Counter Styles ===== */
.counter {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #0a4a57 0%, #4a6e3a 100%);
    color: white;
    position: relative;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

footer hr {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

/* ===== Utility Classes ===== */
.btn-sm {
    padding: 10px 25px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background: var(--gradient-primary) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
        background: rgba(248, 249, 250, 0.95);
        border-radius: 10px;
        margin-top: 15px;
    }

    .nav-link {
        margin: 10px 0;
        padding: 10px 20px !important;
    }

    .nav-link::after {
        display: none;
    }

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }

    .counter {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .service-icon {
        font-size: 2.8rem;
    }

    .service-title {
        font-size: 1.4rem;
    }
}
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        width: 100%;
    }

    .hero-buttons .btn {
        display: block;
        margin-bottom: 10px;
    }
}

/* ===== Smooth Scrolling Observer Animation ===== */
.fade-in-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Loading Animation ===== */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Additional Styles for Enhanced Home Page ===== */

/* Hero Image Animation */
.hero-image img {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Cards */
.stat-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(15, 102, 121, 0.2) !important;
}

.stat-icon i {
    animation: pulse 2s ease-in-out infinite;
}

/* Feature Items */
.feature-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background: white !important;
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.feature-item:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 145, 70, 0.2) !important;
}

/* CTA Section Animation */
.cta-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Image Hover Effects */
.why-choose-section img,
.hero-image img {
    transition: all 0.3s ease;
}

.why-choose-section img:hover {
    transform: scale(1.05);
}

/* Smooth fade-in for images */
.hero-image,
.why-choose-section img {
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 1rem;
    }

    .feature-item {
        margin-bottom: 1rem !important;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .cta-section {
        padding: 50px 0 !important;
    }

    .cta-section h2 {
        font-size: 1.8rem !important;
    }
}

/* Additional utility classes */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* ===== Gallery Section Styles ===== */
.gallery-item {
    cursor: pointer;
    height: 250px;
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* Smooth page scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Additional button hover effects */
.btn-primary-custom,
.btn-outline-custom {
    text-decoration: none !important;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover {
    text-decoration: none !important;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    margin-top: 0;
    line-height: 60px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }
}

/* ===== Policy Pages Styles ===== */
.content-box {
    line-height: 1.8;
}

.content-box h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-box h4 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.list-styled {
    list-style: none;
    padding-left: 0;
}

.list-styled li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.list-styled li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-card {
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.term-item {
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateX(10px);
}

.message-content p {
    margin-bottom: 1.5rem;
}

.compliance-disclaimer {
    transition: all 0.3s ease;
}

.compliance-disclaimer:hover {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: var(--gradient-primary) !important;
}

.bg-secondary-custom {
    background: var(--gradient-hover) !important;
}
