:root {
    --mint-color: #a8e6cf;
    --mint-light: #7fdaa4;
    --purple-custom: #e8d5ff;
    --purple-light: #d8b4fe;
    --navy: #3e4a6b;
    --virus-green: #4ade80;
    --virus-pink: #f472b6;
}

body {
    background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 50%, #f0fdf4 100%);
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Background Blobs */
.blob-mint {
    background: linear-gradient(
        135deg,
        var(--mint-color) 0%,
        var(--mint-light) 100%
    );
    border-radius: 50% 40% 60% 30%;
    position: fixed;
    opacity: 0.4;
    z-index: -1;
}

.blob-purple {
    background: linear-gradient(
        135deg,
        var(--purple-custom) 0%,
        var(--purple-light) 100%
    );
    border-radius: 40% 60% 30% 50%;
    position: fixed;
    opacity: 0.6;
    z-index: -1;
}

.blob-mint-1 {
    width: 24rem;
    height: 24rem;
    top: 0;
    left: 0;
    transform: translate(-8rem, -8rem);
}

.blob-purple-1 {
    width: 20rem;
    height: 20rem;
    top: 0;
    right: 0;
    transform: translate(5rem, -5rem);
}

.blob-mint-2 {
    width: 18rem;
    height: 18rem;
    bottom: 0;
    left: 0;
    transform: translate(-5rem, 5rem);
}

/* Design Tools Sidebar */
.design-tools {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-icon:hover {
    transform: translateY(-2px);
    color: white;
}

.tool-xd {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-color: #f8bbd9;
}

.tool-ai {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-color: #ffcc80;
}

.tool-ps {
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    border-color: #81d4fa;
}

/* Main Card */
.main-card {
    background: white;
    border-radius: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.main-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

/* Typography */
.brand-text {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 30px;
}

.main-heading {
    color: var(--navy);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
}

.description-text {
    color: #6b7280;
    font-size: 1.25rem;
    line-height: 1.75;
}

.sub-description-text {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.75;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--navy);
    border-color: var(--navy);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #4c63d4;
    border-color: #4c63d4;
    color: white;
    transform: translateY(-1px);
}

.btn-outline-custom {
    border: 2px solid #d1d5db;
    color: #6b7280;
    background: transparent;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: #9ca3af;
    color: #374151;
    transform: translateY(-1px);
}

/* Illustration Styles */
.illustration-container {
    position: relative;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-figure {
    position: relative;
    z-index: 10;
}

.doctor-body {
    width: 5rem;
    height: 7rem;
    background: white;
    border: 4px solid #e5e7eb;
    border-radius: 1rem;
    position: relative;
}

.doctor-coat {
    position: absolute;
    inset: 4px;
    background: linear-gradient(to bottom, #dbeafe, #f0f9ff);
    border-radius: 0.75rem;
}

.doctor-tie {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 4rem;
    background: var(--navy);
    border-radius: 0 0 0.5rem 0.5rem;
}

.stethoscope {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 0.25rem;
    height: 2rem;
    background: #4b5563;
    border-radius: 9999px;
}

.stethoscope::after {
    content: "";
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #4b5563;
    border-radius: 50%;
}

.doctor-head {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: #fed7aa;
    border-radius: 50%;
}

.doctor-hair {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2rem;
    background: #92400e;
    border-radius: 1.5rem 1.5rem 0 0;
}

.doctor-eye {
    position: absolute;
    top: 1rem;
    width: 0.25rem;
    height: 0.25rem;
    background: black;
    border-radius: 50%;
}

.doctor-eye.left {
    left: 0.75rem;
}

.doctor-eye.right {
    right: 0.75rem;
}

.doctor-arm {
    position: absolute;
    top: 1rem;
    width: 1rem;
    height: 4rem;
    background: #fed7aa;
    border-radius: 9999px;
}

.doctor-arm.left {
    left: -1.5rem;
    transform: rotate(12deg);
}

.doctor-arm.right {
    right: -1.5rem;
    transform: rotate(-12deg);
}

.doctor-hand {
    position: absolute;
    top: 4rem;
    right: -2.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #fed7aa;
    border-radius: 50%;
}

/* Document */
.document {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 5rem;
    background: linear-gradient(45deg, #4a5568, #2d3748);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.document-content {
    position: absolute;
    inset: 0.5rem;
    background: white;
    border-radius: 0.375rem;
}

.document-line {
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    height: 0.25rem;
    background: #d1d5db;
    border-radius: 9999px;
}

.document-line:nth-child(1) {
    top: 0.5rem;
}

.document-line:nth-child(2) {
    top: 1rem;
    right: 1rem;
}

.document-line:nth-child(3) {
    top: 1.5rem;
    right: 1.5rem;
}

/* Leaves */
.leaves-group {
    position: absolute;
    opacity: 0.8;
}

.leaves-group.left {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
}

.leaves-group.right {
    right: 1rem;
    bottom: 1rem;
    transform: rotate(45deg);
}

.leaf {
    background: #4ade80;
    border-radius: 9999px;
    opacity: 0.8;
}

.leaf-1 {
    width: 8rem;
    height: 3rem;
}

.leaf-2 {
    width: 6rem;
    height: 2.5rem;
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    background: #22c55e;
}

.leaf-3 {
    width: 5rem;
    height: 2rem;
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    background: #16a34a;
}

.leaf-small-1 {
    width: 4rem;
    height: 2.5rem;
    background: #4ade80;
}

.leaf-small-2 {
    width: 3rem;
    height: 2rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #22c55e;
}

/* Virus */
.virus-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.virus-container.virus-1 {
    top: 0rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
}

.virus-container.virus-2 {
    bottom: 3rem;
    right: 2rem;
    width: 7rem;
    height: 7rem;
}

.dotted-circle {
    border: 2px dashed #9ca3af;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-custom 2s ease-in-out infinite;
}

.virus {
    border-radius: 50%;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.virus.green {
    width: 3rem;
    height: 3rem;
    background: var(--virus-green);
}

.virus.pink {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--virus-pink);
}

.virus-center {
    position: absolute;
    inset: 0.5rem;
    border-radius: 50%;
}

.virus.green .virus-center {
    background: #22c55e;
}

.virus.pink .virus-center {
    background: #ec4899;
}

.virus-spike {
    position: absolute;
    background: inherit;
}

.virus-spike.top {
    top: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.75rem;
    border-radius: 0.25rem 0.25rem 0 0;
}

.virus-spike.bottom {
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.75rem;
    border-radius: 0 0 0.25rem 0.25rem;
}

.virus-spike.left {
    left: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.5rem;
    border-radius: 0.25rem 0 0 0.25rem;
}

.virus-spike.right {
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.5rem;
    border-radius: 0 0.25rem 0.25rem 0;
}

.virus-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: inherit;
}

.virus-dot.top-left {
    top: -0.25rem;
    left: -0.25rem;
}

.virus-dot.top-right {
    top: -0.25rem;
    right: -0.25rem;
}

.virus-dot.bottom-left {
    bottom: -0.25rem;
    left: -0.25rem;
}

.virus-dot.bottom-right {
    bottom: -0.25rem;
    right: -0.25rem;
}

/* Floating Dots */
.floating-dot {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.floating-dot:nth-child(2n) {
    animation-delay: -1s;
}

.floating-dot:nth-child(3n) {
    animation-delay: -2s;
}

.dot-1 {
    top: 4rem;
    left: 2rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--navy);
}

.dot-2 {
    top: 8rem;
    left: 4rem;
    width: 1rem;
    height: 1rem;
    background: #22c55e;
}

.dot-3 {
    bottom: 5rem;
    left: 5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #ec4899;
}

.dot-4 {
    bottom: 8rem;
    right: 8rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #ec4899;
}

.dot-5 {
    bottom: 4rem;
    right: 6rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #f472b6;
}

/* Dots Indicator */
.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.dot-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-indicator.active {
    background: var(--navy);
}

.dot-indicator.inactive {
    background: #d1d5db;
}

.doctor-figure img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

@keyframes pulse-custom {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 3rem;
    }

    .description-text {
        font-size: 1.125rem;
    }

    .sub-description-text {
        font-size: 1.1rem;
    }

    .illustration-container {
        height: 20rem;
    }

    .doctor-body {
        width: 4rem;
        height: 5.5rem;
    }

    .doctor-head {
        width: 3rem;
        height: 3rem;
        top: -2rem;
    }

    .virus-container.virus-1 {
        width: 5rem;
        height: 5rem;
    }

    .virus-container.virus-2 {
        width: 6rem;
        height: 6rem;
    }
}

@media (max-width: 767.98px) {
    .brand-text {
        font-size: 1.1rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .illustration-container {
        height: 16rem;
    }

    .design-tools {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 2rem;
    }

    .main-card {
        border-radius: 1.5rem;
    }
}
