.row{
    --bs-gutter-y: 1.5rem;
}

/* Vastu Banner */
.vastu-banner {
    background: linear-gradient(135deg, #6a4c93 0%, #3a1c71 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vastu-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/vastu-pattern.png') repeat;
    opacity: 0.1;
}

.vastu-banner-img {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.vastu-energy-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffd700;
    opacity: 0.7;
    animation: pulse 3s infinite;
}

.dot-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.dot-3 {
    top: 30%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Service Cards */
.vastu-service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.vastu-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: #3c1114;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3c1114;
    font-size: 24px;
}

/* Tips Cards */
.vastu-tip-card {
    display: flex;
    background: #e4c383ad;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    color: #693913;
    height: 100%;
}


.tip-number {
    width: 40px;
    height: 40px;
    background: #3c1114;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Buttons */
.btn-vastu-primary {
    background: #e4c383ad;
    color: #3c1114;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-vastu-primary:hover {
    background: #e6c200;
    color: #3c1114;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-vastu-outline {
    border: 2px solid #3c1114;
    color: #3c1114;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-vastu-outline:hover {
    background: #3c1114;
    color: #fff;
}


/* Vastu Doshas Section */
.vastu-doshas {
    background: #fff;
}

.dosha-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    transition: all 0.3s ease;
    border-left: 4px solid #3c1114;
}

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

.dosha-number {
    width: 50px;
    height: 50px;
    background: #3c1114;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.dosha-content h3 {
    color: #3c1114;
    margin-bottom: 15px;
}

.dosha-details p {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.dosha-details p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3c1114;
}

/* Consultation Process */
.consultation-process {
    position: relative;
    overflow: hidden;
}

.process-steps {
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: #3c1114;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e4c383ad;
    color: #3c1114;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #3c1114;
}

.step-content h4 {
    color: #3c1114;
    margin-bottom: 15px;
}

/* Custom Vastu Plan */
.custom-vastu-plan {
    background: #e4c383ad;
}

.divider-left {
    display: block;
    width: 80px;
    height: 2px;
    background: #3c1114;
    margin: 15px 0;
}

/* Office Vastu Banner */
.office-vastu-banner {
    background: linear-gradient(135deg, #26090b 0%, #3c1114 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* .office-vastu-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/office-pattern.png') repeat;
    opacity: 0.1;
} */

.office-energy-flow {
    position: relative;
    padding: 20px;
}

.energy-wave {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
}

.energy-wave-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.energy-wave-2 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    animation-delay: 1s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Office Vastu Content */
.office-vastu-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vastu-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-item i {
    width: 30px;
    height: 30px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #3c1114;
}

/* Office Vastu Features */
.office-vastu-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top-color: #3c1114d2;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #3c1114d2;
    font-size: 20px;
}

.feature-content h3 {
    color: #3c1114;
    margin-bottom: 10px;
    font-size: 18px;
}

/* CTA Section */
.office-vastu-cta {
    background: linear-gradient(135deg, #3c1114 0%, #2c1819 100%);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

.cta-text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-vastu-primary.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}


/* Why Choose VastuSure Section */
.why-vastusure {
    position: relative;
    overflow: hidden;
}

.vastu-advantages {
    position: relative;
    z-index: 2;
}

.advantage-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 76, 147, 0.05);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-bottom: 3px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: #3c1114;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3c1114;
    font-size: 30px;
    position: relative;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(106, 76, 147, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
}

.advantage-card h3 {
    color: #3c1114;
    margin-bottom: 15px;
    font-size: 20px;
}

.advantage-cta {
    background: linear-gradient(135deg, #3c1a1c 0%, #3c1114 100%);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.advantage-cta h3 {
    color: #fff;
    margin-bottom: 15px;
}

.advantage-cta .btn-vastu-primary {
    align-self: flex-start;
    margin-top: 20px;
}




/* Industrial Vastu - Redesigned */
.industrial-vastu-new {
    background-color: #fff1d55a;
    position: relative;
    overflow: hidden;
}

.section-intro .lead {
    color: #3c1114;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.vastu-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    margin-top: 60px;
}

.compass-rose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(106, 76, 147, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.compass-direction {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #3c1114;
}

.compass-direction:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); } /* N */
.compass-direction:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); } /* E */
.compass-direction:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); } /* S */
.compass-direction:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); } /* W */

.compass-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(106, 76, 147, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(106, 76, 147, 0.1);
}

.vastu-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-top: 3px solid #3c1114;
}

.vastu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3c1114;
    font-size: 24px;
}

.item-content h3 {
    color: #3c1114;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.item-content p {
    color: #666;
    margin-bottom: 15px;
}

.zone-badge {
    display: inline-block;
    background: rgba(106, 76, 147, 0.1);
    color: #3c1114;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.vastu-cta .btn-primary {
    background: #3c1114;
    border-color: #3c1114;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.vastu-cta .btn-primary:hover {
    background: #3c1114;
    border-color: #3c1114;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.3);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .vastu-grid-system {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vastu-grid-system {
        grid-template-columns: 1fr;
    }
}


/* Industrial Vastu Infographic */
.industrial-vastu-infographic {
    background-color: #f8f9fa;
}

.tip-item {
    display: flex;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: rgba(106, 76, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #3c1114;
    font-size: 20px;
    flex-shrink: 0;
}

.infographic-visual {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.zone-marker {
    position: absolute;
    cursor: pointer;
}

.marker-dot {
    width: 15px;
    height: 15px;
    background: #ff6b6b;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #ff6b6b;
}

.marker-label {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
    font-size: 14px;
}

/* Why Choose Section */
.why-vastusure-industries {
    position: relative;
}

.expertise-card {
    background: linear-gradient(135deg, #3c1114 0%, #3c1114 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.expertise-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #3c1114;
    line-height: 1;
}

.advantage-item {
    display: flex;
    margin-bottom: 20px;
}

.advantage-item i {
    color: #3c1114;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.cta-box {
    background: rgba(106, 76, 147, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3c1114;
}


/* Crystal Vastu Banner */
.crystal-vastu-banner {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner-crystal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://example.com/crystal-pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.crystal-vastu-banner .container {
    position: relative;
    z-index: 2;
}

.floating-crystals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.crystal {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.crystal-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crystal-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.crystal-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Crystal Remedies Section */
.crystal-remedies-section {
    background: #f9f9ff;
}

.crystal-remedy-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
}

.crystal-icon {
    width: 50px;
    height: 50px;
    background: #3c1114;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.crystal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.crystal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.crystal-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.crystal-image.citrine {
    background: linear-gradient(45deg, #f5d020 0%, #f53803 100%);
}

.crystal-image.amethyst {
    background: linear-gradient(45deg, #9d50bb 0%, #6e48aa 100%);
}

.crystal-image.quartz {
    background: linear-gradient(45deg, #e0e0e0 0%, #ffffff 100%);
}

.crystal-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    opacity: 0.6;
}

.crystal-content {
    padding: 25px;
    text-align: center;
}

.crystal-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.crystal-advice-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.consultation-cta {
    background: #f5f5ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Heading Styles */
.heading {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.font-light2 {
    font-weight: 300;
}

.font-weight-light {
    font-weight: 300;
}

.bottom30 {
    margin-bottom: 30px;
}