﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.container-fluid {
    background-color: #ff8233ed;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

/* Form Container */
.form {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

/* Labels with curved edges */
label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #f0f0f0;
    color: #333333;
    width: fit-content;
    text-transform: uppercase;
}

/* Textboxes with curved edges */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="datetime"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}

    /* Focus effect for textboxes */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="datetime"]:focus,
    textarea:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.form-dropdown {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}
/* Submit Button */
button {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #208f10ed;
    }

/* Responsive Design */
@media (max-width: 500px) {
    form {
        padding: 15px;
    }

    label {
        font-size: 12px;
    }

    button {
        font-size: 14px;
    }
}

.arrow-down, .arrow-up {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px; /* Adjust size as needed */
}

    .arrow-down::before {
        content: '▼'; /* Down arrow symbol */
    }

    .arrow-up::before {
        content: '▲'; /* Up arrow symbol */
    }

    .arrow-down.active, .arrow-up.active {
        color: darkgray; /* Change this to the desired darker color */
    }

.logo {
    width: 80px; /* Set the desired width */
    height: auto; /* Set the desired height */
    border-radius: 50%; /* Make the image circular */
    object-fit: cover; /* Ensure the image covers the entire area */
    animation: swirl 1.5s ease-in-out;
}

.community-header-main {
    color: #8b0000; /* Saffron color */
    font-family: 'Kokila', serif; /* Traditional Malayalam font */
    opacity: 0;
    animation: jumpOutAnimation 2s ease forwards;
}

.community-header {
    color: #8b0000;
    font-family: 'Kokila', serif; /* Traditional Malayalam font */
    display: inline-block;
    opacity: 0;
    animation: jumpInAnimation 2s ease forwards;
    text-emphasis: circle;
}

