

/* Importing parent theme styles is handled via functions.php.
   Add your custom CSS below this line. */


        :root {
            --primary-color: #1a365d;
            --secondary-color: #2d3748;
            --accent-color: #c53030;
            --accent-light: #fc8181;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
            --text-color: #4a5568;
            --light-text: #718096;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            --gradient-accent: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.ci-favorites-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
}
}
.ci-fav-content {
    display: flex;
    justify-content: space-between;
}
button.ci-fav-btn.ci-active {
    border: none;
    font-size: 35px;
    color: red;
}
a.ci-fav-title {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        h3 {
            font-size: 2rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--secondary-color);
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-color);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--gradient-accent);
            color: white;
            padding: 18px 35px;
            border-radius: var(--border-radius);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 20px rgba(197, 48, 48, 0.2);
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(197, 48, 48, 0.3);
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-secondary {
            background: var(--gradient-primary);
            box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
        }

        .btn-secondary:hover {
            box-shadow: 0 15px 30px rgba(26, 54, 93, 0.3);
        }

        section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

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

        .section-dark {
            background: var(--gradient-primary);
            color: white;
        }

        .section-dark h2, 
        .section-dark h3 {
            color: white;
        }

        .section-dark h2:after {
            background: white;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(197, 48, 48, 0.05);
            animation: float 20s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .header.scrolled {
            padding: 5px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary-color);
            position: relative;
        }

        .logo i {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 2rem;
            animation: logoPulse 2s infinite;
        }

        .logo-text {
            position: relative;
        }

        .logo-text:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: var(--transition);
        }

        .logo:hover .logo-text:after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            color: var(--dark-color);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--accent-color);
            transform: rotate(90deg);
        }

        .hero {
            padding-top: 200px;
            padding-bottom: 150px;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 55, 72, 0.85) 100%), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1925&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(197, 48, 48, 0.1), transparent);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            color: white;
            -webkit-text-fill-color: white;
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .signup-form {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: var(--border-radius);
            padding: 50px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: var(--box-shadow);
            animation: fadeInUp 1s ease-out 0.6s both;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .signup-form:hover {
            transform: translateY(-10px) rotateX(2deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--dark-color);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e2e8f0;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background-color: white;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(197, 48, 48, 0.1);
            transform: translateY(-2px);
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
            animation: fadeIn 1s ease-out 0.9s both;
        }

        .form-col {
            flex: 1;
            padding: 0 10px;
            min-width: 250px;
        }

        .two-column {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
        }

        .two-column > div {
            flex: 1;
            min-width: 300px;
        }

        .image-placeholder {
            border-radius: var(--border-radius);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            font-weight: 600;
            overflow: hidden;
            position: relative;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .image-placeholder:hover {
            transform: scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .image-placeholder:hover img {
            transform: scale(1.1);
        }

        .bullet-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .bullet-list li {
            margin-bottom: 1.2rem;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
        }

        .bullet-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .bullet-list li:hover:before {
            transform: scale(1.3);
        }

        .scripture {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 3rem 0;
            background: linear-gradient(45deg, rgba(197, 48, 48, 0.05), transparent);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .scripture:hover {
            transform: translateX(10px);
            box-shadow: var(--box-shadow);
        }

        .scripture:before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 8rem;
            color: rgba(197, 48, 48, 0.1);
            font-family: 'Merriweather', serif;
            line-height: 1;
        }

        .section-dark .scripture {
            color: white;
            border-left-color: white;
        }

        .pricing-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 60px 50px;
            text-align: center;
            box-shadow: var(--box-shadow);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }

        .pricing-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
        }

        .price {
            font-size: 4rem;
            font-weight: 900;
            color: var(--accent-color);
            margin: 1.5rem 0;
            position: relative;
            display: inline-block;
        }

        .price:after {
            content: '/year';
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--light-text);
            position: absolute;
            right: -70px;
            bottom: 10px;
        }

        .price span {
            font-size: 1rem;
            color: var(--light-text);
        }

        .donation-section {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(247, 250, 252, 0.9) 0%, rgba(237, 242, 247, 0.9) 100%);
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
        }

        .donation-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23c53030" opacity="0.03"/></svg>');
            background-size: cover;
        }

        .donation-content {
            position: relative;
            z-index: 1;
        }

        .footer {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gradient-accent);
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 40px;
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
            margin-bottom: 40px;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
        }

        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a i {
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .footer-links a:hover i {
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--accent-color);
            transform: translateY(-5px) rotate(360deg);
        }

        .footer-bottom {
            width: 100%;
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: particleFloat 20s infinite linear;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        @keyframes logoPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(720deg);
                opacity: 0;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(197, 48, 48, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(197, 48, 48, 0);
            }
        }

        @keyframes shake {
            0%, 100% {
                transform: translateX(0);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px);
            }
        }

        /* Scroll Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: transparent;
            z-index: 1001;
        }

        .progress-bar {
            height: 5px;
            background: var(--gradient-accent);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 10px 20px rgba(197, 48, 48, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(197, 48, 48, 0.4);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero {
                padding-top: 180px;
                background-attachment: scroll;
            }
            
            .two-column {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 15px 0;
                width: 100%;
                text-align: center;
            }
            
            .nav-links a {
                display: block;
                padding: 10px;
                font-size: 1.1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .signup-form {
                padding: 30px 25px;
            }
            
            section {
                padding: 80px 0;
            }
            
            .pricing-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding-top: 150px;
                padding-bottom: 100px;
            }
            
            .btn {
                padding: 15px 25px;
                font-size: 0.95rem;
            }
            
            .form-col {
                min-width: 100%;
            }
            
            .price {
                font-size: 3rem;
            }
            
            .price:after {
                position: static;
                display: block;
                margin-top: 10px;
            }
            
            .footer-container {
                flex-direction: column;
            }
        }
   