/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.bg-sky-400 { background-color: #38bdf8; }
.bg-sky-500 { background-color: #0ea5e9; }
.bg-sky-600 { background-color: #0284c7; }
.bg-sky-700 { background-color: #0369a1; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: #0ea5e9;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(0deg);
}

.heart-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    fill: none;
    stroke: currentColor;
}

.logo-pulse {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    background: #7dd3fc;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c4a6e;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: #0369a1;
    margin-top: -0.25rem;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    position: relative;
    padding: 0.75rem 1.5rem;
    color: #0c4a6e;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 9999px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(240, 249, 255, 0.8);
    color: #0369a1;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0ea5e9;
    opacity: 0.1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-contact {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 249, 255, 0.8);
    border-radius: 9999px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.phone-icon {
    width: 1rem;
    height: 1rem;
    color: #0369a1;
}

.contact-info span {
    font-size: 0.875rem;
    color: #0c4a6e;
    font-weight: 500;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(240, 249, 255, 0.8);
}

.menu-line {
    width: 1.5rem;
    height: 2px;
    background: #0c4a6e;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: #0c4a6e;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(240, 249, 255, 0.8);
    color: #0369a1;
}

.mobile-contact {
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
}

.mobile-contact span {
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(255, 255, 255, 1) 50%, rgba(219, 234, 254, 0.5) 100%);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 8rem;
    height: 8rem;
    background: rgba(186, 230, 253, 0.4);
    top: 5rem;
    left: 2.5rem;
    animation-delay: 0s;
}

.circle-2 {
    width: 6rem;
    height: 6rem;
    background: rgba(56, 189, 248, 0.3);
    top: 10rem;
    right: 5rem;
    animation-delay: 2s;
}

.circle-3 {
    width: 5rem;
    height: 5rem;
    background: rgba(125, 211, 252, 0.2);
    bottom: 8rem;
    left: 25%;
    animation-delay: 1s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(186, 230, 253, 0.8);
    color: #0c4a6e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    border: 1px solid rgba(125, 211, 252, 0.5);
}

.sparkles-icon {
    width: 1rem;
    height: 1rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0c4a6e;
    line-height: 1.1;
}

.title-highlight-1 {
    display: block;
    color: #0369a1;
}

.title-highlight-2 {
    display: block;
    color: #0ea5e9;
}

.hero-description {
    font-size: 1.25rem;
    color: #0369a1;
    line-height: 1.6;
    max-width: 36rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: #0ea5e9;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #0369a1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    background: #0284c7;
    transform: scale(1.05);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    border: 2px solid #7dd3fc;
    color: #0369a1;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(240, 249, 255, 0.8);
    border-color: #0ea5e9;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    background: white;
    padding: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-card:hover {
    transform: rotate(0deg);
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-image-overlay {
    position: absolute;
    inset: 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1rem;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    animation: float 3s ease-in-out infinite;
}

.success-card {
    bottom: -2rem;
    left: -2rem;
    padding: 1.5rem;
    max-width: 18rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-card .card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(186, 230, 253, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card .card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #0369a1;
}

.card-title {
    font-weight: 800;
    color: #0c4a6e;
    font-size: 0.875rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: #0369a1;
}

.care-card {
    top: -1.5rem;
    right: -1.5rem;
    background: #0ea5e9;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation-delay: 1s;
}

.care-card .card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.care-card span {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Section Styles */
.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.3) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(186, 230, 253, 0.8);
    color: #0c4a6e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(125, 211, 252, 0.5);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    color: #0369a1;
}

.section-description {
    font-size: 1.25rem;
    color: #0369a1;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
    background: white;
}

.about-circle {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(186, 230, 253, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-line {
    width: 2rem;
    height: 0.25rem;
    background: #0ea5e9;
    border-radius: 0.125rem;
}

.mission-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0c4a6e;
}

.mission-text {
    font-size: 1.125rem;
    color: #0369a1;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(240, 249, 255, 0.3);
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(240, 249, 255, 0.5);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.feature-item span {
    color: #0c4a6e;
    font-weight: 500;
    font-size: 0.875rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0c4a6e;
    margin-bottom: 0.25rem;
}

.about-stat .stat-label {
    font-size: 0.875rem;
    color: #0369a1;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(186, 230, 253, 0.8);
}

.about-image-container {
    position: relative;
}

.about-image-card {
    position: relative;
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
}

.about-image-overlay {
    position: absolute;
    inset: 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1rem;
    pointer-events: none;
}

.excellence-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: #0ea5e9;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.excellence-badge span {
    font-weight: 800;
    font-size: 0.875rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.5s ease;
}

.value-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #0369a1;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(219, 234, 254, 0.5) 100%);
}

.services-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(125, 211, 252, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
}

.services-circle-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(186, 230, 253, 0.2);
    border-radius: 50%;
    filter: blur(40px);
}

.services-circle-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.5s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: #0ea5e9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: #0284c7;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #0369a1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #0ea5e9;
    border-radius: 50%;
}

.feature span {
    font-size: 0.875rem;
    color: #0369a1;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0369a1;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-btn:hover {
    color: #0284c7;
}

.service-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.process-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.process-header p {
    color: #0369a1;
    max-width: 32rem;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: #0ea5e9;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #0369a1;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    position: relative;
    background: white;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.3) 0%, transparent 100%);
}

