/* Optimized CSS with reduced redundancy */
*{margin:0;padding:0;box-sizing:border-box}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    padding: 0 32px;
    display: flex;
    align-items: center;
    min-height: 80px;
    width: 100%;
    margin-top: -10px;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: -30px;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    position: static;
}

.logo-icon svg {
    width: 80px;
    height: 80px;
    display: block;
    overflow: visible;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.logo-main {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1E3A8A;
    letter-spacing: -0.3px;
    white-space: nowrap;
    padding-top: 15px;
}

.logo-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: #008B8B;
    letter-spacing: 1px;
    margin-top: -2px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    font-size: 1.05rem;
    margin-left: auto; /* Force menu to far right */
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    padding: 0.4rem 0.7rem; /* Reduced padding */
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: #3498db;
    background: none;
}

.nav-menu a i {
    font-size: 1.1em;
    margin-right: 0.4em;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.nav-menu a {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('PHOTOS/51uAEUBdUVL.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    scroll-margin-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Button base style */
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    height: 54px; /* Fixed height for consistency */
    line-height: 1.2;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-video iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
}

/* Quantum Process Section */
.quantum-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    scroll-margin-top: 100px;
}

.quantum-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008B8B, #1E3A8A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008B8B, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 139, 139, 0.3);
}

.process-icon i {
    font-size: 1.8rem;
    color: white;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
    line-height: 1.3;
}

.process-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive grid layout */
@media (max-width: 1199px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctor Section */
.doctor-section {
    padding: 80px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
}

.doctor-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.doctor-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.doctor-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.doctor-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 450px;
    position: sticky;
    top: 120px;
}

.doctor-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Health Parameters Section */
.health-parameters {
    padding: 80px 0;
    background: white;
}

.health-parameters h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.parameter-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.parameter-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.parameter-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.parameter-category h3 i {
    color: #3498db;
    font-size: 1.5rem;
}

.parameter-category ul {
    list-style: none;
    padding: 0;
}

.parameter-category ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.parameter-category ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.parameter-category ul li:last-child {
    border-bottom: none;
}

/* Technical Specifications */
.specifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.specifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.spec-icon i {
    font-size: 2rem;
    color: white;
}

.spec-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.spec-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.about-text h3 {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential i {
    color: #3498db;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 700px;
    height: 450px;
    object-fit: contain;
    border-radius: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #2c3e50;
}

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

/* Testimonials Section */
.testimonials {
    padding-top: 0;
    margin-top: 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
    color: #2c3e50;
}

.testimonials-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 120s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    min-width: 350px;
    margin-right: 2rem;
    flex-shrink: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    min-height: 600px; /* Adjust as needed for your content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: transform 0.3s ease, border 0.3s;
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
    pointer-events: none;
}

.pricing-header {
    margin-top: 2.5rem;
}

.pricing-card .btn {
    margin-top: auto;
    margin-bottom: 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #27ae60;
}

/* Pricing Card Button Styles */
.pricing-card .btn {
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    margin-top: 1rem;
    height: 54px; /* Match the base button height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info, .contact-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-item i {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    vertical-align: top;
}
.contact-item > div {
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    text-align: left;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    background: white;
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-top: 3.5rem;
}

.contact-form h2, .contact-form h3 {
    margin-bottom: 2.2rem !important;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1E3A8A;
    text-align: center;
}

.form-group {
    margin-bottom: 2.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1.08rem;
    transition: border-color 0.3s ease;
    margin-bottom: 0.2rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    min-height: 140px;
}

.contact-form button[type="submit"], .contact-form .btn-primary {
    margin-top: 1.7rem;
    margin-bottom: 0.7rem;
    padding: 18px 0;
    font-size: 1.15rem;
    border-radius: 30px;
    width: 100%;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#form-success, #form-error {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    text-align: center;
}

.contact-map {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(52, 152, 219, 0.10);
    max-width: 100%;
}

.contact-map iframe {
    width: 100%;
    min-height: 280px;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-section {
    padding: 0 1rem;
    margin-bottom: 0;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: none;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Date input wrapper and placeholder styling */
.date-input-wrapper {
    position: relative !important;
    width: 100% !important;
}

.date-placeholder {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    transform: translateY(-50%) !important;
    color: #999 !important;
    font-size: 16px !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
    z-index: 1 !important;
    font-style: italic !important;
}

.date-input:focus + .date-placeholder,
.date-input:not([value=""]) + .date-placeholder {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Date input styling for better mobile appearance */
input[type="date"], .date-input {
    background: white !important;
    color: #333 !important;
    border: 2px solid #e1e8ed !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    position: relative !important;
}

/* Placeholder styling for date input */
input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.date-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0 !important;
}

input[type="date"]::-webkit-datetime-edit-text,
.date-input::-webkit-datetime-edit-text {
    color: #999 !important;
    padding: 0 2px !important;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field,
.date-input::-webkit-datetime-edit-month-field,
.date-input::-webkit-datetime-edit-day-field,
.date-input::-webkit-datetime-edit-year-field {
    color: #333 !important;
    padding: 0 2px !important;
}

/* Show placeholder when no date is selected */
input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit,
.date-input:not([value]):not(:focus)::-webkit-datetime-edit {
    color: #999 !important;
}

input[type="date"]:focus, .date-input:focus {
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1) !important;
    outline: none !important;
}

input[type="date"]::-webkit-calendar-picker-indicator, .date-input::-webkit-calendar-picker-indicator {
    background: transparent !important;
    color: #3498db !important;
    cursor: pointer !important;
    padding: 5px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
    width: 20px !important;
    height: 20px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover, .date-input::-webkit-calendar-picker-indicator:hover {
    background: rgba(52, 152, 219, 0.1) !important;
}

/* Additional mobile-specific date input styling */
@media (max-width: 768px) {
    input[type="date"], .date-input {
        font-size: 18px !important; /* Larger font for mobile */
        padding: 16px 20px !important; /* More padding for touch */
        min-height: 50px !important; /* Minimum height for touch targets */
    }
    
    .date-placeholder {
        font-size: 18px !important; /* Larger placeholder text on mobile */
        left: 20px !important; /* Adjust position for larger padding */
    }
    
    /* Better placeholder visibility on mobile */
    input[type="date"]:not([value]):not(:focus)::-webkit-datetime-edit,
    .date-input:not([value]):not(:focus)::-webkit-datetime-edit {
        color: #999 !important;
        font-style: italic !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        padding: 0.5rem 2rem;
    }

    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        display: block;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .logo-content {
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .credentials {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .doctor-video {
        height: 300px;
        position: static;
    }

    .doctor-video iframe {
        height: 100%;
    }

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

    .process-card {
        padding: 1.5rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    .quantum-process h2 {
        font-size: 2rem;
    }
}

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .pricing-card.featured {
        transform: none;
    }
} 

/* Product Gallery Section */
.product-gallery {
    padding: 80px 0;
    background: white;
}

.product-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
}

.gallery-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.gallery-caption p {
    color: #666;
    line-height: 1.6;
} 

/* Section Headings Consistency */
.booking h2,
.pricing h2,
.contact-info h2,
.features h2,
.product-gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
} 

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info, .contact-form {
        max-width: 100%;
    }
} 

.contact-content > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 520px;
}
.contact-content > div:last-child .contact-details,
.contact-content > div:last-child .contact-map {
    text-align: left;
} 

.center-heading {
    text-align: center;
    width: 100%;
    display: block;
} 

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-section {
        padding: 0;
    }
} 

