@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.my-form-section {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#8a4e00, #116257);
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-form-box {
    max-width: 330px;
    width: 100%;
    text-align: center;
}

.log-logo img {
    max-height: 70px;
    margin-bottom: 10px;
}

.log-fld {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
}

.log-fld h2 {
    color: #8a4e00;
    font-size: 24px;
    margin-bottom: 10px;
}

.log-fld h2 img {
    width: 26px;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.form-control {
    padding-right: 35px;
}

.log-fld button {
    width: 100%;
    padding: 10px;
    background: #8a4e00;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.recaptcha-text,
.mail-text {
    font-size: 13px;
    margin: 5px 0px;
}

.social-img {
    width: 100%;
    margin: 6px 0;
}

.get-new-id {
    background: #111;
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
}

hr {
    margin: 2px 0;
}

/* Floating WhatsApp */
.float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
}

/* Hidden SEO */
.seo-hidden {
    display: none;
}


/* ABOUT CARDS SECTION */
.about-cards-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    opacity: 0.9;
}

.about-card {
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    color: #111;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.about-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Highlight card */
.highlight-card {
    background: linear-gradient(135deg, #8a4e00, #f4b400);
    color: #fff;
}

.highlight-card p {
    color: #fff;
}