/* Color Palette */

:root {

    --primary-blue: #003366;

    --accent-red: #d32f2f;

    --pure-white: #ffffff;

}



body {

    font-family: 'Segoe UI', Roboto, sans-serif;

    overflow-x: hidden;

}



/* Header & Top Bar */

.top-bar {

    background-color: var(--primary-blue);

}
.top-bar{
  background:var(--primary-blue);;
  color:#fff;
  font-size:13px;
  z-index:9999;
}





.nav-link {

    color: #333 !important;

    font-weight: 600;

    font-size: 0.95rem;

    padding: 10px 15px !important;

}



.nav-link:hover {

    color: var(--primary-blue) !important;

}



/* Hover-Based Dropdown */

@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {

        display: block;

        margin-top: 0;

    }

}



.dropdown-item:hover {

    background-color: var(--primary-blue);

    color: white;

}



/* Buttons */

.btn-red {

    background-color: var(--accent-red);

    color: white;

    border: none;

    transition: 0.3s;

}



.btn-red:hover {

    background-color: #b71c1c;

    color: white;

    transform: translateY(-2px);

    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);

}



.text-blue { color: var(--primary-blue); }

.text-red { color: var(--accent-red); }

.bg-blue { background-color: var(--primary-blue); }



/* Hero Section */

.hero-img {
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
    color: #fff;
}

/* Content */
.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-img {
        height: 280px;
        object-position: center top;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-btns {
        display: none !important;
    }
}

/* property listing sections  */
.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
}

/* Card */
.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
}

/* Image */
.property-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

/* Info */
.property-info {
    padding: 15px;
}

.property-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.location {
    font-size: 14px;
    color: #777;
}



/* Mobile */
@media (max-width: 768px) {

    .section-title {
        font-size: 24px;
    }

    .property-card img {
        height: 180px;
    }

    /* Stack cards in mobile */
    .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
    }

    .carousel-item .col-md-4 {
        min-width: 80%;
    }

    /* Hide arrows */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
/* Image wrapper */
.property-img {
    position: relative;
}

.property-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Tags */
.badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-verified {
    position: absolute;
    top: 10px;
    right: 10px;
    background: green;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Meta info */
.property-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin: 5px 0;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 10px;
}

/* Buttons */
.property-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile Fix */
@media (max-width: 768px) {

    .property-img img {
        height: 180px;
    }

    .property-buttons {
        flex-direction: column;
    }

    .property-buttons a {
        width: 100% !important;
    }
}
/* Transitions */

.transition-hover:hover {

    transform: translateY(-10px);

    transition: all 0.3s ease;

}



/* Sticky Form */

.sticky-form {

    top: 100px;

}



/* Floating WhatsApp */

.whatsapp-sticky {

    position: fixed;

    bottom: 30px;

    right: 30px;

    background-color: #25d366;

    color: white;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    z-index: 1000;

    text-decoration: none;

}



.whatsapp-sticky:hover {

    color: white;

    background-color: #128c7e;

}

/* Category Cards Styling */

.category-card {

    background: #fff;

    transition: all 0.3s ease;

    cursor: pointer;

    border: 1px solid #eee;

}



.category-card:hover {

    background-color: var(--accent-red);

    color: white;

}



.category-card:hover i {

    color: white !important;

}



/* Project Cards */

.project-card {

    border-radius: 12px;

    transition: 0.3s;

}



.project-card:hover {

    transform: scale(1.02);

    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;

}



/* Accordion Customization */

.accordion-button:not(.collapsed) {

    background-color: var(--primary-blue);

    color: white;

}



.accordion-button:focus {

    box-shadow: none;

    border-color: rgba(0,0,0,.125);

}
 /* New css  */
.mobile-hide{
  display:block;
}
@media(max-width:991px){
  .mobile-hide{display:none;}
}

/* HEADER */
.main-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:99999;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
   border-bottom: 1px solid #eee;
   margin: 0;
    line-height: normal;
}

.header-logo {
    height: 70px;
    width: auto;
    display: block;
}

@media (min-width: 992px) {
    .header-logo {
        height: 85px;
    }
}

/* NAV */
.navbar {
    display: flex;
    align-items: center;
      padding: 5px 0 !important;
    min-height: auto;
}

.nav-link{
  font-size:20px;
  font-weight:500;
  color:#333 !important;
  margin:0 8px;
  transition:0.3s;
}

.nav-link:hover{
  color:#0B3D91 !important;
}

/* DROPDOWN */
.dropdown-menu{
  border-radius:10px;
  padding:10px;
}

.dropdown-item{
  font-size:14px;
  padding:8px 12px;
  transition:0.3s;
}

