/* ===== Footer Main ===== */
.mantra-footer {
    background: #b79b7c;
    padding: 80px 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
}

.mantra-footer h3,
.mantra-footer h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Newsletter */
.mantra-newsletter input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #2c2c2c;
    background: transparent;
    padding: 10px 0;
    outline: none;
}

.mantra-newsletter {
    position: relative;
    max-width: 400px;
}

.mantra-send-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mantra-send-btn:hover {
    background: #2c2c2c;
    color: #fff;
}

/* Logo Section */
.mantra-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.mantra-logo img {
    width: 70px;
}

.mantra-logo h1 {
    font-size: 60px;
    color: #fff;
    margin: 0;
}

/* Contact */
.mantra-contact p {
    margin-bottom: 8px;
    color:#fff;
}

/* Info Links */
.mantra-links a {
    text-decoration: none;
    color: #2c2c2c;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.mantra-links a:hover {
    padding-left: 5px;
}

/* Social Icons */
.mantra-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #2c2c2c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    color: #2c2c2c;
}

.mantra-social a:hover {
    background: #2c2c2c;
    color: #fff;
}

/* App Buttons */
.mantra-app img {
    height: 40px;
    margin-right: 10px;
}

/* Bottom Bar */
.mantra-bottom {
    border-top: 1px solid #2c2c2c;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
}

.mantra-bottom a {
    color: #2c2c2c;
    text-decoration: none;
    margin-left: 15px;
}

/* Scroll Top */
.mantra-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: #2c2c2c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Responsive */
@media(max-width:768px){
    .mantra-logo h1{
        font-size: 40px;
    }
}



/* ===== SECTION ===== */
.sp2-section {
       padding: 150px 0px;
    background: #f5f1ef;
}

/* fixed width for accuracy */
.sp2-container {
    width: 1180px;
    margin: auto;
}

/* ===== TITLE ===== */
.sp2-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Montserrat-Regular';
    line-height: 65px;
    color:#8a735a;
}

/* ===== LOGOS ===== */
.sp2-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    margin-bottom: 25px;
}

.sp2-logos img {
    height: 55px;
    object-fit: contain;
}

/* ===== DESCRIPTION ===== */
.sp2-desc {
   text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 25px;
}

/* ===== FORM BOX ===== */
.sp2-form-box {
    border: 1px solid #cbb89b;
    padding: 45px 50px;
}

/* FORM TITLE */
.sp2-form-title {
    font-size: 34px;
    margin-bottom: 20px;
    line-height: 50px;
    font-family: 'Montserrat-Regular';
}

/* ===== INPUT ===== */
.sp2-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #8a785c;
    background: transparent;
    padding: 10px 2px;
    font-size: 15px;
    outline: none;
    color: #2a1e1e;
}

.sp2-input::placeholder {
    color: #8a785c;
    opacity: 1;
}

/* ===== PHONE ===== */
.sp2-phone {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #8a735a;
}

.sp2-code {
    background: #f9f4f4;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.sp2-code img {
    width: 18px;
}

.sp2-phone input {
    border: none;
    outline: none;
    padding: 10px;
    background: transparent;
    flex: 1;
}

.sp2-phone input::placeholder {
    color: #8a785c;
}

/* ===== SELECT ===== */
.sp2-select {
    position: relative;
}

.sp2-select select {
    appearance: none;
}

.sp2-select:after {
    content: "▾";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* ===== BUTTON ===== */
.sp2-btn {
      background: #8a735a;
    color: #fff;
    border: none;
    padding: 9px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    white-space: nowrap;

}

.sp2-btn-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sp2-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .sp2-logos {
        flex-direction: column;
        gap: 20px;
    }

    .sp2-btn-wrap {
        justify-content: flex-start;
        margin-top: 20px;
    }
}



/* ===== SECTION ===== */
.sp3-section {
    padding: 120px 0px;
    background: #f5f1ef;
}

/* fixed container like design */
.sp3-container {
    margin: auto;
}

/* ===== TOP SMALL TITLE ===== */
.sp3-topbar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sp3-topbar span {
        font-size: 13px;
    letter-spacing: 2px;
    color: #000000;
    font-family: 'Montserrat-Regular';
}

