﻿


/*registration*/

.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    
}

    .services-section h2 {
        font-size: 36px;
        color: #333;
        margin-bottom: 10px;
    }

    .services-section p {
        color: #777;
        font-size: 16px;
        margin-bottom: 50px;
    }

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

.service-icon {
    font-size: 40px;
    color: #31c9d7;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    transition: color 0.3s ease;
}

.service-description {
    font-size: 15px;
    color: #666;
    text-align: justify;
}

/* Hover Effects */
.service-box:hover .service-icon {
    color: grey; /* Orange on hover */
}

.service-box:hover .service-title {
    color: grey;
}
/*end */


/* Header Section */
.header1 {
    background: linear-gradient(135deg, #31c9d7, #946f48);
    padding: 40px 10px;
    text-align: center;
    color: white;
    animation: fadeInDown 1s ease forwards;
}

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    header p {
        font-size: 1.2rem;
        opacity: 0.9;
        color:white;
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
}

.info-card {
    background: white;
    padding: 20px;
    flex: 1 1 300px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.2s ease forwards;
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .info-card h3 {
        margin-bottom: 10px;
        color: #31c9d7;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Section */
.map {
    width: 100%;
    height: 350px;
    margin-top: 40px;
    border: none;
}

/* Contact Form Section */
.form-section {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 25px #31c9d7;
    animation: fadeInUp 1.3s ease forwards;
}

    .form-section h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #31c9d7
    }

form {
    display: grid;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
    font-size: 1rem;
}

    input:focus, textarea:focus {
        border-color: #31c9d7;
        box-shadow: 0 0 8px rgba(10,116,218,0.2);
    }

button {
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #31c9d7, #946f48);
    color: white;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    button:hover {
        background: linear-gradient(135deg, grey, #31c9d7);
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}


/* contactus form */



.input-group {
    position: relative;
    margin-bottom: 20px;
}

  
    .input-group label {
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        background: white;
        padding: 0 5px;
        color: #888;
        transition: 0.3s;
        pointer-events: none;
    }

    .input-group input:focus,
    .input-group input:not(:placeholder-shown) {
        border-color: #31c9d7;
    }

       .input-group input:focus + label,
        .input-group input:not(:placeholder-shown) + label {
            top: 0px;
            left: 8px;
            font-size: 12px;
            color: black;
        }

    .input-group textarea:focus,
    .input-group textarea:not(:placeholder-shown) {
        border-color: #31c9d7;
    }
        .input-group textarea:focus + label,
        .input-group textarea:not(:placeholder-shown) + label {
            top: 0px;
            left: 8px;
            font-size: 12px;
            color: black;
        }

