/*
Theme Name: Custom Theme
Theme URI: http://example.com/custom-theme
Author: Your Name
Author URI: http://example.com
Description: A clean and professional WordPress theme with accent colors.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/

/* Import Google Fonts */

/* Adjust for sticky navbar */
body {
    padding-top: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        body {
            font-family: 'Inter', 'Segoe UI', Roboto, sans-serif, -apple-system, BlinkMacSystemFont;
            line-height: 1.6;
            color: #2C2C2C;
            background: linear-gradient(135deg, #1CBCBC 0%, #158B8B 50%, #0f6b6b 100%);
            min-height: 100vh;
        }

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

        header {
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(250, 250, 250, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo svg {
            height: 40px;
            width: auto;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #6B6B6B;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #1CBCBC;
        }

        .hero-logo-section {
            background: #FAFAFA;
            padding: 100px 0 40px;
            text-align: center;
        }

        .hero {
            padding: 40px 0 80px;
            text-align: center;
            color: #FAFAFA;
        }

        .hero-logo {
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-logo svg {
            height: 220px;
            width: auto;
            max-width: 600px;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

 

        .features {
            padding: 80px 0;
            background: #FAFAFA;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: #F5F5F5;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #E0E0E0;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(28, 188, 188, 0.1);
            background: #FAFAFA;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #1CBCBC, #158B8B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #FAFAFA;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2C2C2C;
        }

        .feature-card p {
            color: #6B6B6B;
            line-height: 1.6;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2C2C2C;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6B6B6B;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #158B8B 0%, #1CBCBC 100%);
            color: #FAFAFA;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-card p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1rem;
        }

        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        .see-it-in-action {
            padding: 80px 0;
            background: #FAFAFA;
        }

        .action-content {
            text-align: center;
            margin-top: 60px;
        }

        .action-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .action-step {
            text-align: center;
            padding: 30px 20px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #1CBCBC, #158B8B);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .action-step h3 {
            color: #2C2C2C;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .action-step p {
            color: #6B6B6B;
            line-height: 1.6;
        }

        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #158B8B 0%, #1CBCBC 100%);
            color: #FAFAFA;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        footer {
			font-size:0.875em;
            background: #2C2C2C;
            color: #FAFAFA;
            text-align: center;
            padding: 20px 0;
        }

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

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 70%;
            animation-delay: 4s;
        }

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .form-inputs {
                flex-direction: column;
                gap: 15px;
            }

            .hero-text {
                padding: 120px 0 60px;
            }

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

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }
        }