.sp3-line {
    flex: 1;
    height: 1px;
    background: #cfcfcf;
    max-width: 300px;
}

/* ===== MAIN CONTENT ===== */
.sp3-left h1 {
    font-size: 44px;
    line-height: 1.2;
    color: #4a3434;
    font-family: 'Montserrat-Regular' !important;
}

.sp3-left h2{
    font-size: 36px !important;
    line-height: 1.2;
    color: #4a3434;
    font-family: 'Montserrat-Regular' !important;
}

.sp3-right {
}

.sp3-right p {
       font-size: 16px;
    line-height: 27px;
    color: #000000;
}

/* ===== KNOW MORE ===== */
.sp3-link {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.sp3-link-text {
    letter-spacing: 1px;
    font-size: 13px;
    color: #4a3434;
    font-weight: 500;
    font-family: 'Montserrat-Regular';
}

.sp3-circle {
    width: 42px;
    height: 42px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp3-circle::after {
    content: "→";
    font-size: 18px;
    color: #4a3434;
}

/* ===== IMAGE ===== */
.sp3-image-wrap {
    margin-top: 40px;
}

.sp3-image-wrap img {
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sp3-container {
        width: 95%;
    }
}

@media (max-width: 768px) {

    .sp3-left h1 {
        font-size: 40px;
    }

    .sp3-right {
        margin-top: 20px;
    }

    .sp3-image-wrap img {
        height: 250px;
    }
}



/* ===== SECTION ===== */
.sp4-section {
    padding: 120px 0px;
    text-align: center;
}

/* fixed width */
.sp4-container {
    margin: auto;
}

/* ===== TITLE ===== */
.sp4-title {
        font-family: 'Montserrat-Regular' !important;
    font-size: 42px;
    font-weight: 300;
    color: #8a735a;
    margin-bottom: 15px;
}

/* ===== SUBTITLE ===== */
.sp4-subtitle {
    font-family: 'Montserrat-Regular' !important;
    font-size: 24px;
    color: #b19a80;
    margin-bottom: 35px;
}

/* ===== DESCRIPTION ===== */
.sp4-desc {
        font-family: 'Montserrat-Regular' !important;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 25px;
    /* max-width: 1000px; */
    margin: 0 auto 20px;
}

/* ===== READ MORE ===== */
.sp4-readmore {
     font-size: 11px;
    letter-spacing: 1px;
    color: #000;
    display: inline-block;
    border-bottom: 1px solid #000;
    padding-bottom: 0;
    margin-bottom: 50px;
    text-decoration: none;
    line-height: 17px;
    font-family: 'Montserrat-Regular';
    font-weight: 600;
}

/* ===== DIVIDER ===== */
.sp4-divider {
    height: 1px;
    background: #cfcfcf;
    margin: 40px 0 40px;
}

/* ===== STATS ===== */
.sp4-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.sp4-stat h3 {
    font-family: 'Montserrat-Regular';
    font-size: 40px;
    color: #8a735a;
    margin-bottom: 10px;
    line-height: 45px;
    font-weight: 200;

}

.sp4-stat p {
       font-size: 12px;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 600;
}

/* ===== BOTTOM LINE ===== */
.sp4-bottom-line {
    height: 1px;
    background: #cfcfcf;
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sp4-container {
        width: 95%;
    }
}

@media (max-width: 768px) {

    .sp4-title {
        font-size: 32px;
    }

    .sp4-subtitle {
        font-size: 18px;
    }

    .sp4-stats {
        flex-direction: column;
        gap: 25px;
    }
}


/* ===== Section ===== */
.who-section {
    background: #efefef;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

/* Left Big Text */
.who-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    color: #2c2c2c;
}

/* Center Oval Image */
.who-img-wrap {
    display: flex;
    justify-content: center;
}

.who-img {
    width: 260px;
    height: 360px;
    object-fit: cover;
}

/* Right Content */
.who-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.who-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Bottom small lines */
.who-lines {
    margin-top: 20px;
}

.who-lines span {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #333;
    margin-right: 10px;
}

/* Responsive */
@media(max-width:992px){
    .who-title {
        font-size: 48px;
        text-align: center;
        margin-bottom: 30px;
    }

    .who-content {
        text-align: center;
        margin-top: 30px;
    }
}


/* ===== Section ===== */
.zen-section {
    background: #f3f3f3;
    font-family: 'Montserrat-Regular';
    color: #333;
    max-width: 420px;
}

/* Logo + Title */
.zen-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zen-brand img {
    width: 60px;
}

.zen-brand h1 {
    font-family: 'Montserrat-Regular';
    font-size: 42px;
    margin: 0;
}

/* Text */
.zen-desc {
   margin-top: 10px;
    line-height: 21px;
    font-size: 15px;
    color: #000;
}

/* Buttons */
.zen-btn-wrap {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.zen-btn {
    border: 1px solid #333;
    padding: 7px 25px;
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.zen-btn:hover {
    background: #333;
    color: #fff;
}

/* Divider */
.zen-divider {
    border-top: 1px solid #c7a98b;
    margin: 20px 0;
}

/* Contact */
.zen-contact h2 {
    font-family: 'Montserrat-Regular';
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 45px;
    color:#8a735a;
    
}
.zen-contact-item span{
       font-size: 15px;
    line-height: 24px;
}

.zen-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.zen-contact-item i {
       font-size: 19px;
    color:#8a735a;
    margin-top: 3px;
}

/* Social */
.zen-social {
    display: flex;
    gap: 15px;
}

.zen-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.zen-social a:hover {
    background: #c7a98b;
}

.logo-2 img{
    width:75px;
}


/* Responsive */
@media(max-width:400px){
    .zen-section {
        padding: 40px 15px;
    }
}


.story-section {
    text-align: center;
    padding: 120px 20px;
        /* background: #f5f1ef; */
            background-repeat: no-repeat !important;
    background-position-x: right !important;
    background-position-y: bottom !important;

        background:#f5f1ef url('../imz/team2-bg-patttarn.png');
}

.story-title {
    font-size: 28px;
    color: #7b6a58;
    margin-bottom: 50px;
        font-family: 'Montserrat-Regular';
            line-height: initial;

}


.story-img-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.story-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c8a97e;
    padding: 5px;
}

.story-line {
    width: 1px;
    height: 60px;
    background: #c8a97e;

    margin: 20px auto;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7b6a58;
    font-size: 12px;
    margin-bottom: 20px;
}

.listen-btn i {
    border: 1px solid #c8a97e;
    border-radius: 50%;
    padding: 8px;
    color: #c8a97e;
}

.story-desc {
       max-width: 820px;
    margin: auto;
    font-size: 16px;
    color: #000;
    line-height: 25px;
}

.story-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #7b6a58;
}

.story-footer span {
    border-left: 1px solid #c8a97e;
    padding-left: 15px;
}

.nav-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b6a58;
    cursor: pointer;
}

.explore-btn {
    font-weight: 600;
    border-bottom: 1px solid #000;
    cursor: pointer;
}



/* Card Wrapper */
.project-card-1 {
    background: #f5f1ef;
    padding: 15px;
    /* border: 1px solid #cfc7bb; */
    text-align: center;
    transition: 0.3s;
}

/* Image Frame */
.project-img {
    border: 4px solid #8b5a2b;
    /* padding: 10px; */
    background: #fff;
}

.project-img img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
}

/* Title */
.project-title {
   font-size: 22px;
    font-weight: 500;
    color: #00233d;
    margin-top: 20px;
    font-family: 'Montserrat-Regular';
    font-weight: 600;
    letter-spacing: 1px;
}

/* Location */
.location {
    font-size: 14px;
    color: #000;
    margin: 5px 0 15px;
}

.location i {
    color: red;
    margin-right: 5px;
}

/* Divider */
.divider {
    border-top: 1px solid #cfc7bb;
    margin: 10px 0;
}

/* Info Row */
.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Bottom Links */
.bottom-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.bottom-links a {
   text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Montserrat-Regular';
    font-weight: 600;
}

.enquiry {
    color: #8b6b1c;
}

.explore {
    color: #8b6b1c;
}

.explore::after {
    content: " ↗";
}
.new-p-sec{
    padding:120px 0px;
}

.project-card-1 {
    transition: all 0.4s ease;
}
.project-card-1:hover {
    transform: translateY(-10px);
}
.video-sec{
    margin-top: 35px;
}