/*

Theme Name: PacMed
Text Domain: PacMed
Version: 1.0
Description: The Total Practice Management Solution
Tags: healthcare solutions, medical practices
Author: yas
Author URI: https://eluvya.com

*/




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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

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

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #2563eb;
        }

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

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

        .nav-links a:hover {
            color: #2563eb;
        }

        .cta-button {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
            margin-bottom: 40px;
        }

        .mobile-nav-links li {
            margin: 30px 0;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 24px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: #2563eb;
        }

        .mobile-cta {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .mobile-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        /* Hero Section with Parallax */
        .hero {
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 10px 0 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            z-index: 1;
            background-image: url('images/hero-bg-image.png');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: flex-end;
            min-height: 600px;
            padding: 4rem 2rem 0;
        }
        
         .hero-text {
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .hero-text h1 {
            font-size: 3.3rem;
            font-weight: 600;
            color: black;
            margin-bottom: 20px;
            line-height: 1.2;
        }

         .hero-text h4 {
            color: #414141;
            margin-bottom: 20px;
        }

         .container_x {
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
            padding-bottom: 20px;
            border-radius: 15px;
        }

         .header-section_x {
            padding: 25px;
            margin-bottom: 20px;
            text-align: center;
        }

         .header-section_x h1 {
            font-size: 28px;
            color: #fff;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .header-section_x h2 {
            font-size: 20px;
            color: #eee;
            margin-bottom: 15px;
            font-weight: normal;
        }
        .header-section_x .description_x {
            font-size: 16px;
            color: #21130d;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .header-section_x p {
            margin-bottom: 20px;
        }

         .row_x {
            width: 100%;
            margin-bottom: 15px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .text-box_x {
            display: flex;
            width: 100%;
            min-height: 80px;
            padding: 15px;
            transition: background-color 0.3s ease;
        }

        .left-column_x {
            width: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-right: 15px;
        }

        .left-column_x img {
            width: 100%;
            max-width: 50px;
            height: auto;
        }

        .right-column_x {
            width: 80%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-text p {
            font-size: 1.5rem;
            color: #195f96;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        .hero-image {
            align-self: flex-end;
            display: flex;
            align-items: flex-end;
        }

        .doctors-image {
            width: 100%;
            
        }

        .doctors-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
}

        .doctor-placeholder {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        /* Features Section */
        .features {
            padding: 60px 0 20px; /* Reduced bottom padding from 100px to 20px */
            background: #0e2d84;
            position: relative;
        }

        .parallax-element {
            position: absolute;
            opacity: 0.1;
            will-change: transform;
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.5rem;
            color: #195f96;
            margin-bottom: 10px;
            line-height: 1.6;
            text-align: left;
        }

       .section-title h4 {
            color: #414141;
            text-align: left;
        }

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

        .feature-card {
            background: white;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* About Section with Parallax */
        .about {
            padding: 100px 0;
            background-color: #f4faff;
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: black;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #414141;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .about-image {
            position: relative;
        }

        .about-img-placeholder {
            width: 100%;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .about-img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: #fff;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-form {
            background: white;
            padding: 40px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }

        /* Footer */
        .footer {
            background-color: #09167c;
            color: white;
            padding: 0;
        }

        .footer-top {
            background-color: #09167c;
            padding: 40px 0;
            backdrop-filter: blur(10px);
        }
         .footer-top-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .footer-subscription {
            text-align: center;
        }

         .subscription-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

         .subscription-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
        }

        .footer-copyright-top {
            text-align: right;
        }

        .footer-copyright-top p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        .footer-main {
            padding: 50px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .footer-logos {
            display: flex;
            justify-content: center;
        }
         .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .footer-logo .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .logo-text-footer {
            display: flex;
            flex-direction: column;
        }
                .footer-nav {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .footer-nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            text-align: center;
            padding: 20px 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .subscription-form {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .subscription-form input {
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            min-width: 150px;
            background: white;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 2.8rem;
            }
            
            .hero-text p {
                font-size: 1.3rem;
            }
        }

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

            .cta-button {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 80px 0 40px;
                min-height: auto;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
                
            }

            .hero-text h1 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }

            .hero-text p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .hero-text h4 {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .hero-buttons {
                justify-content: center;
                margin-top: 20px;
            }

            .btn-primary {
                padding: 12px 24px;
                font-size: 16px;
            }

            .doctors-image {
                height: 450px;
                margin-top: 20px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-top-content {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .footer-copyright-top {
                text-align: center;
            }

            .footer-nav-links {
                gap: 20px;
                flex-direction: column;
                text-align: center;
            }

            .subscription-form {
                flex-direction: column;
                gap: 10px;
            }

            .subscription-form input {
                min-width: 250px;
            }

            .container_x {
                margin: 0 15px;
                max-width: calc(100% - 30px);
            }

            .left-column_x {
                width: 25%;
                padding-right: 10px;
            }

            .right-column_x {
                width: 75%;
            }

            .text-box_x {
                padding: 12px;
                min-height: 70px;
            }

            .left-column_x img {
                max-width: 40px;
            }

            .line2_x {
                font-size: 14px;
                line-height: 1.4;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 70px 0 30px;
            }

            .hero-content {
                padding: 0 10px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }

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

            .hero-text h4 {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .btn-primary {
                padding: 12px 20px;
                font-size: 14px;
            }

            .doctors-image {
                height: 250px;
            }

            .header-section_x h1 {
                font-size: 24px;
            }

            .header-section_x h2 {
                font-size: 18px;
            }

            .text-box_x {
                min-height: 60px;
                padding: 10px;
            }

            .left-column_x {
                width: 30%;
            }

            .right-column_x {
                width: 70%;
            }

            .left-column_x img {
                max-width: 35px;
            }

            .line2_x {
                font-size: 13px;
            }

            .logo img {
                height: 35px;
            }

            .nav-container {
                padding: 0 15px;
            }

            .features {
                padding: 40px 0 15px; /* Further reduced for mobile */
            }
        }

        @media (max-width: 360px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }
            
            .hero-text p {
                font-size: 0.95rem;
            }
            
            .doctors-image {
                height: 220px;
            }
            
            .container_x {
                margin: 0 10px;
                max-width: calc(100% - 20px);
            }

            .features {
                padding: 30px 0 10px; /* Minimal padding for very small screens */
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        .parallax-bg {
            will-change: transform;
            transform: translateZ(0);
        }
