/* Trust Snapshot Section */
.trust-snapshot {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.trust-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.trust-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1.23;
}

.trust-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.trust-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827, #1f2937);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 0;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card * {
    position: relative;
    z-index: 1;
}

.trust-card:hover h3,
.trust-card:hover p,
.trust-card:hover i {
    color: #ffffff;
}

/* Icon */
.trust-icon {
    font-size: 42px;
    color: #111827;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.trust-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    transition: 0.3s ease;
}

.trust-card p {
    font-size: 14px;
    color: #6b7280;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-title {
        font-size: 26px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 30px 20px;
    }
}





/* Why SM Construction Section */
.sm-why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf6e8 0%, #f9f1dc 100%);
}

.sm-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.sm-why-content .sm-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #1563df;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.sm-why-title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 25px;
}

.sm-why-title span {
    color: #1563df;
}

.sm-why-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

.sm-why-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #1563df;
    text-decoration: none;
    transition: 0.3s ease;
}

.sm-why-link:hover {
    color: #6f5527;
}

/* Right Image */
.sm-why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Stats */
.sm-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 80px;
    text-align: center;
}

.sm-stat-box h3 {
    font-size: 38px;
    font-weight: 700;
    color: #1563df;
    margin-bottom: 5px;
}

.sm-stat-box p {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .sm-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sm-why-title {
        font-size: 23px;
    }

    .sm-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .sm-why-text {
    font-size: 12px !important;
    line-height: 1.24 !important;
    color: #4b5563;
    margin-bottom: 18px;
}
    .sm-why-section {
        padding: 20px 0;
    }

    /* .sm-stats-row {
        grid-template-columns: 1fr;
    } */

    .sm-stat-box h3 {
        font-size: 32px;
    }

    .sm-cta-section {
    padding: 50px 0;
    background: #f3f7fd;
}



}




/* CTA Section */
.sm-cta-section {
    padding: 90px 0;
    background: #f3f7fd;
}

.sm-cta-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #fbf3e4, #f7ecd6);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Image */
.sm-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.sm-cta-content {
    padding: 60px 50px;
}

.sm-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 15px;
}

.sm-cta-title span {
    color: #9a7b3f;
}

.sm-cta-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

/* CTA Action */
.sm-cta-action {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sm-cta-call {
    border-left: 3px solid #9a7b3f;
    padding-left: 15px;
}

.sm-cta-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 5px;
}

.sm-cta-phone {
    font-size: 22px;
    font-weight: 700;
    color: #9a7b3f;
    text-decoration: none;
}

.sm-cta-btn {
    background: #9a7b3f;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.sm-cta-btn:hover {
    background: #6f5527;
}

/* Responsive */
@media (max-width: 992px) {
    .sm-cta-wrapper {
        grid-template-columns: 1fr;
    }

    .sm-cta-content {
        padding: 50px 35px;
        text-align: center;
    }

    .sm-cta-action {
        justify-content: center;
    }

    .sm-cta-call {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .sm-cta-title {
        font-size: 30px;
    }

    .sm-cta-subtitle {
        font-size: 15px;
    }

    .sm-cta-content {
        padding: 20px 15px;
    }

.flat-img-with-text .content-right {
    padding: 0px 10px;
    }
    .box-title {

    margin-top: 30px !important;
}

.flat-property-box .archive-top {
    margin-bottom: 22px !important;
    padding-bottom: 22px !important;
    border-bottom: 1px solid #e4e4e4;
}



}




/* Contact Section */
.sm-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4ec, #ffffff);
}

.sm-contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Info */
.sm-contact-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #9a7b3f;
    margin-bottom: 12px;
    display: inline-block;
}

.sm-contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sm-contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.sm-contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.sm-contact-item span {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.sm-contact-item a {
    font-size: 18px;
    font-weight: 600;
    color: #9a7b3f;
    text-decoration: none;
}

/* Form */
.sm-contact-form {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.sm-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
}

.sm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.sm-contact-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.sm-contact-form input:focus {
    outline: none;
    border-color: #9a7b3f;
}

.sm-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.sm-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.sm-radio-group label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.sm-submit-btn {
    width: 100%;
    padding: 16px;
    background: #9a7b3f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.sm-submit-btn:hover {
    background: #6f5527;
}

.sm-form-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .sm-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sm-contact-title {
        font-size: 32px;
    }

    .sm-contact-details {
        justify-content: center;
    }

    .sm-contact-info {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .sm-form-row {
        grid-template-columns: 1fr;
    }

    .sm-contact-form {
        padding: 35px 25px;
    }

    .sm-contact-title {
        font-size: 28px;
    }
}


.breadcrum{
    padding-top: 130px;
    padding-bottom: 50px;
    text-align: center;
    background-image: url(../images/sm/breadcrum.png);
}

.breadcrum h3{
    color: white;
}


/* About Hero */
.sm-about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9f3e7, #ffffff);
    text-align: center;
}

