/* General Styles */
body {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    background: #FFF9E3;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

.btn, button{
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
}

/* Sections */
section {
    /* padding: 60px 80px; */
    position: relative;
}


/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease-in-out;
}

/* .card:hover {
    transform: scale(1.05);
} */

.card-text {
    cursor: pointer;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
form {
    max-width: 500px;
    margin: auto;
}

button.btn-primary {
    background-color: #2575fc;
    border: none;
}

button.btn-primary:hover {
    background-color: #6a11cb;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 15px 0;
}



.text-center {
    text-align: center;
}

.brds-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.brds-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.brds-30 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.brds-40 {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.brds-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.brds-top-30{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.border-none{
    border: none;
}

input::placeholder {
    color: #aaaaaae3; /* Light gray color */
    font-size: 0.8rem; /* Smaller font size */
}

.form-control{
    line-height: 1.6 !important;
}


/* Common css */
.header{
    font-size: 1.5rem;
    font-weight: bold;
}

.no-shadow{
    box-shadow: none;
}
.no-bg{
    background: none;
}

.text-justify {
    text-align: justify;
    hyphens: auto;
    word-break: auto-phrase;
}

/* .text-justify {
    text-align: justify;
    letter-spacing: normal;
    word-spacing: 1.5px; 
    hyphens: auto; 
    overflow-wrap: break-word; 
} */


.m-h-300{
    min-height: 300px;
}

.m-h-45{
    min-height: 45px;
}

.list-none{
    list-style: none;
}

.z-999{
    z-index: 999;
}

.relative{
    position: relative;
}

.border-light{
    border: 2px solid #0000004a !important;
}

.h-inherit{
    height: inherit;
}

.h-71p{
    height: 71%;
}

.list-decimal{
    list-style: decimal;
}
.bold-decimal li::marker{
    font-weight: bold;
}

.d-none{
    display: none;
    visibility: hidden;
}

.brb-1{
    border-bottom: 1px solid #0000004a;
}

.brb-2{
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-bottom: 2px solid #0000004a;
}
.d-none{
    display: none !important;
    visibility: hidden !important;
}

.outline-none{
    outline: none !important;
}
.border-0{
    border: 0 !important;
    border-color: transparent !important;
}
.no-shadow{
    box-shadow: none !important;
}

.w-auto{
    width: auto !important;
}
.w-fit-content{
    width: fit-content !important;
}

.hidden{
    visibility: hidden !important;
    display: none !important;
    height: 0px !important;
    width: 0px !important;
}

.item-center{
    align-items: center;
}

.d-h-480{
    height: 483px;
}