/*
Theme Name: Altivida Consulting
Theme URI: https://altivida.com
Author: Akash
Description: Custom WordPress theme for Altivida Consulting
Version: 1.0
*/

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

        :root {
            --primary-color: #1a3a52;
            --secondary-color: #d4a574;
            --accent-color: #2d5f7f;
            --text-dark: #1f1f1f;
            --text-light: #f8f8f8;
            --bg-light: #fafafa;
            --bg-cream: #f5f1ed;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(212, 165, 116, 0.2);
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo-img {
            width: 50px;
            height: 50px;
           transition: var(--transition);
        }

/*         .logo:hover .logo-img {
            transform: rotate(360deg);
        } */

        .logo-text {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            font-family: 'Cormorant Garamond', serif;
        }

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

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

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

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

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            background: linear-gradient(135deg, #f5f1ed 0%, #ffffff 50%, #e8e4df 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(5deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

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

        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .hero-title strong {
            font-weight: 700;
            display: block;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #5a5a5a;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* Buttons */
        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            box-shadow: 0 10px 30px rgba(26, 58, 82, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(26, 58, 82, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 58, 82, 0.3);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 500px;
            animation: slideInRight 1s ease-out;
        }

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

        .visual-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            height: 100%;
        }

        .visual-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .visual-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.1));
            transform: rotate(45deg);
            transition: var(--transition);
        }

        .visual-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .visual-card:hover::before {
            top: 50%;
            right: 50%;
        }

        .visual-card:nth-child(1) {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
        }

        .visual-card:nth-child(2) {
            background: var(--bg-cream);
        }

        .visual-card:nth-child(3) {
            background: white;
            border: 2px solid var(--secondary-color);
        }

        .visual-card:nth-child(4) {
            background: linear-gradient(135deg, var(--secondary-color), #e8c89e);
            color: white;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

.card-icon img{
	width: 15%;
}

        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .card-text {
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* Section Styling */
        section {
            padding: 6rem 5%;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 1.5rem auto 0;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #4a4a4a;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            transition: var(--transition);
            border-left: 4px solid var(--secondary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary-color);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Clients Section */
        .clients {
            background: var(--primary-color);
            color: white;
        }

        .clients .section-title {
            color: white;
        }

        .clients .section-title::after {
            background: var(--secondary-color);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .client-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .client-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .client-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .client-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .client-card p {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Process Section */
        .process {
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 16%;
            right: 16%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            box-shadow: 0 10px 30px rgba(26, 58, 82, 0.3);
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }

        .process-step:hover .step-number::after {
            opacity: 1;
            width: 130%;
            height: 130%;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .step-description {
            color: #666;
            line-height: 1.7;
        }

        /* Connect Section */
        .connect {
            background: var(--bg-cream);
            text-align: center;
        }

        .connect-content {
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #4a4a4a;
        }

        .connect-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 5% 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            width: 50px;
            height: 50px;
        }

        .footer-brand-text {
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            font-family: 'Cormorant Garamond', serif;
        }

        .footer-tagline {
            font-size: 1.1rem;
            color: var(--secondary-color);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .footer-compliance {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-email {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-email:hover {
            color: white;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

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

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

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

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-visual {
                height: 400px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-steps::before {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
             .nav-links { position: fixed; top: 80px; right: -100%; width: 280px; height: calc(100vh - 80px); background: white; flex-direction: column; padding: 2rem; box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1); transition: var(--transition); gap: 0; z-index: 999; }
            .nav-links.active { right: 0;  }
            .nav-links li { width: 100%; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
            .nav-links a { display: block; padding: 1rem 0; width: 100%; }
            .menu-toggle { display: flex; }
            .hero {
                padding: 6rem 5% 3rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

           .hero-visual {
				height: auto;
				min-height: 600px;
			}

            .visual-grid {
                grid-template-columns: 1fr;
                height: auto;
            }

            .visual-card {
                min-height: 150px;
            }

            .services-grid,
            .clients-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .logo-text {
                font-size: 1.1rem;
            }
        }

