* {
  font-family: Inter;
}

/* new CSS */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd700;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Hides accidental overflow */
  width: 100%;
}


/* Language Toggle Styles */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Cultural Elements */
.mandala-bg {
    background-image: url('mandala-pattern.svg');
    opacity: 0.1;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Accessibility Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.scheme-section {
    /* background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('indian-flag-pattern.svg'); */
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.scheme-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    border: 2px solid #ff9933;
}

.benefit-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9933;
}

.scheme-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff9933;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.maintenance-plans .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.specifications {
    font-size: 0.9rem;
}

.badge {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* end */
.parallax {
    height: 100vh;
    background-image: url("../img/background.png");
  
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

.fw-400{
    font-weight: 400;
}

.fw-500{
    font-weight: 500;
}

.fw-600{
    font-weight: 600;
}

.fw-700{
    font-weight: 700;
}

.fw-800{
    font-weight: 800;
}

.fs-10{
    font-size: 10px
}

.fs-12{
    font-size: 12px
}

.fs-13{
    font-size: 13px
}

.fs-14{
    font-size: 14px
}

.fs-16{
    font-size: 16px
}

.fs-18{
    font-size: 18px
}

.fs-20{
    font-size: 20px
}

.fs-22{
    font-size: 22px
}

.fs-24{
    font-size: 24px
}

.fs-26{
    font-size: 26px
}

.fs-28{
    font-size: 28px
}

.fs-30{
    font-size: 30px
}

.br-10{
    border-radius: 10px;
}

.text-lightblue{
    color: #003973 !important;
}

.text-grey{
    color: #5C6972 !important;
}

.br-10{
    border-radius: 10px !important;
}

.br-20{
    border-radius: 20px !important;
}