
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-menu a {
        text-decoration: none;
        color: #666;
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #41aac4;
        }

.btn-primary {
    background: #41aac4;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-primary:hover {
        background: #357ABD;
    }

/* Hero Section */
.hero {
    padding: 60px 0;
    background: #f3f6fd;
}

.hero-content {
    display: grid;
    grid-template-columns: 750px 1fr;
    gap: 40px;
    align-items: start;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    top: -80px
}

    .login-card h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 0px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 14px;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }

.btn-login {
    font-size: 18px;
    border-radius: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid #41aac4;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 10px ☐ rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}

    .btn-login:before {
        transition: 0.5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: "";
        background-color: #157289;
        border-color: #157289;
        z-index: -1;
    }

    .btn-login:hover, .btn-login:focus {
        border-color: #157289;
        color: white;
    }

        .btn-login:hover:before, .btn-login:focus:before {
            transition: 0.55 all ease;
            left: 0;
            right: 0;
            opacity: 1;
        }

button:active {
    transform: scale(0.9);
}

butlog:active {
    transform: scale(0.9);
}








/* .btn-login {
            width: 100%;
            background: #41aac4;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s;
        }

        .btn-login:hover {
            background: #097a96;
            color: #fff;
        } */

.forgot-password {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

    .forgot-password a {
        color: #41aac4;
        text-decoration: none;
    }

.hero-right {
    position: relative;
    top: -80px;
}

    .hero-right img {
        width: 100%;
        height: 700px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 30px;
    }

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    font-size: 15px;
}

.operating-hours {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hours-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.operating-hours h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row span:first-child {
        font-weight: 600;
    }

    .hours-row span:last-child {
        color: #666;
    }

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

    .footer p {
        font-size: 14px;
    }

.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(93, 112, 136, 0.1), rgba(98, 120, 146, 0.2));
    z-index: 3;
    pointer-events: none;
}


.hero-text {
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 10px;
    top: -80px
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }

.hero-text {
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 100px;
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }

.hero-text {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin-top: 100px;
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }

.hero-text {
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin-top: 100px;
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }

.heartbeat-line {
    position: absolute;
    bottom: 45px;
    left: 10px;
    width: 99%px;
    height: 120px;
    overflow: visible;
    z-index: 1;
}

.heart {
    display: inline-block;
    font-size: 0.8em;
    animation: heartPulse 1s infinite;
    animation-play-state: paused;
}

    .heart img {
        top: 80px;
        margin-bottom: 0px;
    }

.heartbeat-line path {
    stroke: #41aac4;
    stroke-width: 1.5;
    fill: none;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    filter: drop-shadow(0 0 6px #41aac4);
    animation: drawLine 7.5s linear forwards;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.radio-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .radio-options label {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 500;
    }

    .radio-options input[type="radio"] {
        accent-color: #41aac4;
    }

button {
    position: relative;
    padding: 0px 0px;
    margin-top: 20px;
    background: #41aac4;
    font-size: 174x;
    font-weight: 700;
    height: 50px;
    width: 240px;
    color: #ffffff;
    border: 3px solid #41aac4;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.butlog{
    position: relative;
    padding: 0px 0px;
    margin-top: 20px;
    background: #41aac4;
    font-size: 174x;
    font-weight: 700;
    height: 50px;
    width: 240px;
    color: #ffffff;
    border: 3px solid #41aac4;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}


.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 1scubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #41aac4);
    z-index: -5;
    transition: all 0.8s ease;
}

button:hover {
    background: transparent;
    color: #41aac4;
    box-shadow: 0 0 0px #41aac4;
}
.butlog:hover {
    background: transparent;
    color: #41aac4;
    box-shadow: 0 0 0px #41aac4;
}

    button:hover .star-1 {
        position: absolute;
        top: -80%;
        left: -30%;
        width: 25px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

    button:hover .star-2 {
        position: absolute;
        top: -0%;
        left: 10%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

    button:hover .star-3 {
        position: absolute;
        top: 55%;
        left: 25%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

    button:hover .star-4 {
        position: absolute;
        top: 30%;
        left: 80%;
        width: 8px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

    button:hover .star-5 {
        position: absolute;
        top: 25%;
        left: 115%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

    button:hover .star-6 {
        position: absolute;
        top: 5%;
        left: 60%;
        width: 5px;
        height: auto;
        filter: drop-shadow(0 0 0px #41aac4);
        z-index: 2;
    }

.fil0 {
    fill: #41aac4;
}

.service-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

    .service-card::before {
        content: "";
        position: absolute;
        background: #d9f1f2;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }

    .service-card:hover::before {
        background: #41aac4;
        top: 0;
        border-radius: 0px;
        stroke: #666;
    }

.service-icon svg {
    margin-bottom: 15px;
}

.service-icon svg {
    font-size: 48px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.service-card:hover svg {
    stroke: #fff;
}


.title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

    .title a {
        color: #111;
    }

.description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.service-card:hover .title,
.service-card:hover .description {
    color: #fff;
    stroke: red;
}

.service-card:hover .icon i {
    color: #fff;
    stroke: red;
}
 

.btn1 {
    background: transparent;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    perspective: 30rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.308);
}

    .btn1::before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 10px;
        background: linear-gradient( 320deg, rgba(0, 140, 255, 0.678), rgba(128, 0, 128, 0.308) );
        z-index: 1;
        transition: background 3s;
    }

    .btn1:hover::before {
        animation: rotate 1s;
        transition: all 0.5s;
    }

@keyframes rotate {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}





@keyframes drawLine {
    0% {
        stroke-dashoffset: 1200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* optional: heart pulse animation (applied dynamically by JS) */
@keyframes pulseOnce {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}







@media (max-width: 640px) {
    .heartbeat-line {
        display: none;
    }
}



/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
