@charset "UTF-8";
/* CSS Document */

:root {
            --primary: #2a4fb9;
            --secondary: #cd4f2d;
            --tertiary: #e6aa29;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            padding-top: 80px; /* Space for fixed header */
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.75rem; }
        
        p {
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #1d3d9c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #b34426;
        }
        
        .btn-tertiary {
            background-color: var(--tertiary);
        }
        
        .btn-tertiary:hover {
            background-color: #d6971f;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--tertiary);
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1547891654-e66ed7ebb968?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: -80px;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

		.about-content a {
            color: inherit;
        }

		.about-content h4 {
			margin: 20px 0 10px;
		}

		.about-cta {
			font-weight: 600;
			color: var(--primary) !important;
			text-decoration: none;
		}

		.about-cta:hover {
			text-decoration: underline;
		}
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
        }
        
        .benefit-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .benefit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-header {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }

		.service-header h3 {
            font-size: 1.7rem;
			margin-bottom: 8px;
        }
        
        .service-body {
            padding: 30px;
        }
        
        .service-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .service-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: var(--tertiary);
            margin-right: 10px;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-align: left;
            margin: 20px 0 20px 25px;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(to bottom, var(--primary), #1d3d9c);
            color: white;
        }
        
        .testimonials .section-title:after {
            background: var(--tertiary);
        }
        
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            text-align: center;
            padding: 30px;
            display: none;
        }
        
        .testimonial.active {
            display: block;
        }
        
        .testimonial-content {
            font-style: italic;
            font-size: 1.25rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--tertiary);
        }
        
        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-controls button {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            margin: 0 10px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .testimonial-controls button:hover {
            opacity: 1;
            color: var(--tertiary);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: white;
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .faq-question.active:after {
            content: '-';
        }
        
        .faq-answer {
            background: #f9f9f9;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-question.active + .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), #1d3d9c);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta .btn {
            background-color: var(--tertiary);
            font-size: 1.1rem;
            padding: 15px 40px;
        }
        
        .cta .btn:hover {
            background-color: #d6971f;
        }
        
        .urgency {
            display: block;
            color: var(--secondary);
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-logo span {
            color: var(--tertiary);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--tertiary);
        }

		.footer-contact a, .copyright a {
            color: inherit;
        }

		.footer-contact a:hover {
            color: var(--tertiary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--tertiary);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            color: var(--tertiary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--tertiary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block !important;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            .nav-menu.active {
                clip-path: circle(1500px at 90% -10%);
                pointer-events: all;
            }
            
            .nav-menu li {
                margin: 25px 0;
            }
            
            .nav-menu a {
                font-size: 1.2rem;
            }
            
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
			h1 { font-size: 2.2rem !important; }
            h2 { font-size: 1.8rem !important; }
			h3 { font-size: 1.4rem !important; }
			
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
			
			.service-price {
            font-size: 1.3rem;
        	}
        }