/* styles.css */
html,body{
    height:100%;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: #fdfdfd;
    color: #5d6872 !important;
    margin: 0;
    padding: 0;
}
h1{
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
h2, h3 {
    font-family: 'Poppins', sans-serif;
    /* color: #e15b45; */
}

h1 {
    text-align: center;
}
h2{
    text-align: left;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 80px;
}

.navbar {
    background-color: #333;
    color: #e15b45;
    padding: 10px 20px;
    text-align: center;
}

.navbar a {
    color: #e15b45;
    text-decoration: none;
    margin: 0 10px;
}

.navbar a:hover {
    color:#ff8227;
    /* text-decoration: underline; */
}

.navbar-toggler {
    color:#e15b45;
    border-color: #e15b45;
  } 

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(225, 91, 69, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.collapsed{
    color:#e15b45;
    border-color: #e15b45;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin: 20px; */
    padding: 20px;
    text-align: center;
    width: 300px;
    margin: auto;
    margin-bottom: 5px;
}

.card a {
    text-decoration: none;
    color: #333;
}

.card a:hover {
    color: #dbecff;
}

.preview{
    width: 200px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea, form button {
    margin: 10px 0;
    padding: 10px;
    /* width: 80%; */
    /* max-width: 400px; */
}

form button {
    background-color: #e15b45;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #ff8227;
}

.cta-button {
    background-color: #ff8227;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

audio {
    margin-top: 20px;
}


/* Remove margin and padding from <p> tags */
form p {
    margin-bottom: 0;
    padding: 0;
}

/* Optionally style the input fields */
form p input, form p textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.btn-primary{
    background-color: #e15b45 !important;
    color: #fff;
    border: none;
    border-color: #ff8227 !important;
    border-radius: 4px;
    cursor: pointer;
}
.btn-primary:hover{
    background-color: #ff8227 !important;
}

.header-bg{
    background-color: #fff;
    color: #0056b3;
    padding: 20px;
    text-align: center;
}
footer {
    background-color: #e15b45;
    color: #fff;
    position: fixed;
    height: 70px;
    bottom: 0;
    width: 100%;
}

.bd-modal-lg .modal-dialog{
    display: table;
    position: relative;
    margin: 0 auto;
    top: calc(50% - 50px);
  }

.bd-modal-lg .modal-dialog .modal-content{
/* background-color: transparent; */
border: none;
}

.medium-icon{
    font-size: 50px;
}

.social-login{
    margin-top: -10%;
}

#spinner{
    background-color:transparent;
    text-align: center;
    align-items: center;
    margin: auto;
}

.terms-of-use{
    padding-bottom: 90px;
}

.privacy-policy{
    padding-bottom: 90px;
}

.input-group-prepend label{
    padding:5px;
    padding-left:15px;
}

/* Fixes dropdown menus placed on the right side */
.ml-auto .dropdown-menu {
    left: auto !important;
    right: 0px;
    }

/* Parallax Effect */
.parallax {
    background-image: url("../images/header-bg3.jpg");
    height: 95vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content:left;
    color: rgb(22, 21, 21);
    /* text-align: center; */
    text-align:left;
}

.parallax h1 {
    font-size: 4rem;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

.section2 {
    background-color: #fbfbfb;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content:left;
    
    /* text-align: center; */
    text-align:left;
}
.section2 h2 {
    color:#5d6872;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.left h1{
    text-align: left;
    color:#333131
}
p.left{
    text-align: left;
    color:#ffffff
}
ul.left{
    text-align: left;
    color:#ffffff
}
.center{
    align-items: center;
    text-align: center;
    color:#333131;
}
.center h1{
    text-align: center;
    color:#333131;
}

/* Thumbnails Wrapper */
.thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.thumbnail-img {
    width: 100%;
    transition: transform 0.3s ease;
}

.thumbnail-img-icon {
    width: 300px;
    height: 300px;
    transition: transform 0.3s ease;
}

.thumbnail-wrapper:hover .thumbnail-img {
    transform: scale(1.1);
}

/* Overlay Effect */
.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.thumbnail-wrapper:hover .thumbnail-overlay {
    opacity: 1;
}

/* Overlay Content */
.thumbnail-content {
    text-align: center;
    color: #ffffff;
    padding: 10px;
}

.thumbnail-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.thumbnail-content p {
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #e15b45;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Utility */
.section-padding {
    padding: 20px 20px;
}