:root{
--brand:#9E2A1F;      /* clay tone */
--dark:#2B2B2B;
--muted:#6c757d;
--bgsoft:#F5F3F1;
}
/* style.css (top me add karo) */
@font-face {
  font-family: 'FontAwesome';
  src: url('font.woff2') format('woff2');
  font-display: swap;
}
body { margin:0; font-family:sans-serif; }
.header { background:#fff; }
.hero { padding:20px; }
body{ color:var(--dark); }
.navbar-brand span{ color:var(--brand); letter-spacing:.5px; }
.btn-brand{
background:var(--brand);
border-color:var(--brand);
color:#fff;
}
.btn-brand:hover{ background:#9e2a1f; border-color:#9e2a1f; color:#fff; }
.btn-outline-brand{
border-color:var(--brand);
color:var(--brand);
}
.btn-outline-brand:hover{ background:var(--brand); color:#fff; }
.hero-badge{
display:inline-flex; gap:.5rem; align-items:center;
background:rgba(197,107,60,.12);
color:#F5F3F1;
border:1px solid rgba(197,107,60,.25);
padding:.4rem .7rem;
border-radius:999px;
font-weight:600;
font-size:.9rem;
}
.section-soft{ background:var(--bgsoft); }
.section-title{
font-weight:800;
letter-spacing:-.3px;
}
.lead-small{ color:var(--muted); }
.icon-dot{
width:.55rem; height:.55rem; border-radius:50%;
background:#F5F3F1; display:inline-block;
}
.card-soft{
border:1px solid rgba(0,0,0,.06);
box-shadow: 0 10px 25px rgba(0,0,0,.04);
border-radius: 1rem;
}
.footer{
background:#0f0f0f;
color:#cfcfcf;
}
.footer a{ color:#cfcfcf; text-decoration:none; }
.footer a:hover{ color:#fff; }
.carousel-caption{
text-shadow: 0 2px 20px rgba(0,0,0,.55);
}
.carousel-item img{
height: 520px;
object-fit: cover;
filter: brightness(0.75);
}
@media (max-width: 992px){
.carousel-item img{ height: 420px; }
}
@media (max-width: 576px){
.carousel-item img{ height: 360px; }
}



.page-title { font-weight:800; letter-spacing:-0.3px; }
.blog-card {
        background:var(--bgsoft);
border:1px solid rgba(0,0,0,.06);
border-radius:1rem;
box-shadow:0 10px 25px rgba(0,0,0,.04);
transition: all .2s ease;
height:100%;
}
.blog-card:hover {
transform: translateY(-4px);
box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.blog-meta {
font-size:0.85rem;
color:#6c757d;
}
.blog-card a {
text-decoration:none;
color:#1a1a1a;
}
.blog-card a:hover {
color:#8b3a2b;
}

.meta { color:#6c757d; font-size:.9rem; }
.content h2 { margin-top: 1.75rem; }


.header-contact {
    padding: 5px 0px 0px;
    font-size: 18px;
}

.header-contact i {
    color: #49de56;
    font-weight: bold;
}

.navbar {
    border-bottom: 2px solid #9E2A1F;
}

.navbar-brand {
    font-size: 30px;
    margin-top: -20px;
}

#firraNav li a {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}

#firraNav li a:hover {
    color: #9E2A1F;
}

#firraNav .btn-brand, #firraNav .btn-brand:hover {
    color: #FFF;
}



.city .grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 24px;
    padding: 20px 0;

    justify-content: center;
}

/* Card Styling */
.city .card {
    position: relative;
    /* This makes the height always equal to the width */
    aspect-ratio: 1 / 1; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none; /* Removes underline from links */
    
    /* Center the image/content inside the card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.city .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Image Handling */
.city .card img {
    /* Increased size of the SVG/Image */
    width: 100%; 
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
   transform: scale(1.2) !important;
    margin-bottom: 10px; 
}

.city .card:hover img {
    transform: scale(1.3);
}

/* Overlay / Text Container */
.city .overlay {
    position: absolute;
    bottom: 15px; /* Positioned at the bottom */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

.city .overlay h3 {
    margin: 0;
    font-size: 1.3rem; /* Slightly smaller to fit square layout better */
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* Hover Effect for Text */
.city .card:hover .overlay {
    bottom: 18px;
}

/* Responsive Tweak for mobile */
@media (max-width: 600px) {
    .city .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .city .overlay h3 {
        font-size: 1.1rem;
    }
}
.footer-section {
 
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(158, 42, 31, 0.9); /* overlay */
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-left .logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-left p {
  margin: 8px 0;

}

.footer-left i {
  margin-right: 8px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}

.footer-links h4,
.footer-form h4 {
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.footer-form textarea {
  height: 80px;
}

.footer-form button {
  width: 100%;
  padding: 10px;
  background: #c0392b;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.footer-form button:hover {
  background: #a93226;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-policy a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
}

.footer-policy a:hover {
  text-decoration: underline;
}
.bg-danger, .btn-danger {background: #9e2a1f !important;border :1px solid #9e2a1f !important}
/* Custom Accordion Plus/Minus Symbols */
.accordion-button::after {
    background-image: none !important; /* Hide default arrow */
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target the accordion question text specifically */
.accordion-button {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333; /* Darker color for better readability */
    line-height: 1.4; /* Improves appearance for long questions */
}

/* Optional: Adjust the plus/minus symbol size to match the new font size */
.accordion-button::after {
    font-size: 18px !important;
    font-weight: 400;
}

/* Optional: Ensures the active (opened) question maintains the size */
.accordion-button:not(.collapsed) {
    font-size: 18px !important;
    font-weight: 700 !important; /* Makes the open question slightly bolder */
}

.accordion-button:not(.collapsed)::after {
    content: '−'; /* Using a long minus sign */
    transform: none; /* Disable rotation */
    color: #9e2a1f; /* Optional: Change color when open */
}


.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    background-color: #fff8f8; 
    color: #9e2a1f;
}