.contact-circle {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(186, 230, 253, 0.3);
    border-radius: 50%;
    filter: blur(40px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(240, 249, 255, 0.3);
    border-radius: 1rem;
    transition: background 0.3s ease;
}

.contact-card:hover {
    background: rgba(240, 249, 255, 0.5);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.25rem;
}

.contact-primary {
    color: #0369a1;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-secondary {
    color: #0369a1;
    font-size: 0.875rem;
}

.emergency-card {
    background: linear-gradient(135deg, rgba(254, 242, 242, 1) 0%, rgba(254, 226, 226, 1) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.emergency-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.emergency-icon {
    width: 3rem;
    height: 3rem;
    background: #ef4444;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.emergency-text h4 {
    font-weight: 800;
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: #b91c1c;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.emergency-btn svg {
    width: 1rem;
    height: 1rem;
}

.trust-badge {
    background: #0ea5e9;
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.trust-content svg {
    width: 1.5rem;
    height: 1.5rem;
}

.trust-content span {
    font-weight: 800;
}

.trust-badge p {
    color: rgba(186, 230, 253, 1);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: #0369a1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(14, 165, 233, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 5rem;
}

.form-submit-btn {
    width: 100%;
    background: #0ea5e9;
    color: white;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.form-submit-btn:hover {
    background: #0284c7;
    transform: scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.5);
}

.send-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-circle-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.footer-circle-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 4rem;
    height: 4rem;
    background: #0ea5e9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.footer-logo-text h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
}

.footer-logo-text p {
    color: rgba(186, 230, 253, 1);
}

.footer-description {
    color: rgba(186, 230, 253, 1);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 28rem;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(125, 211, 252, 1);
}

.footer-feature span {
    color: rgba(186, 230, 253, 1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(14, 165, 233, 0.5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.facebook:hover { background: #3b82f6; }
.social-link.twitter:hover { background: #38bdf8; }
.social-link.instagram:hover { background: #ec4899; }
.social-link.linkedin:hover { background: #1d4ed8; }

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(186, 230, 253, 1);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links a::before {
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background: #38bdf8;
    border-radius: 50%;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #0369a1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-item-content .contact-primary {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item-content .contact-secondary {
    color: rgba(186, 230, 253, 1);
    font-size: 0.875rem;
}

.footer-emergency {
    margin-top: 1.5rem;
}

.footer-emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-emergency-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.footer-emergency-btn svg {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(14, 165, 233, 0.3);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright .heart-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #f87171;
}

.footer-copyright span {
    color: rgba(186, 230, 253, 1);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(186, 230, 253, 1);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
    
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .nav-contact {
        display: flex;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
}


#callme {
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 99990;
}
#callme #callmeMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgb(207,8,8);
  width: 70px;
  height: 70px;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(https://res.cloudinary.com/dglv3fims/image/upload/v1668592876/cal_swjmmc.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
  0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
  50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
  100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
  0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
  10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
  100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}

#social_side_links {
  position: fixed;
bottom: 0px;
  left: -21px;
padding:0px;
list-style: none;
z-index: 99;
}

#social_side_links li a {display: block;}

#social_side_links li a img {
  display: block;
  max-width:100%;
padding:7px;
}