body {
    margin:0;
    font-family: 'Poppins', sans-serif;
    background:#fff;
}

/* NAVBAR */
.navbar-inner_1{
  background:#ff4d6d; /* same solid color */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  padding:12px 0;
}

.navbar-nav li a{
  color:#fff !important;
  font-size:16px;
  font-weight:500;
  padding:10px 15px;
}

/* NAVBAR HOVER FIX */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background: transparent !important;
    color: #ffe6ea !important;
}

/* ACTIVE MENU */
.navbar-nav > .active > a {
    background: rgba(255,255,255,0.15) !important;
    border-radius: 20px;
}

/* HERO SECTION (IMPORTANT FIX) */
.banner{
    background:#ff4d6d url('../images/ritual.jpg') no-repeat center center;
    background-size:cover;
    min-height:850px;
    position:relative;
}

/* CENTER CONTENT */
.banner_info{
   position:absolute;
   top:45%;
   left:50%;
   transform:translate(-50%,-50%);
   text-align:center;
   width:100%;
}

/* BIG HEADING */
.banner_info h3{
   color:#fff;
   font-size:65px;
   font-weight:700;
   letter-spacing:1px;
   text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

/* BUTTON */
.hvr-shutter-out-horizontal {
    background:#ff4d6d;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    color: #fff;
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    transition:0.3s;
}

.hvr-shutter-out-horizontal:hover {
    background:#e63950;
    transform: scale(1.05);
}

/* SEARCH BOX */
.search-box {
    background:#fff;
    padding: 25px;
    border-radius: 12px;
    width: 75%;
    max-width: 950px;
    margin: 30px auto 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    text-align:center;
    border:2px solid #ff4d6d;
}

/* SEARCH ROW */
.search-row {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

/* DROPDOWNS */
.search-box select {
    width: 22%;
    padding: 12px;
    margin: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size:14px;
    background:#fff;
    transition:0.3s;
}

.search-box select:focus {
    border-color:#ff4d6d;
    box-shadow:0 0 8px rgba(255,77,109,0.4);
    outline:none;
}

/* BUTTON */
.search-box button {
    padding: 12px 25px;
    background:#ff4d6d;
    color:#fff;
    border:none;
    border-radius:25px;
    margin-top:15px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.search-box button:hover {
    background:#e63950;
    transform: scale(1.05);
}

/* PROFILE GRID */
.profile-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:40px;
}

/* PROFILE CARD */
.card {
    width:260px;
    margin:15px;
    padding:15px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    text-align:center;
    transition:0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
}

.card h4 {
    margin-top:10px;
    font-size:18px;
}

.card a {
    display:inline-block;
    margin-top:10px;
    background:#ff4d6d;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    text-decoration:none;
}

/* FOOTER */
.footer{
    background:#fff;
    border-top:2px solid #ff4d6d;
    padding:25px;
    margin-top:50px;
    text-align:center;
}

/* MOBILE */
@media(max-width:768px){

    .banner_info h3{
        font-size:32px;
    }

    .search-box{
        width:90%;
        padding:15px;
    }

    .search-box select{
        width:90%;
    }

    .card{
        width:90%;
    }
}