/* Custom CSS for Dr. Aditya Pawaskar Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

/* Custom gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
}

.section-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ accordion styles */
.faq-button {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    outline: none !important;
    box-shadow: none !important;
}

.faq-button:hover {
    background-color: #f8fafc;
}

.faq-button:focus {
    outline: none !important;
    box-shadow: none !important;
    ring: none !important;
}

.faq-content {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-content.active {
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(45deg);
}

/* Reference website specific styles */
.hero-gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.procedure-step {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.doctor-profile {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
}

/* Top contact bar styles */
.top-contact-bar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    font-size: 0.875rem;
}

/* Navigation styles */
.nav-brand {
    color: #f97316;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Enhanced Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar-logo {
    transition: all 0.3s ease;
}

.navbar-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-link:hover::after {
    width: 80%;
}

.navbar-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.navbar-button:hover::before {
    left: 100%;
}

/* Mobile menu enhancements */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-link {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-menu-link:hover {
    background-color: #fff7ed;
    transform: translateX(4px);
}

/* Responsive navbar adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: 2.5rem;
    }
    
    .mobile-menu-button {
        padding: 0.5rem;
        border-radius: 6px;
    }
    
    .mobile-menu-button:hover {
        background-color: #fff7ed;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        height: 5rem;
    }
    
    .navbar-logo {
        height: 3.5rem;
    }
}

@media (min-width: 1025px) {
    .navbar {
        height: 6rem;
    }
    
    .navbar-logo {
        height: 4rem;
    }
}

/* Navbar scroll effect */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo animation */
.logo-x {
    transition: all 0.3s ease;
}

.logo-x:hover {
    transform: scale(1.05);
}

/* Mobile menu animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active .mobile-menu-link {
    animation: slideDown 0.3s ease forwards;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu.active .mobile-menu-link:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu.active .mobile-menu-link:nth-child(7) { animation-delay: 0.7s; }

/* Hero section styles */
.hero-title {
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    color: #fed7aa;
    font-size: 1.25rem;
}

/* Orange gradient variations */
.hero-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.hero-gradient-orange-alt {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.hero-gradient-orange-dark {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Section dividers */
.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
    margin: 0 auto;
}

/* Card hover effects */
.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-primary-large {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Orange button styles */
.btn-orange-large {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange-large:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-orange-outline {
    border: 2px solid #f97316;
    color: #f97316;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-orange-outline:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-secondary-large {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Icon styles */
.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle-blue {
    background: #dbeafe;
    color: #2563eb;
}

/* Text styles */
.text-gradient-blue {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Loading animation for images */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom section dividers */
.section-divider {
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

/* Testimonial card styles */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Stats counter animation */
.stat-number {
    font-weight: 700;
    color: #2563eb;
    font-size: 2.5rem;
}
img.logo-x{
   
  width: 100%;
    object-fit: contain;
}
/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-gray-600 {
        color: #000000 !important;
    }
    
    .bg-gray-50 {
        background-color: #ffffff !important;
    }
    
    .border-gray-300 {
        border-color: #000000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */


/* Animation delay utility */
.delay-1000 {
    animation-delay: 1s;
}

/* Background patterns */
.pattern-dots {
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.1"><path d="M20 20c0-11.046-8.954-20-20-20v20h20z"/></g></svg>');
}

/* Mobile dropdown styles */
.mobile-dropdown button {
    transition: all 0.3s ease;
}

.mobile-dropdown button i {
    transition: transform 0.3s ease;
}

.mobile-dropdown button.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
}

.mobile-dropdown-content.active {
    max-height: 500px;
    display: block;
}

/* Sports Speciality specific styling for better scrolling */
.mobile-dropdown-content.max-h-96 {
    max-height: 24rem; /* 384px */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f97316 #f3f4f6;
}

.mobile-dropdown-content.max-h-96::-webkit-scrollbar {
    width: 6px;
}

.mobile-dropdown-content.max-h-96::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.mobile-dropdown-content.max-h-96::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 3px;
}

.mobile-dropdown-content.max-h-96::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Mobile submenu styles */
.mobile-submenu {
    margin-bottom: 0.5rem;
}

.mobile-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
}

.mobile-submenu-content.active {
    max-height: 300px;
    display: block;
}

.mobile-submenu button.active .submenu-icon {
    transform: rotate(180deg);
}

/* Custom utility classes */
.text-gradient {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #2563eb, #3b82f6) 1;
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

/* Interactive elements */
.interactive-element {
    cursor: pointer;
    transition: all 0.2s ease;
}

.interactive-element:hover {
    transform: scale(1.02);
}

.interactive-element:active {
    transform: scale(0.98);
}

/* Custom form styles */
.form-input {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 16px;
}

.form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Custom badge styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

/* Custom alert styles */
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-info {
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    color: #1e40af;
}

.alert-success {
    background-color: #dcfce7;
    border-left: 4px solid #16a34a;
    color: #166534;
}

/* Custom progress bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

/* Custom tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.875rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Custom modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Custom notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Custom breadcrumb styles */
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #d1d5db;
}

/* Custom pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px 0;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination button:hover {
    background: #f3f4f6;
    border-color: #2563eb;
}

.pagination button.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.banner-content h1
{
color:#ea580c;

}
.banner-content p
{
color:#383838;
font-family: "Poppins", sans-serif;

}
.bg-set
{
    
    padding: 20px;
    border-radius: 20px;
}
.footer-bg 
{
    background: #f9c3a6;
}
.injuri-set p
{
    color:#000000
}
.banner-content h1
{
line-height: 55px !important;
}
.bg-color
{
    background: #f3f3f3;
}
.indication-set h4
{
    font-family: "Poppins", sans-serif;
    font-size:22px;
    font-weight: 600;
    color:#4b5563;
}
.why-set h2
{
    line-height: 55px;
}
.why-set_ h3
{
    line-height: 40px;
    font-size: 30px;
}
.footer-bg
{
    background: linear-gradient(194deg, rgba(237, 237, 237, 1) 0%, rgb(255 241 233) 50%);
}
.footer-bg p span
{
    color:#000000;
    font-family: "Poppins", sans-serif;
}
.footer-bg p i{
color:#fb923c;
}
.footer-bg p.address_text
{
    color: #1f2937;
    font-size: 17px;
    font-weight: 400;
}
.connect_
{
    color:#000000;
    font-size: 17px;
    font-weight: 400;
}
.connect_ i{
    color:#fb923c;
}
.social_media a i
{
    color:#fb923c;
}
.right_ p
{
    color: #262a36;
    font-size: 17px;
}
.right_ {
    background: #efeeed;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}
.link_
{
    color:#c2410c;
    text-decoration: none!important;
    font-family: 'Sen', sans-serif;
    font-size: 19px;

}

@media (max-width: 768px) {
    .why-set h2
    {
        font-family: "Poppins", sans-serif; 
        font-size:22px;
        line-height:35px;
    }
    .banner-content h1 {
    line-height: 45px !important;
    font-size: 35px;
}
.home_set
{
    background: #ec574a;
    
}
.indication-set h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
}
.image_hide
{
    display:none;
}
}