* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
         body {
            background: rgba(241, 214, 221, 0.57);
        }
         
        header {
            background: radial-gradient(circle,rgba(240, 230, 233, 1) 0%, rgba(232, 174, 232, 1) 100%);
            padding: 1.2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color:#433699;
        }
        
        nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
          .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-button {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            text-decoration:none;
        }

         button {
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            background: radial-gradient(circle,rgba(240, 235, 237, 1) 0%, rgba(131, 170, 230, 1) 100%);
            color: black;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
          /* Burger Menu */
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 28px;
            height: 4px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }
         
        .hero {
            background: url('2.jpg') no-repeat center center/cover;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(241, 214, 239, 0.57);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            color: black;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color:black;
        }

        .hero button {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            background: linear-gradient(0deg,rgba(218, 237, 237, 1) 0%, rgba(253, 187, 45, 1) 100%);
            color: black;
            font-size: 1.1rem;
            cursor: pointer;
            margin-left:300px;
        }
        .hero button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
         /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        section {
            margin-bottom: 4rem;
            padding-top: 1.5rem;
        }

        h2 {
            color: black;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            background: #3F1647;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        p{
            color: black;
            text-align: center;
        }
        /* Testimonials Section */
        .testimonials-grid {
            display: flex;
            flex-direction: rows;
            gap: 2rem;
        }

        .testimonial-card {
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            text-align: center;
            background: white;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
            color: black;
        }

        .testimonial-card h4 {
            font-weight: 500;
            color: black;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 2rem;
        }

        .img-card {
            background: white;
            border-radius: 12px;
            padding: .5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            text-align: center;
            
        }
         /* servicess Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 2rem;
        }

        .services-card {
            background: white;
            border-radius: 12px;
            padding: .5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            text-align: center;
            
        }

        .services-card p {
            color: black;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .services-card h3 {
            color: black;
            font-weight: 500;
        }
        .services-card img{
            object-fit: cover;
        }

        /* Locations Section */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }

        .location-btn {
            padding: 0.8rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            width: 100%;
            height: 50px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background: radial-gradient(circle,rgba(240, 235, 237, 1) 0%, rgba(131, 170, 230, 1) 100%);
            text-decoration:none;
        }

        .location-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
         /* FAQs Section */
        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            padding: 1.2rem;
            cursor: pointer;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            color: black;
        }

        .faq-question:hover {
            background: radial-gradient(circle,rgba(240, 230, 233, 1) 0%, rgba(232, 174, 232, 1) 100%);
        }

        .faq-answer {
            padding: 1.2rem;
            display: none;
            background: white;

        }

        .faq-answer.active {
            display: block;
        }
        /* Footer */
        footer {
            background: radial-gradient(circle,rgba(240, 230, 233, 1) 0%, rgba(232, 174, 232, 1) 100%);
            color: black;
            padding: 2.5rem 1.5rem;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
        }

        footer p {
            color: black;
        }
         /* Responsive Design */
        @media (max-width: 768px) {
         .hero-content{
            width: auto;

         }
         .services-grid {
            
            grid-template-columns: repeat(2,1fr);
            
        }

        .img-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 2rem;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(1,1fr);
            gap: 2rem;
        }
         .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: radial-gradient(circle,rgba(240, 230, 233, 1) 0%, rgba(232, 174, 232, 1) 100%);
                flex-direction: column;
                padding: 1.5rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 1.2rem;
                width: 100%;
            }

            .nav-buttons button {
                width: 100%;
                margin-left: 0;
                padding: 0.8rem;
                font-size: 1.1rem;
            }

            .burger {
                display: flex;
            }

            .burger.active .line1 {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            .locations-grid {
        grid-template-columns: repeat(2, 1fr);
 gap: 15px;
    width: 100%;
    padding: 15px;
            }
    .location-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 12px;
    border-radius: 40px;
  }
}

        @media (max-width: 480px) {
            .locations-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 15px;
    width: 100%;
    padding: 15px;
  }

.location-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 12px;
    border-radius: 40px;
  }
  .services-grid {
            
            grid-template-columns: repeat(1,1fr);
            
        }

        .img-grid {
            
            grid-template-columns: repeat(1,1fr);
            
        }  
   
}

        
        
        @media (max-width: 728px) {
    .hero-content {
        padding: 1rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero button {
        margin-left: 0;
        display: inline-block;
    }
    
}