/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: linear-gradient(135deg, #F5F9FC 0%, #FFFFFF 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E0EBF5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

/* Creative Eye Logo */
.eye-logo {
    position: relative;
    width: 24px;
    height: 24px;
}

.eye-outline {
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    animation: blink 4s infinite;
}

.pupil {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: look 6s infinite;
}

.eyebrow {
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
    border-radius: 1px;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    animation: eyebrow 4s infinite;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes look {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-30%, -50%); }
    50% { transform: translate(-50%, -30%); }
    75% { transform: translate(-70%, -50%); }
}

@keyframes eyebrow {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #5D6D7E;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2C3E50;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4A90E2;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5D6D7E;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F9FC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2, #2C5F9B);
    margin-top: 15px;
    border-radius: 2px;
    animation: expandLine 1s ease 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 80px; }
}

.hero-description {
    font-size: 18px;
    color: #5D6D7E;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid #4A90E2;
    border-radius: 8px;
    color: #4A90E2;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oval-shape {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #E0EBF5 0%, #B8D4E3 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(176, 212, 227, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.main-icon {
    width: 80px;
    height: 80px;
    background: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(44, 95, 155, 0.3);
    z-index: 2;
    position: relative;
}

/* Creative Eye */
.creative-eye {
    position: relative;
    width: 50px;
    height: 50px;
}

.eye-circle {
    width: 100%;
    height: 100%;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    animation: eyeBlink 4s infinite;
}

.iris {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #4A90E2, #2C5F9B);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: irisGlow 3s ease-in-out infinite;
}

.pupil-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2C3E50;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pupilLook 5s infinite;
}

.eyelashes {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.eyelashes span {
    width: 2px;
    height: 8px;
    background: white;
    border-radius: 1px;
    animation: eyelashWave 2s ease-in-out infinite;
}

.eyelashes span:nth-child(1) { animation-delay: 0s; }
.eyelashes span:nth-child(2) { animation-delay: 0.1s; }
.eyelashes span:nth-child(3) { animation-delay: 0.2s; }
.eyelashes span:nth-child(4) { animation-delay: 0.3s; }
.eyelashes span:nth-child(5) { animation-delay: 0.4s; }

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes irisGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(74, 144, 226, 0.5); }
    50% { box-shadow: 0 0 20px rgba(74, 144, 226, 0.8); }
}

@keyframes pupilLook {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-30%, -50%); }
    50% { transform: translate(-50%, -30%); }
    75% { transform: translate(-70%, -50%); }
}

@keyframes eyelashWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star-icon,
.check-icon,
.heart-icon,
.shield-icon {
    position: absolute;
    color: #4A90E2;
    font-size: 20px;
    opacity: 0.8;
    animation: floatElement 4s ease-in-out infinite;
}

.star-icon {
    top: 20px;
    right: 40px;
    animation-delay: 0s;
}

.check-icon {
    bottom: 20px;
    left: 40px;
    animation-delay: 1s;
}

.heart-icon {
    top: 40px;
    left: 20px;
    animation-delay: 2s;
}

