
/* Adding header style */
@tailwind base;
@tailwind components;
@tailwind utilities;

.bg-custom-size {
  @apply bg-cover;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

p {
    font-size: 18px;
}

body {

    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    background: rgba(253, 234, 198, 0.5);
    line-height: 1.6;
}

.outercard h2 {
    text-align: center;
}

.outercard {
    max-width: 800px;
    margin: 30px auto;
    padding: 2%;
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1 h2 {
    text-align: center;
}

.container1 h2 {
    text-align: center;
}

.card1 {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    border-radius: 8px;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
    /* transition: background-color 0.5s ease; */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card1:hover {
    transform: scale(1.05);
    background: rgba(255, 248, 234, 0.5);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.topimage {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.topimage img {
    width: 100%;
    height: 80%;
    display: block;
    padding: 0px;
    padding-bottom: 20px;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.7;
}

h2 {
    color: #007BFF;
    font-size: 2em;
    margin-bottom: 10px;
}

h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

p {
    margin: 15px 0;
}

.outergallery {
    background-color: #ebebeb;
    margin: 3%;
    padding: 2%;
    box-shadow: 0px 0px 15px 0px rgb(60, 60, 60);
}

#slider {
    overflow: hidden;
}

#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}

#slider figure img {
    float: left;
    width: 20%;
    height: 50%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1%;
}

@keyframes slider {
    0% {
        left: 0;
    }

    20% {
        left: 0;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    95% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 10px;
    left: 95%;
    transform: translateX(-50%);
    font-size: 2em;
    color: #007BFF;
    z-index: 100;
    animation: bounce 2s infinite;
}

/* New CSS for background image */
.background {
    background-image: url(about\ us\ background.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    /* border-radius: 8px; */
    box-shadow: inset 0 0 20px 10px rgba(0, 0, 0, 0.5); /* Inner drop shadow */
    position: relative;
}

.background::before {
    content: "";
    position: absolute;
    /* margin-bottom : 50px; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 234, 198, 0.5);
    /* border-radius: 8px; */
    z-index: 1;
}

.background > * {
    position: relative;
    z-index: 2;
}
/* footer css */
.bottom{
  padding-top: 2rem;
  background-color: #cdbba7;
  margin-top: 2rem;
}

.bottomcontent{
  
  max-width: 70%;
  margin: 0 auto;
  color: rgb(107 61 47 / 80%);
  font-weight: 520;
}

.bottom-upper{
  width: 100%;
}

.bottomcontent h2{
  padding-bottom: 1.5rem;
}

.bottomcontent p{
  padding-bottom: 1rem;
}

.bottom-lower{
  display: flex;
  width: 100%;
  padding-top: 3rem;
  
}

.inputbox{
  width: 100%;
  background-color: transparent;
  border: 1.7px solid rgb(107 61 47 / 80%);
}


.left-bottom{
  min-width: 50%;
}
.right-bottom{
  min-width: 50%;
}

#message{
  height: 10rem;
}

.label{
  
  line-height: 0.5rem;
}