.dropdown-item:hover{
  background:#f5f7ff;
  color:#0B3D91;
}

/* BUTTON */
.btn-red{
  background:#E53935;
  color:#fff;
  font-size:20px;
  font-weight:500;
}

.btn-red:hover{
  background:#c62828;
}

/* MOBILE MENU */
.navbar-toggler{
  border:none;
}

.navbar-toggler:focus{
  box-shadow:none;
}
.navbar .container {
    padding-left: 0;
}
.navbar .container,
.navbar .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.seo-content {
    max-width: 900px;
    margin: auto;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.seo-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .seo-content {
        font-size: 14px;
        padding: 0 10px;
    }
}
.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content h5 {
    font-size: 18px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

.read-more {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
}
.video-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .video-card iframe {
        height: 160px;
    }
}
/* Custom Grid Wrapper */
.custom-property-grid {
    width: 100%;
}

/* Ensure equal height cards */
.custom-property-grid .property-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Spacing fix */
.custom-property-grid .custom-col {
    display: flex;
}

/* Tablet View */
@media (max-width: 991px) {
    .custom-property-grid .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .custom-property-grid .col-md-4,
    .custom-property-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Equal Height Fix */
.custom-property-grid .property-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

/* Image Fixed Height */
.custom-property-grid .property-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Content stretch */
.custom-property-grid .property-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title fixed height */
.custom-property-grid .property-info h5 {
    min-height: 48px;
    font-size: 16px;
    font-weight: 600;
}

/* Location fixed */
.custom-property-grid .location {
    min-height: 20px;
    font-size: 13px;
}

/* Meta section */
.custom-property-grid .property-meta {
    min-height: 24px;
    font-size: 13px;
}

/* Button always bottom */
.custom-property-grid .property-buttons {
    margin-top: auto;
    display: flex;
    gap: 5px;
}

/* Tablet */
@media (max-width: 991px) {
    .custom-property-grid .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-property-grid .col-md-4,
    .custom-property-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.custom-property-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

/* Each card column */
.custom-property-grid .custom-col {
    width: 33.33%;
    padding: 10px;
}

/* Tablet → 2 columns */
@media (max-width: 991px) {
    .custom-property-grid .custom-col {
        width: 50%;
    }
}

/* Mobile → 1 column */
@media (max-width: 576px) {
    .custom-property-grid .custom-col {
        width: 100%;
    }
}
.testimonial-section {
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    color: #333;
    padding: 30px 20px;
    border-radius: 15px;
    min-height: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Avatar */
.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #f1f1f1;
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 10px;
}

.testimonial-card h6 {
    color: #e63946;
    font-weight: 600;
}

/* Carousel arrows */
.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        min-height: auto;
        padding: 20px;
    }
}
  /* Hide on mobile */
    .property-card {
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .property-card:hover {
        transform: translateY(-5px);
    }

    .property-img {
        position: relative;
    }

    .property-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    /* Tags */
    .badge-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #000;
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
    }

    .badge-verified {
        position: absolute;
        top: 10px;
        right: 10px;
        background: green;
        color: #fff;
        padding: 5px 10px;
    }

    .badge-urgent {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #d9232d;
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
    }

    /* Info */
    .property-info {
        padding: 15px;
    }

    .location {
        font-size: 14px;
        color: #666;
    }

    .property-meta {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin: 10px 0;
    }

    .highlight {
        color: #d9232d;
        font-weight: 600;
    }

    .price {
        font-size: 18px;
        font-weight: bold;
        color: #d9232d;
    }

    .trust {
        font-size: 12px;
        color: green;
        margin-bottom: 10px;
    }

    /* Buttons */
    .property-buttons {
        display: flex;
        gap: 5px;
    }

    .btn-red {
        background: #d9232d;
        color: #fff;
        border: none;
    }
.testimonial-section {
    background: #0b3c66;
}

/* GRID (Desktop) */
.testimonial-grid-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* HEADER */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* AVATAR */
.avatar {
    width: 40px;
    height: 40px;
    background: #e63946;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* TEXT */
.review-left h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.review-left span {
    font-size: 12px;
    color: #777;
}

/* GOOGLE ICON */
.google-badge img {
    width: 18px;
}

/* STARS */
.stars {
    color: #ffc107;
    font-size: 14px;
    margin: 6px 0;
}

/* DESCRIPTION */
.testimonial-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* ========================= */
/* 🔥 MOBILE = SLIDER MODE */
/* ========================= */
@media (max-width: 768px) {

    .testimonial-grid-slider {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .testimonial-grid-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}
.project-highlight-section {
    background: #f8f9fa;
}

/* VIDEO */
.video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* CONTENT */
.project-content {
    padding: 10px;
}

.project-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b3c66;
}

.project-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* FEATURES GRID */
.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.feature-box {
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .project-title {
        font-size: 20px;
    }

    .project-features {
        grid-template-columns: 1fr;
    }
}
.why-choose-section {
    background: #f8f9fa;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
    position: relative;
}

.why-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: #e9f2ff;
    color: #0b3c66;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

/* BADGE */
.why-card .badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    background: #e63946;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-card {
        padding: 18px 12px;
    }

    .why-card h5 {
        font-size: 14px;
    }

    .why-card p {
        font-size: 12px;
    }
}
.video-section {
    background: #f8f9fa;
}

