
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

.bg-dangerr{
  background-color: #D01D2F !important;
}
.alice-regular {
  font-family: "Alice", serif;
  font-weight: 400;
  font-style: normal;
}

.font_1{
     font-family: "Alice", serif;
}


.top-strip {
  font-size: 14px;
}

.navbar .nav-link {
  font-weight: 600 !important;
  font-size: 18px !important;
}
.active{
  color: #D01D2F !important;
}

@media (max-width: 991px) {
  .top-strip {
    text-align: center;
  }
  .top-strip .d-flex {
    flex-direction: column;
    gap: 5px;
  }

  
}


@media (max-width: 991px) {
  .top-strip {
    display: none !important;
  }
}
.bg-danger, .btn-danger{
    background-color: #D01D2F !important;
}

.navbar-toggler i {
  transition: opacity 0.2s ease;
}

/* Hide toggle icons in desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}


/* =====================================  header css end */

/* =============    home page hero section start ==============*/
.hero-search-section {
  min-height: 115vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to top,
      rgba(255,255,255,0.9),
      rgba(255, 255, 255, 0.775),
      rgba(255,255,255,0)
    ),
    url('../assets/images/background.png') center/cover no-repeat;
}

/* 
 rgba(255,255,255,0.9),
      rgba(255,255,255,0.4),
      rgba(255,255,255,0) */

/* Heading */
.hero-search-section h1 {
  font-size: 44px;
  font-weight: 600;
  color: #111;
}

/* Search Box */
.search-box {
  position: relative;
  max-width: 600px;
}

.search-box input {
  height: 60px;
  border-radius: 50px;
  padding: 0 80px 0 25px;
  font-size: 18px;
}

.search-box button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 55px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #D01D2F;
  color: #fff;
  font-size: 20px;
}

.main-title{
font-size: 41px !important;
}
.sub_title{
    font-size: 41px !important;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-search-section {
    min-height: 60vh;
    padding: 40px 0;
  }

  .hero-search-section h1 {
    font-size: 26px;
  }

  .search-box input {
    height: 52px;
    font-size: 16px;
  }
  .main-title{
    font-size: 25px !important;
  }
  .sub_title{
     font-size: 25px !important;
  }

  .search-box button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #D01D2F;
  color: #fff;
  font-size: 20px;
}
}


.form-control:focus{
    box-shadow: none !important;
    border: none !important;
}


.bg-dark{
    background-image: url("https://images.pexels.com/photos/7263897/pexels-photo-7263897.jpeg?cs=srgb&dl=pexels-rachel-claire-7263897.jpg&fm=jpg");
    background-position: center;
    background-size: cover;
}

.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 280px;
  margin: auto;
}

/* Image */
.image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Button inside image */
.image-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #D01D2F;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: 500;
  text-decoration: none;
}

.image-btn:hover {
  background: #D01D2F;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .image-card img {
    height: 220px;
  }
    .w-60{
  width: 80% !important;
}
}


.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 280px;
  margin: auto;
  cursor: pointer;
}

/* Image */
.image-card img {
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
  transition: all 0.4s ease;
}

/* Dark overlay */
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

/* Common button styles */
.image-btn {
  background: #D01D2F;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  font-size: 18px;
}

/* Bottom button (always visible) */
.bottom-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  font-weight: 600;
}

/* Center button (hover only) */
.center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  height: 36px;                 /* ✅ FIXED HEIGHT */
  padding: 0 22px;              /* only horizontal padding */
  line-height: normal;          /* override bootstrap */
  
  display: flex;                /* center text properly */
  align-items: center;
  justify-content: center;

  font-size: 14px;
  border-radius: 12px;

  opacity: 0;
  transition: 0.4s ease;
}

/* Hover effects */
.image-card:hover img {
  filter: blur(2px) brightness(0.7);
  transform: scale(1.05);
}

.image-card:hover::after {
  opacity: 1;
}

.image-card:hover .center-btn {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .image-card img {
    height: 260px;
    
  }

}
.btn-light{
    background-color: #fff !important;
    color: #D01D2F;
    font-weight: 600;
}
.btn-light:hover{
    background-color: #fff !important;
    color: #D01D2F;
    font-weight: 600;
}
.center-btn{
  font-size: 18px !important;
}
.w-60{
  width: 60% ;
}

/* =============    home page hero section end ==============*/

/* home call to action start */
.cta-red-section {
  position: relative;
  padding: 70px 15px;
  overflow: hidden;
  z-index: 1;
}

/* Background image */
.cta-red-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/dot.jpg") center/cover no-repeat;
  z-index: -2;
  background-size: cover !important;
}

/* Red overlay color */
.cta-red-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d01d2fe6; /* red with opacity */
  z-index: -1;
}

/* Text styles */
.cta-red-section h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-red-section p {
  color: #fff;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #f1f1f1;
  color: #000;
}

.red_title {
  font-size: 45px;
}

.red_p {
  font-size: 22px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-red-section {
    padding: 50px 15px;
  }

  .red_title {
    font-size: 25px;
  }

  .red_p {
    font-size: 17px !important;
  }
}
/* home call to action end */