#package.highlight-package {
    background: #fff8c6 !important;
    border-color: #e1b800 !important;
    transition: background 0.5s, border-color 0.5s;
} 

/* Admin Login Page Styles */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.admin-login-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-form-wrapper .nav-logo {
    margin-bottom: 2rem;
    justify-content: center;
}

.admin-login-form-wrapper h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

#admin-login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
}

#admin-login-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

#admin-login-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

#admin-login-form button {
    width: 100%;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

#admin-login-form button:hover {
    background: #2980b9;
}

#admin-login-error {
    color: #e74c3c;
    background: #fdf2f2;
    padding: 12px;
    border-radius: 6px;
    margin-top: 1rem;
    display: none;
}

.back-home-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.back-home-btn:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

/* Admin Dashboard Page Styles */
.admin-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e1e8ed;
}

.admin-dashboard-actions {
    display: flex;
    gap: 12px;
}

.logout-btn {
    background: #d32f2f !important;
}

.logout-btn:hover {
    background: #b71c1c !important;
}

.admin-dashboard-container {
    min-height: calc(100vh - 80px);
    background: #f8f9fa;
    padding: 2rem;
}

.admin-dashboard-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

#admin-dashboard-loading {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

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

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1F3A8A;
}

.nav-logo .logo-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6B6B6B;
}

@media (max-width: 600px) {
    .admin-dashboard-container {
        padding: 1rem;
    }
    .admin-dashboard-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    .admin-dashboard-actions {
        width: 100%;
        justify-content: center;
    }
    .nav-logo .logo-main {
        font-size: 1.5rem;
    }
    .nav-logo .logo-sub {
        font-size: 0.8rem;
    }
    .admin-login-form-wrapper {
        padding: 2rem;
        margin: 1rem;
    }
}

#admin-dashboard-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#admin-dashboard-table th, #admin-dashboard-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

#admin-dashboard-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.admin-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.message-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.message-container .toggle-msg-btn {
    margin-top: 4px;
    align-self: flex-start;
}

.toggle-msg-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.toggle-msg-btn:hover, .toggle-msg-btn:focus {
    background: #2980b9;
}

#admin-dashboard-table .msg-short, #admin-dashboard-table .msg-full {
    max-width: 200px;
    word-wrap: break-word;
}

@media (max-width: 900px) {
    .admin-dashboard-container {
        padding: 1rem;
    }
    #admin-dashboard-table th, #admin-dashboard-table td {
        padding: 8px 12px;
        font-size: 14px;
    }
}

#admin-dashboard-table table {
    font-size: 14px;
}

#admin-dashboard-table td, #admin-dashboard-table th {
    padding: 10px 12px;
    vertical-align: top;
}

#admin-dashboard-table td:last-child, #admin-dashboard-table th:last-child {
    text-align: center;
}

.dashboard-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin: 10px 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.dashboard-btn:hover, .dashboard-btn:focus {
    background: #2980b9;
    text-decoration: none;
    color: white;
}

@media (max-width: 600px) {
    .dashboard-btn {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
} 