/* Reset and Base Styles */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Font Families */
.nexa-bold {
    font-family: "Nexa Bold", Arial, sans-serif;
}

.nexa-light {
    font-family: "Nexa Light", Arial, sans-serif;
}

.metropolis-bold {
    font-family: "Metropolis Bold", Arial, sans-serif;
}

.metropolis-medium {
    font-family: "Metropolis Medium", Arial, sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.desktop-hero {
  display: none;
  width: 100%;
  height: auto;
}

.mobile-hero {
  display: none;
  width: 100%; /* changed from AUTO to 100% for responsiveness */
  height: 480px; /* fixed height for mobile */
  max-width: 100%;
  object-fit: cover; /* if these are images */
}

/* Desktop only (min-width > 600px) */
@media (min-width: 601px) {
  .desktop-hero { display: block; }
}

/* Mobile only (max-width ≤ 600px) */
@media (max-width: 600px) {
  .mobile-hero { display: block; }
}


/* Section Utilities */
.sec-t-10 { padding-top: 10px; }
.sec-t-30 { padding-top: 30px; }
.sec-t-40 { padding-top: 40px; }
.sec-t-50 { background: white; }

/* Typography */
.t-h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.t-h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.t2-h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #333;
}

.t-bold {
    font-weight: 700;
    color: #D5A769;
}

.dash-span {
    position: relative;
}

.dash-span img {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: auto;
}

/* Key Highlights Section - 3 cards per row */
.key-highlights-div {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.key-highlight-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 270px;
    max-width: 270px;
}

.key-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .key-highlights-div {
        padding: 50px 30px;
        gap: 25px;
    }
    .key-highlight-card {
        flex: 0 1 calc(33.333% - 25px);
        max-width: 300px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .key-highlights-div {
        padding: 40px 25px;
        gap: 20px;
    }
    .key-highlight-card {
        flex: 0 1 calc(50% - 20px);
        max-width: 350px;
        min-width: 250px;
    }
}

/* Large Mobile (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .key-highlights-div {
        padding: 30px 20px;
        gap: 15px;
    }
    .key-highlight-card {
        flex: 0 1 calc(50% - 15px);
        max-width: none;
        min-width: 200px;
        padding: 25px 15px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .key-highlights-div {
        padding: 20px 15px;
        gap: 15px;
    }
    .key-highlight-card {
        flex: 0 1 100%;
        max-width: none;
        min-width: auto;
        padding: 25px 20px;
        margin: 0 auto;
        width: 100%;
    }
    /* Reduce hover effect intensity on small screens */
    .key-highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
}

/* Investment Details Section - 4 cards per row */
.Inv-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.IN-IN-div,
.IN-IN-div1 {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 calc(25% - 20px);
    min-width: 220px;
    max-width: 280px;
}

.IN-IN-div:hover,
.IN-IN-div1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pppl img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.ppp {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
}

.ppp span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.ppp2 p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.ppp2 span {
    font-size: 18px;
    color: #D5A769;
    font-weight: 700;
}

.ppp3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.ppp3 span {
    color: #D5A769;
    font-weight: 700;
}

/* Investment Plans */
.inv {
    font-size: 28px;
    font-weight: 700;
    color: #D5A769;
    margin: 5px 0;
}

.inv span {
    color: #333;
}

/* Plan Buttons */
#mo-btn-18,
#mo-btn-30,
#mo-btn-vasai {
    display: inline-block;
    padding: 5px 30px;
    margin: 0 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    height: 30px;
    line-height: 20px;
}

#mo-btn-18:hover,
#mo-btn-30:hover,
#mo-btn-vasai:hover {
    transform: scale(1.05);
}

#mo-btn-18.active,
#mo-btn-30.active,
#mo-btn-vasai.active {
    background-color: #ccc;
}


.vl {
    border-left: 2px solid #D5A769;
    height: 50px;
    display: inline-block;
    margin: 0 20px;
}

/* Info Paragraphs */
.info-para2 {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.box-collapse {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.box-collapse.show {
    right: 0;
}

.title-box-d {
    padding: 20px;
    background: #D5A769;
    color: white;
    text-align: center;
}

.close-box-collapse {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.form-a {
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #D5A769;
    box-shadow: 0 0 0 2px rgba(213, 167, 105, 0.2);
}

.btn-a {
    background: #D5A769;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-a:hover {
    background: #c19856;
}

/* CTA Button */
.cl-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #D5A769;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cl-btn:hover {
    background: #c19856;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(213, 167, 105, 0.4);
}


/* Projects Section */
.projects-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 30px;
}

.project {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-10px);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project h2 {
    color: #D5A769;
    margin-bottom: 10px;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 30px;
}

.image-container {
    text-align: center;
    margin: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.image-container img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.image-text {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}



/* Utility Classes */
.text-center { text-align: center; }
.foo { /* Additional styling if needed */ }
.shake:hover { animation: shake 0.5s; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.vert-move {
    animation: verticalMove 2s ease-in-out infinite;
}

@keyframes verticalMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .left-content h2 {
        font-size: 2.5rem;
    }
    
    .t-h2, .t2-h2 {
        font-size: 2rem;
    }
    
    .t-h3 {
        font-size: 1.5rem;
    }
    
    .key-highlights-div {
        flex-direction: column;
        align-items: center;
    }
    
    .key-highlight-card {
        width: 90%;
        max-width: none;
        flex: none;
    }
    
    .Inv-div {
        flex-direction: column;
        align-items: center;
    }
    
    .IN-IN-div,
    .IN-IN-div1 {
        width: 90%;
        max-width: none;
        flex: none;
    }
    
    .projects-section {
        flex-direction: column;
        align-items: center;
    }
    
    .image-section {
        flex-direction: column;
        align-items: center;
    }
    
    .box-collapse {
        width: 100vw;
        right: -100vw;
    }
    
    #mo-btn-18,
    #mo-btn-30,
    #mo-btn-vasai {
        display: block;
        margin: 10px auto;
    }
    
    .vl {
        display: none;
    }
}

/* Responsive adjustments for Key Highlights (3 cards per row) */
@media (max-width: 992px) {
    .key-highlight-card {
        flex: 0 1 calc(50% - 20px);
    }
}

/* Responsive adjustments for Investment Details (4 cards per row) */
@media (max-width: 992px) {
    .IN-IN-div,
    .IN-IN-div1 {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .main-banner {
        padding: 120px 0 50px;
    }
    
    .left-content h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 10px;
    }
}