.sm-about-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.sm-about-hero p {
    font-size: 17px;
    color: #4b5563;
}

/* Common */
.sm-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #9a7b3f;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

/* Company Section */
.sm-about-section {
    padding: 90px 0;
}

.sm-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sm-about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sm-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.sm-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Experience */
.sm-experience-section {
    padding: 90px 0;
    background: #f8f8f8;
    text-align: center;
}

.sm-experience-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.sm-experience-header p {
    max-width: 700px;
    margin: auto;
    color: #4b5563;
}

.sm-experience-stats {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.sm-stat h3 {
    font-size: 40px;
    color: #9a7b3f;
}

.sm-stat p {
    font-size: 14px;
}

/* Values */
.sm-values-section {
    padding: 90px 0;
}

.sm-values-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.sm-value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.sm-value-card h4 {
    margin-bottom: 10px;
}

/* Credibility */
.sm-credibility-section {
    padding: 90px 0;
    background: #f9f3e7;
}

.sm-credibility-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.sm-credibility-box ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.sm-credibility-box li {
    margin: 8px 0;
    font-size: 15px;
}

/* CTA */
.sm-about-cta {
    padding: 80px 0;
    text-align: center;
}

.sm-btn {
    display: inline-block;
    margin-top: 20px;
    background: #9a7b3f;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .sm-about-grid {
        grid-template-columns: 1fr;
    }

    .sm-experience-stats,
    .sm-values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .sm-experience-stats,
    .sm-values-grid {
        grid-template-columns: 1fr;
    }

    .sm-about-hero h1 {
        font-size: 27px;
    }
    .sm-about-section {
    padding: 30px 0 !important;
}

.sm-about-content h2 {
    line-height: 1.24;
    font-size: 26px;
    margin-bottom: 20px;
}
.sm-experience-header h2 {
    font-size: 24px !important;
    line-height: 1.24 !important;
    margin-bottom: 15px;
}
    h2 {
        font-size: 27px !important;
        line-height: 1.24 !important;
    }
    .sm-vision-grid {
    gap: 12px !important;
}
.sm-usp-item {
    padding: 16px !important;
}

.footer .content-footer-bottom .menu-bottom a {
    color: #a3abb0;
    font-size: 11px !important;
}



}



.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  line-height: 1;
}



/* =========================
   Vision & USP Section
========================= */

.sm-vision-usp {
    position: relative;
    /* background: linear-gradient(135deg, #0b1c33, #102a4d); */
    padding: 100px 0 140px;
    color: #000000;
    overflow: hidden;
}

.sm-section-header {
    max-width: 720px;
    margin-bottom: 70px;
}

.sm-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sm-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.sm-title span {
    color: #d4af37;
}

.sm-desc {
    margin-top: 16px;
    font-size: 16px;
    color: #424141;
}

/* Grid */
.sm-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}

/* Vision Card */
.sm-vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.sm-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f1d27a);
    color: #0b1c33;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sm-vision-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.sm-vision-card p {
    color: #424242;
    line-height: 1.7;
}

/* USP Cards */
.sm-usp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sm-usp-item {
    background: #ffffff;
    color: #0b1c33;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sm-usp-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sm-usp-number {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
}

.sm-usp-item h5 {
    margin: 12px 0 8px;
    font-size: 18px;
}

.sm-usp-item p {
    font-size: 14px;
    color: #4a5a70;
    line-height: 1.6;
}

/* Decorative Wave */
.sm-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .sm-vision-grid {
        grid-template-columns: 1fr;
    }

    .sm-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .sm-vision-usp {
        padding: 80px 0 120px;
    }

    .sm-usp-cards {
        grid-template-columns: 1fr;
    }
}



/* =========================
   FAQ PAGE
========================= */

.sm-faq-page {
    padding: 80px 0;
}

.sm-faq-intro {
    max-width: 720px;
    margin-bottom: 50px;
}

.sm-faq-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.sm-faq-intro p {
    color: #6b7280;
    line-height: 1.6;
}

.sm-faq-group {
    margin-bottom: 50px;
}

.sm-faq-group-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0b1c33;
}

.sm-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.sm-faq-question {
    width: 100%;
    background: #f9fafb;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.sm-faq-answer {
    display: none;
    padding: 18px 20px;
    background: #ffffff;
    color: #4b5563;
    line-height: 1.6;
}

.sm-faq-item.active .sm-faq-answer {
    display: block;
}
/* =========================
   Gallery Page
========================= */

.sm-gallery-page {
    padding: 80px 0;
}

.sm-gallery-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.sm-gallery-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.sm-gallery-header p {
    color: #6b7280;
    line-height: 1.6;
}

/* Filters */
.sm-gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0b1c33;
    color: #fff;
    border-color: #0b1c33;
}

/* Grid */
.sm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sm-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.sm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sm-gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox */
.sm-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sm-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.sm-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .sm-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sm-gallery-grid {
        grid-template-columns: 1fr;
    }
}
