@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2d3436;
            --secondary: #1079b5;
            --accent: #1079b5;
            --light: #f5f6fa;
            --white: #ffffff;
            --gray: #636e72;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Raleway';
            line-height: 1.6;
            color: var(--primary);
            background-color: var(--light);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 1rem 2rem;
            font-weight: 700;
        }
        
        nav p  {
            text-align: center;
            padding: 1rem 1rem;
            margin-bottom: -0.5rem;
        }
        
        nav span  {
            color: var(--accent);
        }
        
        .mobile-br  {
            display: none;
        }
        
        @media screen and (max-width: 600px) {
            .mobile-br {
                    display: inline;
            }
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
            font-weight: 700;
            font-size: 24px;
        }

        nav a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent);
        }
        
        .service-links {
            text-decoration: none;
            color: var(--primary);
            font-weight: 400;
            transition: color 0.3s;
            text-align: center;
            content-align: center;
        }

        /* Header/Hero */
        header {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
            color: var(--white);
        }

        .logo-container {
            width: 200px;
            height: 200px;
            margin-bottom: 2rem;
        }

        .logo-container svg {
            width: 100%;
            height: 100%;
            fill: var(--white);
        }

        header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        header p {
            font-size: 1.25rem;
            max-width: 600px;
            opacity: 0.9;
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary);
        }

        /* Services */
        #services {
            background: var(--white);
        }
        
        .service-pop {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        
        .service-pop h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .service-pop ul {
            list-style: '\1F43E';
            margin-top: 1rem;
        }

        .service-pop li {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #ddd;
        }

        .service-pop li:last-child {
            border-bottom: none;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .service-card ul {
            list-style: '\1F43E';
            margin-top: 1rem;
        }

        .service-card li {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #ddd;
        }

        .service-card li:last-child {
            border-bottom: none;
        }
        /*
        .terms-conditions {
	    list-style: '\1F43E';
	    text-align: left;
	    margin: 10px;
	    padding-left: 1.2em;
	    padding-right: 1.2em;
	}
*/
        .price {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--accent);
            margin-top: 1rem;
        }

        /* Gallery */
        #gallery {
            background: var(--light);
        }

        .gallery-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .gallery-slide {
            display: none;
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .gallery-slide.active {
            display: flex;
        }

        .gallery-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .gallery-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-btn {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .gallery-btn:hover {
            background: #6a329f;
        }

        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray);
            cursor: pointer;
            transition: background 0.3s;
        }

        .gallery-dot.active {
            background: var(--accent);
        }

        /* Contact */
        #contact {
            background: var(--white);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #6a329f;
        }

        .recaptcha-notice {
            text-align: center;
            font-size: 0.875rem;
            color: var(--gray);
            margin-top: 1rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
            color: var(--white);
            text-align: center;
            padding: 2rem;
        }

        footer p {
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            section {
                padding: 3rem 1rem;
            }

            section h2 {
                font-size: 2rem;
            }

            nav ul {
                gap: 1rem;
            }

            .gallery-slide {
                height: 300px;
            }
        }