.shield-icon {
    bottom: 40px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Radial Lines */
.radial-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(74, 144, 226, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform-origin: center;
    animation: rotateLine 8s linear infinite;
}

.line-1 { transform: translate(-50%, -50%) rotate(0deg); }
.line-2 { transform: translate(-50%, -50%) rotate(60deg); }
.line-3 { transform: translate(-50%, -50%) rotate(120deg); }
.line-4 { transform: translate(-50%, -50%) rotate(180deg); }
.line-5 { transform: translate(-50%, -50%) rotate(240deg); }
.line-6 { transform: translate(-50%, -50%) rotate(300deg); }

@keyframes rotateLine {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}



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

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #5D6D7E;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #2C5F9B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-category {
    display: inline-block;
    background: #2C5F9B;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: #5D6D7E;
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #E0EBF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2C3E50;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #4A90E2;
    color: white;
    transform: scale(1.1);
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.contact-text {
    color: #5D6D7E;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #E0EBF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2C3E50;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #4A90E2;
    color: white;
    transform: rotate(360deg);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
}

.feature-text {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
}

.documents-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid #2C3E50;
    border-radius: 8px;
    color: #2C3E50;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

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

.documents-button:hover {
    background: #2C3E50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 155, 0.3);
}

/* Legal Page Styles */
.legal-content {
    padding: 60px 0;
    background: #F8FAFC;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.page-subtitle {
    font-size: 18px;
    color: #5D6D7E;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.card-header {
    background: #F8FAFC;
    padding: 20px 30px;
    border-bottom: 1px solid #E0EBF5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    color: #4A90E2;
    font-size: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.card-content {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item {
    margin-bottom: 25px;
}

.info-label {
    display: block;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-value {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.5;
}

/* Doctor Information */
.doctor-info {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.doctor-photo {
    text-align: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: #E0EBF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #5D6D7E;
    font-size: 48px;
}

.doctor-name {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.doctor-title {
    font-size: 18px;
    color: #5D6D7E;
    margin-bottom: 25px;
    font-weight: 500;
}

.doctor-section {
    margin-bottom: 20px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.section-heading i {
    color: #4A90E2;
    font-size: 14px;
}

.section-text {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 24px;
}

/* Tax Deduction */
.deduction-text {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.requirements-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.requirements-list {
    list-style: none;
    margin-bottom: 30px;
}

.requirements-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.6;
}

.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #4A90E2;
    border-radius: 50%;
}

.download-section {
    text-align: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: #2C5F9B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* Contact Section */
.text-center {
    text-align: center;
}

.contact-question {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.contact-text {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-phone {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
}

/* Personnel Page Styles */
.personnel-content {
    padding: 60px 0;
    background: #F8FAFC;
    min-height: calc(100vh - 200px);
}

.team-stats {
    margin-bottom: 80px;
}

.team-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-stats .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #E0EBF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2C3E50;
    font-size: 24px;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-photo {
    text-align: center;
    margin-bottom: 20px;
}

.member-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2C5F9B;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.member-section {
    margin-bottom: 20px;
}

.member-section .section-heading {
    font-size: 14px;
    margin-bottom: 8px;
}

.member-section .section-text {
    font-size: 13px;
    margin-left: 24px;
}

/* Quality Standards */
.quality-section {
    margin-bottom: 80px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quality-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: #E0EBF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2C3E50;
    font-size: 24px;
}

.quality-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.quality-text {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Specialists */
.contact-specialists {
    margin-bottom: 60px;
}

.contact-card {
    background: #EBF5F8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-description {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2C3E50;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #34495E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 155, 0.3);
}

/* Documents Page Styles */
.documents-content {
    padding: 60px 0;
    background: #F8FAFC;
    min-height: calc(100vh - 200px);
}

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

/* New Modern Document Cards */
.document-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0EBF5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
    border-color: #4A90E2;
}

.document-card.featured {
    background: linear-gradient(135deg, #F8FBFF 0%, #E3F2FD 100%);
    border: 2px solid #4A90E2;
    transform: scale(1.02);
}

.document-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.document-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.document-badge {
    background: #E8F4FD;
    color: #2C5F9B;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-content {
    margin-bottom: 25px;
}

.document-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.document-subtitle {
    color: #4A90E2;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5D6D7E;
    font-size: 14px;
}

.detail-item i {
    color: #4A90E2;
    width: 16px;
    font-size: 14px;
}

.document-actions {
    display: flex;
    gap: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #F8FAFC;
    color: #2C3E50;
    border: 2px solid #E0EBF5;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    justify-content: center;
}

.download-btn:hover {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.download-btn.primary {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
}

.download-btn.primary:hover {
    background: #2C5F9B;
    border-color: #2C5F9B;
}

/* Updated Info Section */
.info-section {
    margin: 60px 0;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E0EBF5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-header i {
    color: #4A90E2;
    font-size: 24px;
}

.info-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.info-content p {
    color: #5D6D7E;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Updated Contact Section */
.contact-section {
    margin: 60px 0;
}

.contact-card {
    background: linear-gradient(135deg, #F8FBFF 0%, #E3F2FD 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E0EBF5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-description {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2C3E50;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #34495E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 155, 0.3);
}



/* Additional Information */
.additional-info {
    margin-top: 60px;
}

.info-text {
    color: #5D6D7E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.additional-info .contact-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #E0EBF5;
    margin-top: 30px;
}

.additional-info .contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
}

.additional-info .contact-text {
    color: #5D6D7E;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.additional-info .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.additional-info .contact-button:hover {
    background: #2C5F9B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #E0EBF5;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.footer-text {
    color: #5D6D7E;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E0EBF5;
}

.copyright {
    color: #5D6D7E;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    

    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .oval-shape {
        width: 250px;
        height: 150px;
    }
    
    .main-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .creative-eye {
        width: 40px;
        height: 40px;
    }
    
    .iris {
        width: 24px;
        height: 24px;
    }
    
    .pupil-center {
        width: 10px;
        height: 10px;
    }
    
    /* Documents Page Styles */
.documents-content {
    padding: 60px 0;
}



.info-section {
    margin: 60px 0;
}

.info-card {
    background: linear-gradient(135deg, #F8FBFF, #E3F2FD);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E0EBF5;
}

.info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-title::before {
    content: "ℹ";
    font-size: 24px;
    color: #4A90E2;
}

.info-content p {
    color: #5D6D7E;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Legal page additional styles */
.doctor-qualifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5D6D7E;
    font-size: 14px;
}

.qualification-item i {
    color: #4A90E2;
    width: 16px;
}

.licenses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F8FBFF;
    border-radius: 12px;
    border: 1px solid #E0EBF5;
}

.license-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.license-info {
    flex: 1;
}

.license-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.license-number {
    color: #4A90E2;
    font-weight: 500;
    margin-bottom: 5px;
}

.license-validity {
    color: #95A5A6;
    font-size: 12px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hours-section {
    background: #F8FBFF;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E0EBF5;
}

.hours-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #E0EBF5;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #2C3E50;
}

.time {
    color: #4A90E2;
    font-weight: 600;
}

/* Legal page responsive */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doctor-info {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    /* Personnel page responsive */
    .team-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Legal page responsive additions */
    .license-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .doctor-qualifications {
        text-align: center;
    }
    
         /* Documents page responsive */
     .documents-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .document-card {
         padding: 20px;
     }
     
     .document-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .document-actions {
         flex-direction: column;
     }
     
     .download-btn {
         width: 100%;
         justify-content: center;
         padding: 12px 20px;
     }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .oval-shape {
        width: 200px;
        height: 120px;
    }
    
    .main-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .creative-eye {
        width: 30px;
        height: 30px;
    }
    
    .iris {
        width: 18px;
        height: 18px;
    }
    
    .pupil-center {
        width: 8px;
        height: 8px;
    }
    
    .floating-elements {
        display: none;
    }
} 