
:root {
   --primary-dark: #1a2a6c;
    --primary: #00b9e8;
    --accent: #ffffff;
}

    
    
    /* faq styles */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 17px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
        
        .faq-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .faq-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
        }
        
        .faq-header p {
            opacity: 0.9;
            position: relative;
        }
        
       .faq-container {
    padding: 30px;
    background: #f3f5f7;
}
        
        .faq {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .faq:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .faq-question {
            padding: 20px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        
        .faq-question::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 1px;
            background: #f0f0f0;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
            color: #6a11cb;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #f9f9f9;
            color: #555;
            line-height: 1.6;
        }
        
        .faq.active .faq-answer {
            max-height: 500px;
            padding: 20px;
        }
        
        .faq.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .contact-support {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            margin-top: 20px;
        }
        
        .contact-support a {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .contact-support a:hover {
            text-decoration: underline;
            gap: 10px;
        }
        
        @media (max-width: 600px) {
            .faq-header h1 {
                font-size: 2rem;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 15px;
            }
        }
        
        
        
           
        /*location page styles*/
    
        .benefit-item h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500 !important;
}
.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.text-center {
    text-align: center;
}
.justify-content-center {
    justify-content: center !important;
    align-items: center;
    display: flex;
}
@media only screen and (max-width: 650px) {
.benefits {
   
    color: white;
    padding: 40px 0px !important;
    border-radius: 12px;
}
.faq {
    margin-bottom: 7px;
}
.showroom::before {
    background: transparent !important;
}

.ptb-60 {
    padding-top: 40px;
    padding-bottom: 40px;
}
}
.hero-content, .showroom-content h2 {
    font-weight: 700;
    font-size: 3rem !important;
    color: #fff;
}
.color-white {
    color: #fff;
}
.feature, .certificate {
    margin-bottom: 15px;
}
.faq-container{
    padding: 5px;
}
.title {
    margin-bottom: 25px;
}



/* location page styles */


        
      .highlight-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00b9e8 100%);
    color: white;
    
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
        
        .highlight-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .feature, .certificate {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature:hover, .certificate:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .feature:hover::before {
            transform: scaleX(1);
        }
        
        .feature i, .certificate i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.4s ease;
        }
        
        .feature:hover i, .certificate:hover i {
            transform: scale(1.1);
            color: var(--primary-dark);
        }
        
    .benefits {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00b9e8 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
}
        
      .benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    height: 215px !important;
    margin: 10px 0px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
        
        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }
        
        .benefit-item:hover::before {
            opacity: 1;
        }
        
        .benefit-item i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent);
            transition: all 0.4s ease;
        }
        
        .benefit-item:hover i {
            transform: scale(1.1);
        }
        
        .about-image, .why-image {
    border-radius: 12px;
    overflow: hidden;
    padding: 20px 0px;
   
}
        .about-image img {
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        .about-image img, .why-image img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        
        .about-image:hover img, .why-image:hover img {
            transform: scale(1.05);
        }
        
        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .animate-on-scroll {
    opacity: 1;
    /* transform: translateY(30px); */
    transition: all 0.8s ease;
}
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
       
section.why-choose {
    padding: 60px 0px;
}

.highlight-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.certificates {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

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

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

.certificates-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    justify-content: space-between;
}

.certificate {
    flex: 0 0 19%;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    height: 200px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.certificate img {
    max-width: 80px;
    margin-bottom: 15px;
}

.certificate h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.certificate p {
    font-size: 14px;
    color: #666;
}

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


/* Responsive for mobile */
@media (max-width: 768px) {
    .certificate {
        flex: 0 0 100%;
    }
}
        
     