/*
Theme Name: AI Automation
Theme URI: https://aiautomations.studio/
Author: AI Automation
Author URI: https://aiautomations.studio
Description: A custom WordPress theme for AI Automation
Version: 2.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-automation-theme-four
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --atoll: #0a5a78;
            --ecru-white: #fbfbf5;
            --fern: #5ab453;
            --atlantis: #92c933;
            --shadow-green: #99bac0;
            --deco: #cddf8f;
            --botticelli: #c9e0e5;
            --beryl-green: #d5e5c3;
            --waterloo: #7e8494;
            --gray-suit: #bcb9c6;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ecru-white);
            color: var(--waterloo);
        }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(90, 180, 83, 0.3), 
                           0 0 40px rgba(10, 90, 120, 0.1); 
            }
            50% { 
                box-shadow: 0 0 30px rgba(90, 180, 83, 0.5), 
                           0 0 60px rgba(10, 90, 120, 0.2); 
            }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes wave {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            75% { transform: translateX(10px) translateY(5px); }
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce-in {
            0% { opacity: 0; transform: scale(0.8); }
            50% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        .float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slide-up 0.8s ease-out forwards;
        }
        
        .wave-animation {
            animation: wave 6s ease-in-out infinite;
        }

        .fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }

        .bounce-in {
            animation: bounce-in 0.6s ease-out forwards;
        }
        
        /* Gradient backgrounds */
        .gradient-bg {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 50%, var(--atlantis) 100%);
        }
        
        .gradient-bg-soft {
            background: linear-gradient(135deg, var(--botticelli) 0%, var(--beryl-green) 50%, var(--deco) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--atoll) 0%, var(--fern) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(251, 251, 245, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(153, 186, 192, 0.3);
        }
        
        .glass-green {
            background: rgba(213, 229, 195, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(146, 201, 51, 0.2);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--ecru-white);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--atoll), var(--fern));
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--fern), var(--atlantis));
        }
        
        /* Button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--atoll), var(--fern));
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 30px rgba(10, 90, 120, 0.3);
        }
        
        .btn-secondary {
            border: 2px solid var(--fern);
            color: var(--fern);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--fern);
            color: white;
            transform: translateY(-2px);
        }

		#button-2:hover,
		#button-2:focus {
			color:#0a5a78;	
		}
        
        /* Navigation styles */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding-bottom: 2px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--fern), var(--atlantis));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: var(--atlantis);
            border-radius: 50%;
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .nav-link:hover {
            color: var(--fern);
            transform: translateY(-1px);
        }

        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: white !important;
            backdrop-filter: none !important;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            width: 24px;
            height: 18px;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--atoll);
            transition: all 0.3s ease;
            margin: 2px 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 1px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -4px);
        }
        
        /* Neural Network Styles */
        #neuralNetwork {
            filter: blur(0.5px);
        }
        
        .neural-label {
            animation: float-label 8s ease-in-out infinite;
            opacity: 0.9;
        }
        
        .neural-label:nth-child(1) { animation-delay: 0s; }
        .neural-label:nth-child(2) { animation-delay: 2s; }
        .neural-label:nth-child(3) { animation-delay: 4s; }
        .neural-label:nth-child(4) { animation-delay: 6s; }
        
        @keyframes float-label {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-10px) scale(1.05); }
        }

        /* Responsive typography */
        @media (max-width: 640px) {
            .text-hero {
                font-size: 2rem;
                line-height: 1.15;
            }
            
            .text-hero-sub {
                font-size: 1.125rem;
            }
        }

        @media (min-width: 641px) and (max-width: 768px) {
            .text-hero {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 769px) {
            .text-hero {
                font-size: 3rem;
                line-height: 1.1;
            }
            
            .text-hero-sub {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .text-hero {
                font-size: 3.5rem;
                line-height: 1.1;
            }
        }

        @media (min-width: 1280px) {
            .text-hero {
                font-size: 4rem;
                line-height: 1.1;
            }
        }

        /* Card hover effects for mobile */
        @media (hover: none) {
            .hover-card:active {
                transform: scale(0.98);
            }
        }