@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

.section1 {
    margin-top: 90px;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    min-height: 100vh;
    background-color: #113F67;
}

.section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(79, 70, 229, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.section1 .container {
    position: relative;
    z-index: 2;
}

.section1 .highlight {
    color: #fbbf24;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
    position: relative;
}

.section1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

.section1 h1 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.section1 h4 {
    color: #e5e7eb;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.section1 .description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section1 .description .highlight::after {
    content: none;
}


/* ******************************************************************* */
.section1 .feature-list {
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section1 .feature-list li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section1 .feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.section1 .feature-list li:hover::before {
    left: 100%;
}

.section1 .feature-list li:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.section1 .feature-list li i {
    color: #f6c733;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(246, 199, 51, 0.4));
    margin-right: 12px;
}






.section1 .feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    width: 250px;
}

.section1 .feature-item i {
    color: #f6c733;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(246, 199, 51, 0.4));
    margin-right: 12px;
}

.section1 .feature-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
}





/* ********************************************************************** */

/* Floating elements animation */
.section1::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}


.section1 a {
    font-size: 1.3rem;
    margin-top: 11px;
    display: inline-block;
    transition: .3s all;
    color: var(--white-color);
    background: var(--main-color1);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 6px 6px 0px 0px #f6c733;
    border: unset;
}

.section1 .trial-button {
    border: 1px solid #f59e0b !important;
}

.section1 a:hover {
    background-color: unset;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.7;
        transform: scaleX(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section1 h1 {
        font-size: 2.2rem;
    }

    .section1 .description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .section1 .feature-list li {
        margin: 0.5rem;
        padding: 12px 18px;
        font-size: 1rem;
    }

    .trial-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

@media (max-width: 576px) {
    .section1 h1 {
        font-size: 1.8rem;
    }

    .section1 .feature-list li {
        display: block;
        margin: 0.5rem auto;
        max-width: 280px;
    }
}

/* Additional medical-themed decorative elements */
.medical-bg-element {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.medical-bg-element.element-1 {
    top: 15%;
    left: 5%;
    font-size: 3rem;
    animation: float 8s ease-in-out infinite;
}

.medical-bg-element.element-2 {
    bottom: 20%;
    right: 8%;
    font-size: 2.5rem;
    animation: float 7s ease-in-out infinite reverse;
}

.medical-bg-element.element-3 {
    top: 60%;
    left: 10%;
    font-size: 2rem;
    animation: float 9s ease-in-out infinite;
}