.community-para {
    color: #006400; /* Deep green color */
    font-family: 'Noto Serif', serif;
    background-color: transparent; /* Cornsilk background for a traditional look */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vision-mission-philosophy {
    color: #8b0000; /* Dark red color */
    font-family: 'Noto Serif', serif;
    margin-top: 20px;
}

.IntroText {
    background-image: url('../assets/background-7037903_1280-MaxWidth.png'); /* Add a traditional Kerala background image */
    background-size: contain;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 55px;
    padding-right: 45px;
    border-radius: 10px;
    align-items: center;
}

.IntroDesc {
    padding-top: 15px;
    padding-left: 45px;
    padding-right: 45px;
    border-radius: 10px;
    align-items: center;
    animation: fadeInAnimation 1.5s ease-in forwards;
}

.eventAnimationFromLeft {
    animation: slideInFromLeft 1s ease-out forwards;
}

.eventAnimationFromRight {
    animation: slideInFromRight 1s ease-out forwards;
}

.form-container {
    align-content: center;
    justify-content: center;
    display: flex;
    opacity: 0;
    animation: fadeInAnimation 1.5s ease-in forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInAnimationBcHero {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes jumpInAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jumpOutAnimation {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(50px);
    }
}

@keyframes jumpTextAnimation {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.PendingPayment {
    color: red;
    display: inline-block;
    animation: jumpTextAnimation 0.5s infinite;
}

.PaymentSuccessful {
    color: green;
    display: inline-block;
    animation: jumpTextAnimation 0.5s infinite;
}

.IntroImage {
    border-radius: 10px;
    align-items: center;
    animation: zoomOut 1.5s ease-in-out;
}

@keyframes zoomOut {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes zoomOutMenu {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.logout-button {
    background-color: #ff4b5c; /* Red background */
    color: white; /* White text */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add some padding */
    font-size: 16px; /* Increase font size */
    border-radius: 15px;
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition */
}

    .logout-button:hover {
        background-color: #ff1e2d; /* Darker red on hover */
    }

.mainmenu {
    text-align: center;
}

    .mainmenu:hover {
        animation: zoomOutMenu .5s forwards;
    }

.flex-container {
    display: flex;
    align-items: center; /* Align items vertically in the center */
}

    .flex-container span {
        margin-right: 10px; /* Add some space between the span and the next element */
    }

    .flex-container ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

.profileView {
    background-color: #8b0000 !important;
    color: white !important;
    border-radius: 15px !important;
}

    .profileView:hover {
        background-color: #8b0000 !important;
        color: white !important;
        border-radius: 15px !important;
    }

.mailbody {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.mailcontainer {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f8d1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mailheader {
    text-align: center;
    color: #8b0000;
    font-family: 'Kokila', serif; /* Traditional Malayalam font */
    background-color: #f1d8aa;
    padding: 10px 0;
    border-radius: 8px 8px 0 0;
}

.mailcontent {
    padding: 20px;
    line-height: 1.6;
    color: #085808; /* Deep green color */
    font-family: 'Noto Serif', serif;
    background-color: transparent; /* Cornsilk background for a traditional look */
}

.mailfooter {
    text-align: center;
    padding: 10px 0;
    background-color: #f1d8aa;
    color: #8b0000;
    border-radius: 0 0 8px 8px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

    .cart-table th, .cart-table td {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .cart-table th {
        background-color: #f2f2f2;
        text-align: left;
    }

.total-row {
    font-weight: bold;
}

.total-column {
    font-weight: bold;
    color: green;
}

.discount-column {
    font-weight: bold;
    color: red;
}

.payment-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.profile-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .profile-container h2 {
        text-align: center;
        color: #4CAF50;
    }

.welcome-message {
    text-align: center;
    margin-bottom: 20px;
}
.profile-message{
    text-align:center;
}
.profile-detail {
    margin-bottom: 10px;
    text-align: left;
}

    .profile-detail span {
        color: #555;
    }
.img-thumbnail {
    width: 300px;
    height: inherit;
}
.img-thumbnail-fam {
    width: 100px;
    height: inherit;
}
.btn-success {
    background-color: #ff8233ed;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff8233ed;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.btn-primary-edit {
    background-color: #ff8233ed;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-success-approved {
    background-color: #0c4627ed;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.events-header {
    border-radius: 10px;
    background: linear-gradient(to right, rgba(255, 140, 0, 1), rgba(255, 165, 0, 0.5));
}

.events-tab {
    border-radius: 5px;
    background: linear-gradient(to right, rgba(255, 140, 0, 1), rgba(255, 165, 0, 0.5));
}

.report-header {
    background-color: #ff8233ed !important;
    text-align: center;
    border-radius: 10px;
}

.report-number {
    font-size: 40px;
}

.col-md-4 {
    animation: zoomOut 1.5s ease-in-out;
    padding-bottom: 20px;
    padding-top: 20px;
}

@keyframes swirl {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profilesvg {
    animation: swirl 1.5s ease-in-out;
}

.dropdown-item:hover {
    background-color: #ff8233ed;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-border th {
    border: none;
}

.archanai-image1 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move1 6s infinite;
}

.archanai-image2 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move2 7s infinite;
}

.archanai-image3 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move3 5s infinite;
}

.archanai-image4 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move4 8s infinite;
}

.archanai-image5 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move5 7s infinite;
}

.archanai-image6 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move6 8s infinite;
}

.archanai-image7 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move7 4s infinite;
}

.archanai-image8 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move8 9s infinite;
}

.archanai-image9 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move9 6s infinite;
}

.archanai-image10 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move10 5s infinite;
}

.archanai-image11 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move11 7s infinite;
}

.archanai-image12 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move12 6s infinite;
}

.archanai-image13 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move13 8s infinite;
}

.archanai-image14 {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: move14 5s infinite;
}

@keyframes move1 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-10vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-3vw), calc(30vh));
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(10vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-5vw), calc(30vh));
    }
}

@keyframes move3 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(9vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-7vw), calc(30vh));
    }
}

@keyframes move4 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-6vw), calc(30vh));
    }

    100% {
        transform: translate(calc(7vw), calc(30vh));
    }
}

