/*
Theme Name: galaxi
Theme URI: https://galaxi.com/your-theme
Author: Navneet Kumar
Author URI: https://galaxi.com
Description: A custom WordPress theme for galaxi
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: galaxi
*/


        body {
            box-sizing: border-box;
        }
        
        .header-bg {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .hero-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .floating-card {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .service-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            border-color: #3b82f6;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card {
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.02);
        }
        
        .cta-button {
            background: linear-gradient(45deg, #3b82f6, #1d4ed8);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: linear-gradient(45deg, #1d4ed8, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        
        .section-padding {
            padding: 4rem 1rem;
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 1rem;
            }
        }
        
        .medical-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
        }
        
        @media (max-width: 640px) {
            .medical-icon {
                width: 50px;
                height: 50px;
            }
        }
        
        .carousel-container {
            overflow: hidden;
            position: relative;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            flex-shrink: 0;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

.space-y-4 > * + * {
  margin-top: 1rem;
}
.cta-button {
  background-color: #2563eb; /* Blue 600 */
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #1e40af; /* Blue 800 */
}
  
.shadow-label{
	box-shadow: 1px 1px 3px 3px #f1f1f1 !important;
}
.shadow-label:focus{
	border:transparent !important;
}
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .carousel-dot.active {
            background: #3b82f6;
        }
        
        @media (min-width: 768px) {
            .carousel-track {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
                transform: none !important;
            }
            
            .carousel-slide {
                min-width: auto;
            }
            
            .carousel-dots {
                display: none;
            }
        }
  @view-transition { navigation: auto; }