* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0d47a1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 2px solid rgba(13, 71, 161, 0.1);
}

.custom-logo {
    height: 90px; /* Adjust this value to make it smaller or larger */
    width: auto;
    margin-right: 1px;
    vertical-align: middle;
}


.sponsors-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.sponsors-section .section-title {
    margin-bottom: 2rem;
}

.sponsors-section .section-title h2 {
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sponsors-section .section-title p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 6000px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    transform: scale(1.05);
}

.and-more-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.and-more-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1565c0;
    font-family: 'Georgia', serif;
    text-align: center;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .sponsor-item {
        height: 80px;
        padding: 10px;
    }
    
    .sponsor-logo {
        max-height: 80px;
    }
    
    .and-more-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .sponsors-section {
        padding: 2rem 0;
    }
    
    .sponsors-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .and-more-text {
        font-size: 1rem;
    }
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1px;
}

.logo i {
    font-size: 2.2rem;
    color: #0d47a1;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-icon.loading {
    color: #1565c0;
    animation: spin 1s linear infinite;
}

.modal-icon.success {
    color: #4caf50;
}

.modal-icon.error {
    color: #f44336;
}

.modal h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-button {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}



.logo-text h1 {
    font-size: 1.6rem;
    margin-bottom: 3px;
    color: #0d47a1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.85rem;
    opacity: 0.85;
    color: #1565c0;
    font-weight: 500;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav a {
    color: #0d47a1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

nav a:hover {
    color: #0d47a1;
    transform: translateY(-2px);
}

/* CTA Button - Enhanced Design */
.cta-button {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.35);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.cta-button:hover::after {
    left: 120%;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #1565c0;
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

/* Mobile Menu Toggle - Enhanced Design */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.25);
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(21, 101, 192, 0.35);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* Mobile Menu Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section - Image First Design */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(21, 101, 192, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #1565c0;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(21, 101, 192, 0.2);
}

.image-badge i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.hero-text {
    z-index: 2;
}

.hero-tag {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #1565c0;
    font-size: 0.95rem;
}

.feature-item i {
    color: #4caf50;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #1565c0;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #0d47a1;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e3f2fd;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(21, 101, 192, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #1565c0;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d47a1;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #e3f2fd;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.about-card h3 {
    color: #0d47a1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.about-card h3 i {
    margin-right: 10px;
    color: #1565c0;
}

.about-card ul {
    list-style: none;
    margin: 1rem 0;
}

.about-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.about-card li i {
    color: #1565c0;
    margin-right: 10px;
    width: 20px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-card p {
    font-size: 1rem;
    font-weight: 400;
}

/* Care Section */
.care-section {
    padding: 4rem 0;
    background-color: white;
}

.care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.care-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.care-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.care-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 101, 192, 0.15);
}

.care-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.care-image-card:first-child {
    grid-row: 1 / 3;
}

.care-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.care-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    font-weight: 400;
}

.care-text .cta-button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Approach Section - Horizontal Scroll with Buttons */
.approach-section {
    padding: 4rem 0;
    background-color: white;
}

.approach-container {
    position: relative;
    padding: 0 60px;
}

.approach-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-button {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.nav-button:disabled {
    background: #bbdefb;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-button.prev-button {
    margin-left: 10px;
}

.nav-button.next-button {
    margin-right: 10px;
}

.approach-scroll-wrapper {
    overflow-x: hidden;
    padding: 20px 0;
    position: relative;
}

.approach-steps {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e3f2fd;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 101, 192, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #1565c0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-card h3 {
    color: #0d47a1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.scroll-indicator {
    text-align: center;
    margin-top: 15px;
    color: #1565c0;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Support Section */
.support-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #bbdefb 0%, #e3f2fd 100%);
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-content h2 {
    color: #0d47a1;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.support-content h2 i {
    margin-right: 15px;
}

.support-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

/* Facts Section */
.facts-section {
    padding: 4rem 0;
    background-color: white;
}

.facts-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e3f2fd;
}

.tab-button {
    flex: 1;
    padding: 1.2rem;
    background: #e3f2fd;
    border: none;
    color: #1565c0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-button:hover {
    background: #bbdefb;
}

.tab-button.active {
    background: white;
    color: #0d47a1;
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.fact-item {
    margin-bottom: 2rem;
}

.fact-item h4 {
    color: #0d47a1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.fact-item h4 i {
    margin-right: 10px;
}

.fact-item ul {
    list-style: none;
    padding-left: 2rem;
}

.fact-item li {
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 400;
}

.fact-item li:before {
    content: "•";
    color: #1565c0;
    position: absolute;
    left: -1rem;
}

.key-facts-list {
    list-style: none;
    padding: 0;
}

.key-facts-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    font-weight: 400;
}

.key-facts-list li:last-child {
    border-bottom: none;
}

.key-facts-list li i {
    color: #1565c0;
    margin-right: 10px;
    width: 20px;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e3f2fd;
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0d47a1;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bbdefb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1565c0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    color: #333;
    font-weight: 400;
    font-size: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #bbdefb;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 1rem;
    font-weight: 400;
}

.footer-section a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icons a:hover {
    background: #bbdefb;
    color: #0d47a1;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Mobile Menu Styles - Cleaner Design */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    list-style: none;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    color: #0d47a1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.2s;
}

.mobile-menu a:hover {
    background-color: #e3f2fd;
}

.mobile-menu .cta-button {
    margin: 15px 20px;
    display: block;
    text-align: center;
    width: calc(100% - 40px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .image-badge {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .step-card {
        min-width: 280px;
        max-width: 320px;
    }
    
    .approach-container {
        padding: 0 50px;
    }
    
    .nav-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .care-content {
        grid-template-columns: 1fr;
    }
    
    .care-images {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .care-image-card:first-child {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .cta-button.header-cta {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .services,
    .about-section,
    .care-section,
    .approach-section,
    .support-section,
    .facts-section,
    .form-section {
        padding: 3rem 0;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .facts-tabs {
        margin: 0 10px;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .image-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .image-badge i {
        font-size: 0.9rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
    }
    
    .step-card {
        min-width: 250px;
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .approach-container {
        padding: 0 40px;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
    }
    
    .care-images {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .services-grid,
    .about-content,
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-tag {
        margin-bottom: 0.8rem;
    }
    
    .image-container {
        transform: none;
    }
    
    .image-container:hover {
        transform: none;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .hero-buttons .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .step-card {
        min-width: 230px;
        max-width: 250px;
    }
    
    .approach-container {
        padding: 0 30px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .care-images {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Features */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0d47a1;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #1565c0;
    outline-offset: 2px;
}

/* Smooth scroll animation */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}