/* HEADER STYLE */

body{
    font-family: Arial, Helvetica, sans-serif;
}

/* FLOATING HEADER */

.top-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px 0;
    border-bottom: none;
    z-index: 999;
}

/* Logo */
.logo img{
    height: 55px;
}

/* Contact Section */
.contact-info{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-link{
    text-decoration: none;
    color: #fff; /* white so it shows on banner */
    font-weight: 500;
    transition: 0.3s;
    font-size: 18px;
}

.contact-link i{
    color: #ebd5c0;
    margin-right: 6px;
    font-size: 18px;
}

.contact-link:hover{
    color: #ebd5c0;
}
/* HERO SECTION */

.hero-section{
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../image/banner.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    padding-top: 120px;
}

.hero-title{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fffaf6;
}

.hero-subtitle{
    font-size: 18px;
    
    margin-bottom: 15px;
   
    color: #f1f1f1;
}

.hero-description{
    font-size: 18px;
  
 
    color: #dcdcdc;
}

/* CTA BUTTON */

.cta-btn{
    background-color: #9AD14B; /* Forest Green */
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    margin: auto;
    text-align: center;
    max-width: 200px;
    /* Slight Shadow */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover Effect */
.cta-btn:hover{
    background-color: #9AD14B;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

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

    .hero-section{
        height: auto;
        padding: 120px 10px 40px;
        text-align: center;
    }

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

    .hero-subtitle{
        font-size: 16px;
    }
     .hero-description{
        font-size: 16px;
    }
}

/* ENQUIRY FORM */

.enquiry-form{
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-heading{
    font-weight: 700;
    color: #ebd5c0;
}

.form-control{
    height: 35px;
    border-radius: 4px;
}

textarea.form-control{
    height: auto;
}

.form-control:focus{
    border-color: #ebd5c0;
    box-shadow: 0 0 0 0.2rem rgba(230,126,34,0.2);
}

/* Submit Button */
.form-btn{
    background-color: #ebd5c0;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.form-btn:hover{
    background-color: #cf711f;
    color: #fff;
}

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

    .enquiry-form{
        margin-top: 0px;
        padding: 25px;
    }

}

/* LAND SECTION */

.land-section{
    background: #f8f8f8;
    padding: 50px 0;   /* pehle 90px tha – ab kam kar diya */
}

/* Heading */

.section-heading{
    margin-bottom: 25px;  /* gap kam */
}

.section-heading h2{
    font-size: 44px;
    font-weight: 700;
    color: #111;
    text-align: center;
}

.section-heading h2 span{
    color: #92735C;
}

.heading-line{
    width: 60px;   /* thoda compact */
    height: 3px;
    background: #ebd5c0;
    margin: 15px auto 0;
}

/* Paragraph Styling */

@media  screen and (max-width:768px) {
    .who-we-are p {
    font-size: 16px!important;
    line-height: 1.5!important;
    text-align: center!important;
    color: #555;
}
.land-section p{
    font-size: 16px!important;
    line-height: 1.7!important;
    color: #555;
    margin-bottom: 15px;  /* gap kam */
    text-align: center;   /* FULL CENTER TEXT */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
}

.land-section p{
    font-size: 17px;
    /* line-height: 1.7; */
    color: #555;
    margin-bottom: 10px;  /* gap kam */
    text-align: center;   /* FULL CENTER TEXT */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */

@media(max-width:768px){

    .section-heading h2{
        font-size: 30px!important;
        text-align: center!important;
    }

    .land-section{
        padding: 45px 0px;
    }
    .who-we-are{
        padding: 45px 0px!important;
    }

}

/* WHO WE ARE SECTION */

.who-we-are{
    background: #ffffff;
    padding: 50px 0;
}

/* Fix Heading Alignment */

.who-we-are .section-heading{
    text-align: left !important;
}

.who-we-are h2{
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.who-we-are h2 span{
    color: #92735C;
}

/* Underline left aligned */

.who-we-are .heading-line{
    width: 70px;
    height: 3px;
    background: #ebd5c0;
    margin-top: 15px;
    margin-left: 0;   /* center wali margin hata di */
}
/* Paragraph */
.who-we-are p{
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Portfolio List */

.portfolio-list{
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.portfolio-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #444;
}

/* Check Icon Round Border */

.check-icon{
    width: 24px;
    height: 24px;
    border: 2px solid #9AD14B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i{
    color: #9AD14B;
    font-size: 14px;
}


/* IMAGE COLLAGE (2 IMAGES) */

.image-wrapper{
    position: relative;
}

.main-img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    height: 400px!important;
    object-fit: cover;
}

.small-img{
    width: 60%;
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 10px;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* Responsive */

@media(max-width:768px){

    .small-img{
        position: static;
        width: 100%;
        margin-top: 15px;
        border: none;
    }

}

/* PHILOSOPHY SECTION */

.philosophy-section{
    position: relative;
   
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../image/bg.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 20px;
}

/* Heading */

.philosophy-section h2{
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.philosophy-section h2 span{
    color: #ebd5c0;
}

/* Paragraph */

.philosophy-section p{
    font-size: 18px;
    line-height: 1.7;
    color: #f1f1f1;
    margin-bottom: 8px;
}

/* Button */

.philosophy-btn{
    position: relative;
    overflow: hidden;
    background-color: #9AD14B;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.philosophy-btn:hover{
    color: #fff;
    background-color: #9AD14B;
}


/* Responsive */

@media(max-width:768px){

    .philosophy-section{
        background-attachment: scroll; /* mobile parallax off */
        padding: 50px 10px;
    }

    .philosophy-section h2{
        font-size: 30px;
    }

    .philosophy-section p{
        font-size: 16px;
        line-height: 1.5;
    }

}

/* FRAMEWORK SECTION */

.framework-section{
    background: #f8f8f8;
    padding: 50px 0;
}

/* Heading */

.framework-heading{
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.framework-heading span{
    color: #92735C;
}

.heading-line{
    width: 70px;
    height: 3px;
    background: #ebd5c0;
    margin-top: 15px;
}

/* Cards */

.framework-card{
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.3s ease;
    border: 2px solid #92735C;
}

.framework-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.framework-number{
    font-size: 42px;
    font-weight: 700;
    color: #9AD14B;
}

.framework-card h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.framework-card p{
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Bottom Text */

.framework-footer{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Responsive */

@media(max-width:768px){

    .framework-heading{
        font-size: 25px;
    }

    .framework-section{
        padding: 45px 0px;
    }
    .strategy-image{
        margin-bottom: 20px;
    }
    .strategy-content p, .design-content p{
        font-size: 15px!important;
    }

}

/* STRATEGY + DESIGN COMMON */

.strategy-section,
.design-section{
    padding: 50px 0;
}

/* Alternate Background */
.design-section{
    background: #f8f8f8;
}

/* Headings */

.strategy-content h2,
.design-content h2{
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.strategy-content h2 span,
.design-content h2 span{
    color: #92735C;
}

.heading-line{
    width: 60px;
    height: 3px;
    background: #ebd5c0;
    margin: 15px 0 25px 0;
}

/* Paragraph */

.strategy-content p,
.design-content p{
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

/* Images */

.strategy-image img,
.design-image img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.strategy-image img:hover,
.design-image img:hover{
    transform: scale(1.03);
}

/* Responsive */

@media(max-width:768px){

    .strategy-section,
    .design-section{
        padding: 45px 0px!important;
    }

    .strategy-content h2,
    .design-content h2{
        font-size: 25px;
    }

}

/* GOVERNANCE SECTION */

.governance-section{
    background: #ffffff;
    padding: 50px 0;
}

.governance-section h2{
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.governance-section h2 span{
    color: #92735C;
}

/* Paragraph */
.governance-section p{
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Highlight Card */

.governance-card{
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid #92735C;
}

.governance-card h5{
    font-weight: 600;
    color: #111;
}

/* List */

.governance-list{
    list-style: none;
    padding: 0;
}

.governance-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
}

.governance-list i{
    color: #9AD14B;
    font-size: 14px;
}

/* Responsive */

@media(max-width:768px){

    .governance-section{
        padding: 45px 0px;
    }

    .governance-section h2{
        font-size: 28px!important;
    }

}

/* PARTNERSHIP SECTION */

.partnership-section{
    background: #f8f8f8;
    padding: 50px 0;
}

.section-title{
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.section-title span{
    color: #92735C;
}

/* Card */

.partner-card{
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 12px;
    transition: 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 2px solid #92735C;
}

.partner-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Icon Box */

.icon-box{
    width: 70px;
    height: 70px;
    background: #9AD14B; /* light orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i{
    font-size: 26px;
    color: #ffffff;
}

/* Text */

.partner-card h5{
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.partner-card p{
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */

@media(max-width:768px){

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

    .partnership-section{
        padding: 45px 0px;
    }

}
/* CLOSING SECTION */

.closing-section{
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../image/bg.webp') 
                no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 20px;
}

/* Heading */

.closing-section h2{
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.closing-section h2 span{
    color: #ebd5c0;
}

/* Paragraph */

.closing-section p{
    font-size: 18px;
    color: #f1f1f1;
    margin-bottom: 7px;
}

/* Responsive */

@media(max-width:768px){

    .closing-section{
        background-attachment: scroll; /* smoother mobile */
        padding: 50px 10px;
    }

    .closing-section h2{
        font-size: 28px;
    }

    .closing-section p{
        font-size: 16px;
    }

    #contact-form{
        margin-top: 25px;
    }

}

/* CONTACT SECTION */

.contact-section{
    background: #f9f9f9;
}



/* Form */

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

.form-control:focus{
    border-color: #ebd5c0;
    box-shadow: none;
}

/* Footer */

.footer{
    background: #111;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.contact-card{
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 2px solid #92735C;
}

.video-box{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.contact-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.contact-title{
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-item{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-box-contact{
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #9AD14B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}

.icon-box-contact i{
    color: #ffffff;
    font-size: 16px;
}

.contact-item:hover .icon-box-contact{
    background: #ebd5c0;
}

.contact-item:hover .icon-box-contact i{
    color: #fff;
}

.contact-text a{
    text-decoration: none;
    color: #333;
    line-height: 1.7;
    font-size: 14px;
}

.contact-text a:hover{
    color: #ebd5c0;
}

/* Social Icons */

.social-icons a{
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: #9AD14B;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230,126,34,0.4);
}

.footer p{
    margin-bottom: 0px;
}

/* Consent */
.form-check-label{
    font-size: 14px;
    color: #555;
}

/* Buttons Wrapper */
.form-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Send Button */
.send-btn{
    background: #0aa534;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.send-btn:hover{
    background: #088c2c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Reset Button */
.reset-btn{
    background: #777;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 500;
    transition: 0.3s ease;
}

.reset-btn:hover{
    background: #555;
}

.footer p a{
    color: #fff;
    text-decoration: none;
}

.footer p a:hover{
    color: #ebd5c0;
    text-decoration: none;
}

.footer .container{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}
/* Wrapper */
.floating-buttons{
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Style */
.floating-buttons a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    position: relative;
}

/* Call Button */
.float-call{
    background: #9AD14B;
}

/* WhatsApp Button */
.float-whatsapp{
    background: #25D366;
}

/* Hover Effect */
.floating-buttons a:hover{
    transform: translateY(-5px) scale(1.05);
}

/* Pulse Animation */
.floating-buttons a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse{
    0%{
        transform: scale(1);
        opacity: 0.6;
    }
    70%{
        transform: scale(1.6);
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

/* Mobile Size */
@media(max-width:768px){
    .floating-buttons a{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* MODAL BOX */

.luxury-modal-box{
border:2px solid #ebd5c0;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
overflow:hidden;
}

/* HEADER */

.luxury-modal-header{
background:#9AD14B;
color:#fff;
padding:18px 25px;
border:none;
}

.luxury-modal-title{
font-weight:600;
font-size:20px;
}

/* BODY */

.luxury-modal-body{
padding:30px;
background:#fff;
}

/* INPUT GROUP */

.luxury-field-group{
position:relative;
margin-bottom:18px;
}

.luxury-field-group i{
position:absolute;
left:14px;
top:14px;
color:#9AD14B;
font-size:16px;
}

/* INPUT */

.luxury-input{
padding:12px 12px 12px 40px;
border-radius:6px;
border:1px solid #ddd;
}

/* CHECKBOX */

.luxury-checkbox{
margin-bottom:18px;
font-size:14px;
}

/* SUBMIT BUTTON */

@media screen and (max-width:768px) {
    .main-img{
        height: auto!important;
    }
    .inner-breadcome h1 {
    font-size: 33px!important;
    font-weight: 700;
    color: #fff !important;
}
}

.inner-breadcome h1{
    font-size: 44px;
    font-weight: 700;
    color: #fff!important;
}

.inner-breadcome p{
    color: #9AD14B;
    font-size: 18px;
}

.inner-breadcome p span{
    color: #ffffff;
    font-size: 18px;
}

.inner-breadcome a{
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}


/* MAIN WRAPPER */
.terms-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* HEADING STYLES */
.terms-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #92735C;
}

.terms-date {
    font-size: 14px;
    margin-bottom: 20px;
}

.terms-company {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* SECTION STYLES */
.terms-section {
    margin-bottom: 25px;
}

.terms-heading {
    font-size: 22px;
    font-weight: 600;
    color: #92735C;
    margin-bottom: 10px;
}

/* LIST STYLES */
.terms-list {
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 8px;
}

/* DIVIDER */
.terms-divider {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .terms-main-title {
        font-size: 22px;
    }
    .terms-heading {
        font-size: 20px;
    }
    .terms-wrapper {
        padding: 15px;
    }
}