:root {
    --delhi-primary-red: #d12c2c;
    --delhi-text-dark: #333;
}

/* Base Style for Google Icons */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

#delhi-virtual-office {
    padding: 80px 0;
    background: #f8fdfe;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.delhi-office-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.delhi-office-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* TRUST BADGE */
.delhi-office-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.delhi-google-icon-small {
    font-size: 18px !important;
    color: #2e7d32; /* Success Green */
}

/* TYPOGRAPHY */
.delhi-office-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.delhi-office-text-gradient {
    background: linear-gradient(45deg, var(--delhi-primary-red), #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delhi-office-description {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* AMENITIES */
.delhi-office-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.delhi-office-amenity-card {
    position: relative;
    flex: 1;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.delhi-office-amenity-icon {
    width: 50px;
    height: 50px;
    background: #fdf2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.delhi-office-amenity-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--delhi-primary-red);
    transition: 0.3s;
}

.delhi-amenity-title { font-size: 16px; font-weight: 700; margin: 0 0 5px 0; }
.delhi-amenity-tagline { font-size: 13px; color: #777; margin: 0; }

.delhi-office-amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 44, 44, 0.1);
}

.delhi-office-amenity-card:hover .delhi-office-amenity-icon {
    background: var(--delhi-primary-red);
}

.delhi-office-amenity-card:hover .delhi-office-amenity-icon .material-symbols-outlined {
    color: #fff;
}

/* BUTTONS */
.delhi-office-button-group {
    display: flex;
    gap: 20px;
}

.delhi-office-btn-primary {
    background: #000;
    color: #fff;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
}

.delhi-office-btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e0e0e0;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: 0.3s;
}

.delhi-office-btn-primary:hover {
    background: var(--delhi-primary-red);
    box-shadow: 0 10px 25px rgba(209, 44, 44, 0.3);
}

/* IMAGE COMPOSITION */
.delhi-office-image-stack { position: relative; }

.delhi-office-main-img-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.delhi-office-overlap-img-wrapper {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 60%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px;
    border-radius: 24px;
    border: 1px solid #fff;
}

.delhi-office-overlap-img-wrapper img {
    width: 100%;
    border-radius: 18px;
}

.delhi-office-glass-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ANIMATIONS */
@keyframes delhi-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.delhi-office-floating { animation: delhi-float 5s ease-in-out infinite; }
.delhi-office-floating-delayed { animation: delhi-float 5s ease-in-out infinite 2.5s; }

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .delhi-office-grid { grid-template-columns: 1fr; }
    .delhi-office-content { text-align: center; }
    .delhi-office-description { margin-left: auto; margin-right: auto; }
    .delhi-office-button-group { justify-content: center; flex-direction: column;padding:22px;}
    .delhi-office-trust-badge { margin: 0 auto 25px auto; }
}




/* --- LOCATION CARDS STYLES --- */
.virtual-locations-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.virtual-locations-header {
    text-align: center;
    margin-bottom: 50px;
}

.virtual-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    padding: 20px
}

.virtual-location-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
  
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
   
}

.virtual-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 109, 109, 0.08);
    border-color: var(--v-red);
}

/* Card Image Part */
.virtual-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.virtual-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.virtual-location-card:hover .virtual-card-image img {
    transform: scale(1.1);
}

.virtual-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--v-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Card Body (Flexbox for Left-Right layout) */
.virtual-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px;  
}

.virtual-card-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
   
}

.virtual-loc-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.virtual-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.virtual-card-features ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.virtual-card-features .material-symbols-outlined {
    font-size: 14px;
    color: var(--v-red);
}

/* Price Section */
.virtual-card-price {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.virtual-price-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
}

.virtual-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--v-red);
}

.virtual-period {
    font-size: 10px;
    color: #888;
}

/* Buttons */
.virtual-btn-quote {
    display: block;
    text-align: center;
    background: #f8f9fa;
    color: #000;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.virtual-btn-quote:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

re:hover {
    border-bottom-color: var(--v-red);
    gap: 15px;
}

/* RESPONSIVE GRID */
@media (max-width: 1200px) {
    .virtual-location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .virtual-location-grid { grid-template-columns: 1fr; }
    .virtual-card-flex { flex-direction: row; } /* Keep side-by-side on mobile */

}
/* ===== Simple Load More / Load Less Button ===== */

#toggleBtn {
  display: block;
  margin: 40px auto 0;
  padding: 12px 28px;

  font-size: 14px;
  font-weight: 500;
  color: #222;

  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;

  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

/* Subtle hover (desktop only) */
#toggleBtn:hover {
  background: #f7f7f7;
}

/* Icon */
#toggleBtn .material-symbols-outlined {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 6px;
  color: #555;
}

/* Mobile friendly */
@media (max-width: 480px) {
  #toggleBtn {
    width: calc(100% - 32px);
    margin: 32px 16px 0;
  }
}