/* CARD */
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* THUMB */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    display: block;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(230, 57, 70, 0.9);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* TITLE */
.video-title {
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .video-title {
        font-size: 14px;
    }
}
.faq-section {
    background: #f8f9fa;
}

/* FAQ BOX */
.faq-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Scrollbar (optional styling) */
.faq-box::-webkit-scrollbar {
    width: 5px;
}
.faq-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Accordion */
.accordion-button {
    font-weight: 500;
    font-size: 14px;
}

.accordion-body {
    font-size: 14px;
    color: #555;
}

/* FORM BOX */
.enquiry-form-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    max-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Inputs */
.enquiry-form-box .form-control {
    font-size: 14px;
}

/* BUTTON */
.enquiry-form-box .btn {
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

    .faq-box,
    .enquiry-form-box {
        max-height: none;
    }
}
.property-hero {
        background: url('../images/property-banner.jpg') center/cover no-repeat;
        padding: 120px 20px;
        text-align: center;
        color: #fff;
        position: relative;
    }

    .property-hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .property-hero .container {
        position: relative;
        z-index: 2;
    }

    .property-hero h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .property-hero p {
        font-size: 18px;
    }

    .property-breadcrumb {
        background: #f8f9fa;
        padding: 12px 0;
        font-size: 14px;
    }

    .property-breadcrumb a {
        color: #0d6efd;
        text-decoration: none;
    }

    .property-breadcrumb span {
        margin: 0 6px;
    }

    .property-intro {
        padding: 40px 0;
        background: #b4c9dfbd;
    }

    .property-intro h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .property-intro h3 {
        margin-top: 20px;
        font-size: 22px;
    }

    .property-intro ul {
        padding-left: 20px;
    }

    .property-intro li {
        margin-bottom: 6px;
    }

    .property-list{
padding:70px 0;
background:#f7f7f7;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
}

.property-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.property-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.property-card:hover{
transform:translateY(-5px);
}

.property-img{
position:relative;
}

.property-img img{
width:100%;
height:220px;
object-fit:cover;
}

.tag{
position:absolute;
top:10px;
left:10px;
background:#0d6efd;
color:#fff;
padding:4px 10px;
font-size:12px;
border-radius:4px;
}

.property-info{
padding:18px;
}

.property-info h4{
font-size:20px;
margin-bottom:5px;
}

.location{
color:#777;
font-size:14px;
}

.size{
font-size:14px;
margin-top:5px;
}

.price{
font-weight:700;
color:#0d6efd;
margin:10px 0;
}

.btn-view{
display:inline-block;
padding:8px 18px;
background:#0d6efd;
color:#fff;
text-decoration:none;
border-radius:5px;
}
    @media(max-width:992px){

.property-grid{
grid-template-columns:repeat(2,1fr);
}

.property-hero h1{
font-size:32px;
}

}

@media(max-width:600px){

.property-grid{
grid-template-columns:1fr;
}

.property-hero{
padding:90px 15px;
}

.property-hero h1{
font-size:26px;
}

.section-title{
font-size:26px;
}

}
 .modal-content{
    border-radius:15px;
}

.form-control{
    border-radius:10px;
}

.btn-primary{
    border-radius:10px;
    font-weight:600;
}
.error {
    color: #dc3545;          /* Bootstrap red */
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}
.success-message{
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}
.company-facts{
    padding:60px 0;
    background:#f8f9fa;
}

.facts-title{
    text-align:center;
    font-weight:700;
    margin-bottom:40px;
}

.facts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.fact-item{
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.fact-label{
    display:block;
    font-size:14px;
    color:#666;
}

.fact-value{
    font-weight:600;
    font-size:16px;
}

/* Mobile Responsive */

@media(max-width:768px){
    .facts-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .facts-grid{
        grid-template-columns:1fr;
    }
}
/* Responsive Image Sizes (Comments as requested) */

/* Hero Image: 1600x700px */

/* Featured Project: 400x250px */

/* Gallery Images: 400x400px Square */