@keyframes move5 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(8vw), calc(30vh));
    }

    100% {
        transform: translate(calc(3vw), calc(30vh));
    }
}

@keyframes move6 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-6vw), calc(30vh));
    }

    100% {
        transform: translate(calc(2vw), calc(30vh));
    }
}

@keyframes move7 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(10vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-3vw), calc(30vh));
    }
}

@keyframes move8 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-10vw), calc(30vh));
    }

    100% {
        transform: translate(calc(3vw), calc(30vh));
    }
}

@keyframes move9 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(6vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-2vw), calc(30vh));
    }
}

@keyframes move10 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-8vw), calc(30vh));
    }

    100% {
        transform: translate(calc(5vw), calc(30vh));
    }
}

@keyframes move11 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(7vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-4vw), calc(30vh));
    }
}

@keyframes move12 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-9vw), calc(30vh));
    }

    100% {
        transform: translate(calc(6vw), calc(30vh));
    }
}

@keyframes move13 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(5vw), calc(30vh));
    }

    100% {
        transform: translate(calc(-1vw), calc(30vh));
    }
}

@keyframes move14 {
    0% {
        transform: translate(0, calc(-30vh));
    }

    50% {
        transform: translate(calc(-7vw), calc(30vh));
    }

    100% {
        transform: translate(calc(4vw), calc(30vh));
    }
}

@keyframes eventdetailshero {
    0% {
        transform: rotate(30deg) translate(calc(4vw), calc(-10vh));
    }

    50% {
        transform: rotate(15deg) translate(calc(4vw), calc(10vh));
    }

    100% {
        transform: rotate(30deg) translate(calc(4vw), calc(20vh));
    }
}

.product-device {
    position: absolute;
    right: 0%;
    bottom: 25%;
    width: 320px;
    height: 450px;
    background-color: #333;
    border-radius: 21px;
    animation: eventdetailshero 5s ease-in forwards;
}

.product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 0%;
    background-color: #e5e5e5;
}

.product-device-heading {
    animation: zoomOut 2.5s ease-in forwards;
    color: #ff6000e8;
}

.product-device-heading-background {
    animation: fadeInAnimationBcHero 5s ease-in forwards;
}


.product-device-hero {
    opacity: 1;
}


.product-device::before {
    position: absolute;
    top: 0%;
    right: 10px;
    bottom: 0%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
}

.office-bearer {
    width: 300px; /* Adjust the width as needed */
    height: 300px; /* Maintain aspect ratio */
    border-radius: 50%; /* Rounded corners */
    box-shadow: 5px -5px 10px rgba(255, 140, 0, 1), /* Darker shadow */
    10px -10px 20px rgba(255, 165, 0, 0.5); /* Lighter shadow */
    position: relative;
    z-index: 1;
}

    .office-bearer:hover {
        animation: zoomOutMenu 1.5s forwards;
    }

    .office-bearer::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 140, 0, 1) 0%, rgba(255, 165, 0, 0.5) 100%);
        z-index: -1;
    }

.heading-gradient {
    background: linear-gradient(to right, rgba(255, 140, 0, 1), rgba(255, 165, 0, 0.5));
    color: black; /* Set text color to black */
    display: flex;
    border-radius: 10px;
    padding: 0.5em 1em; /* Adjust padding as needed */
    -webkit-background-clip: border-box; /* Ensure the gradient is applied to the background */
}

.carousel-image {
    opacity: 5;
}

.carousel-text {
    top: 10%; /* Adjust the value to position the caption vertically */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: red;
}

.carousel-control-prev:hover {
    background-color: #fae5d3 !important;
}

.carousel-control-next:hover {
    background-color: #fae5d3 !important;
}

.carousel-dark .carousel-caption {
    color: saddlebrown;
}

.carousel-inner {
    animation: zoomOut 1.5s ease-in forwards;
}

.verified-tick {
    font-size: 1em;
    margin-left: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0bae11;
}

.nav-pills .nav-link {
    color: black !important;
}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #ff8233ed !important;
}
