html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.read-more {
    color: darkred;
    font-weight: 500;
    cursor: pointer;
}

.read-more:hover {
    color: red;
}
.blog__single {
    display: flex;
    flex-direction: column;
    height:100%;
    

}

.blog__single-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.donate-btn {
    margin-top: auto;
}

.blog__single-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog__single {
    background-color: #e8dfdf; 
    border:  1px solid #323232;
    border-radius: 12px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*............ServeGaumata.cshtml page k liye css..............*/


.common-page .right-side {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-left: 2px solid #eee;
}

/* Buttons */
.common-page .donate-btn {
    background-color: rgb(255 193 7);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
}

.common-page .donate-btn:hover {
    background-color: rgb(255 193 7);
}

.common-page .seva-btn {
    background-color: rgb(255 193 7);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    width: 200px;
}

.common-page .seva-btn:hover {
    background-color: rgb(200, 140, 40);
    transform: scale(1.05);
}

/* Layout */
.common-page .main-layout {
    display: flex;
    height: 70vh;
    padding: 20px;
}

.common-page .left-hero {
    width: 60%;
    background: #f9f5ef;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgb(255 193 7);
}

.common-page .hero-flex {
    display: flex;
    height: 100%;
}

.common-page .hero-text {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.common-page .hero-image {
    width: 50%;
    height: 100%;
}

.common-page .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Cards */
.common-page .custom-card {
    border-radius: 10px;
    overflow: hidden;
    background: #f9f5ef;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 8px;
    border: 2px solid rgb(255 193 7);
    padding-left: 10px;
    
}

.common-page .custom-card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
}

/* Carousel specific */
.common-page #cardCarousel .row {
    justify-content: flex-start;
    --bs-gutter-x: 40px;
    padding-left: 50px;
}

.common-page #cardCarousel .col-md-4 {
    flex: 0 0 auto;
    width: auto;
}

.common-page #cardCarousel .custom-card {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
}

/* Misc */
.common-page .dotted-line {
    border: none;
    border-top: 4px dotted rgb(255 193 7);
}

.common-page .payment-logos img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}