/* --- Analysis Section Styles --- */
.analysis-chart-section { padding: 80px 0; background: #fff; }

.analysis-header { margin-bottom: 50px; text-align: left; }
.analysis-title { font-size: 42px; font-weight: 800; }
.text-red { color: var(--primary-red); }
.analysis-subtitle { color: #666; margin-top: 10px; }

.analysis-chart-wrapper {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.analysis-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid #f1f1f1;
}

.analysis-row:last-child { border-bottom: none; }

.analysis-row > div { padding: 25px 30px; display: flex; align-items: center; font-size: 15px; }

/* Header Row */
.analysis-head { background: #fafafa; font-weight: 800; color: #888; text-transform: uppercase; font-size: 12px !important; letter-spacing: 1px; }

/* Features Column */
.col-feat { gap: 15px; }
.col-feat .material-symbols-outlined { color: var(--text-dark); font-size: 24px; }
.col-feat strong { display: block; color: var(--text-dark); font-size: 16px; }
.col-feat small { color: #999; font-weight: 400; }

/* Virtual Office Advantage Column */
.col-v { 
    background: rgba(46, 125, 50, 0.03); 
    font-weight: 700; 
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
}
.text-success { color: #2e7d32; } /* Professional Green */
.status-dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; display: inline-block; }
.status-dot.green { background: #2e7d32; box-shadow: 0 0 10px rgba(46, 125, 50, 0.4); }

/* Physical Column */
.text-danger { color: var(--primary-red); font-weight: 600; }
.col-p { color: #777; }

/* --- Conclusion Verdict Card --- */
.verdict-card {
    margin-top: 50px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 40px;
    color: white;
    display: flex;
    gap: 30px;
    align-items: center;
}

.verdict-icon .material-symbols-outlined { font-size: 60px; color: var(--primary-red); }
.verdict-content h3 { font-size: 28px; margin-bottom: 15px; color: white; }
.verdict-content p { line-height: 1.7; opacity: 0.8; font-size: 15px; }
.verdict-footer { margin-top: 25px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.verdict-footer span strong { color: var(--primary-red); font-size: 18px; }

/* --- Mobile Fixes --- */
.mobile-only-label { display: none; }

@media (max-width: 768px) {
    .analysis-row { grid-template-columns: 1fr; }
    .analysis-head { display: none; }
    .analysis-row > div { padding: 15px 20px; border: none !important; }
    
    .col-feat { background: #f9fafb; border-bottom: 1px solid #eee !important; }
    .mobile-only-label { display: inline-block; width: 80px; font-size: 11px; text-transform: uppercase; font-weight: 800; opacity: 0.5; }
    
    .verdict-card { flex-direction: column; text-align: center; padding: 30px; }
    .verdict-footer { flex-direction: column; gap: 20px; }
}


/* --- DOCUMENTS SECTION STYLES --- */
.virtual-docs-section {
    padding: 80px 0;
    background: #f8fafc; /* Light blue-gray for contrast */
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.doc-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary-red);
}

.doc-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(209, 44, 44, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.doc-card-icon span {
    font-size: 32px;
    color: var(--primary-red);
}

.doc-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.doc-sub {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.doc-list li span {
    font-size: 18px;
    color: #2e7d32; /* Green for checkmarks */
}

/* Bottom Grid (Provided by us & Notes) */
.docs-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.provided-box, .notes-box {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 35px;
    color: white;
}

.provided-box h4, .notes-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 18px;
}

.provided-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provided-tags span {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
}

.notes-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.note-item strong {
    display: block;
    color: var(--primary-red);
    font-size: 14px;
    margin-bottom: 5px;
}

.note-item p {
    font-size: 12px;
    opacity: 0.7;
}

/* Mobile Fixes */
@media (max-width: 992px) {
    .docs-bottom-grid { grid-template-columns: 1fr; }
    .notes-flex { grid-template-columns: 1fr; gap: 15px; }
}








/* --- Document Requirements Styling --- */
.doc-classy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.doc-premium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.doc-list-simple {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.doc-list-simple li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
}

.doc-list-simple li::before {
    content: "check_circle";
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    color: var(--delhi-primary-red);
    margin-right: 10px;
}

.doc-witness-box {
    margin-top: auto;
    background: #fdf2f2;
    padding: 15px;
    border-radius: 12px;
}

.doc-witness-box p {
    font-size: 12px;
    margin: 0;
    color: #444;
    line-height: 1.5;
}

.company-brief-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.brief-icon {
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brief-icon .material-symbols-outlined {
    color: #fff;
    font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .doc-classy-grid {
        grid-template-columns: 1fr;
    }
    
    .delhi-office-title {
        font-size: 36px;
    }

    .company-brief-card {
        flex-direction: column;
        text-align: center;
    }
}






