:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #60a5fa;
            --secondary: #7c3aed;
            --accent: #ec4899;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            --card-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 16px;
            --glass-bg: rgba(255, 255, 255, 0.95);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
	    scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Floating Navbar */
        header {
            position: fixed;
            top: 24px;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-scrolled {
            top: 0;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
        }

        .logo-icon img{
            height: 55px;
            border-radius: 10px;            
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: rgba(37, 99, 235, 0.08);
            transform: translateY(-2px);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent), #f472b6);
            color: white;
            box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 120px;	    
            background: linear-gradient(135deg, #f0f9ff 0%, #fdf2ff 50%, #eff6ff 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232563eb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            color: var(--darker);
            line-height: 1.1;
        }

        .hero-content h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 90%;
        }

        .hero-buttons {
            margin-bottom: 30px;
        }

	/* Image Slider */
        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
	    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .slider-track {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .slide {
            width: 25%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
        }

        .slide-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .slide-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .slider-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .slider-nav-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--dark);
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .slider-nav-btn:hover {
            background: white;
            transform: scale(1.1);
        }


	/* About Section */
        .about-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232563eb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .about-container {            
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-content {
            padding-right: 40px;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(37, 99, 235, 0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 24px;
            color: var(--darker);
            line-height: 1.2;
        }

        .about-content h2 span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about-features {
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .feature-text p {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        /* Services Highlights */
        .services-highlights {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px 40px;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .services-highlights::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .highlight-title {
            margin-bottom: 40px;
        }

        .highlight-title h3 {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--darker);
        }

        .highlight-title p {
            color: var(--gray);
            max-width: 400px;
            margin: 0 auto;
        }

        .services-grid-mini {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .service-mini-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: var(--light);
            border-radius: 12px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .service-mini-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .service-mini-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .service-mini-text h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .service-mini-text p {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid var(--light-gray);
        }

        .stat-highlight {
            text-align: center;
        }

        .stat-highlight h3 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-highlight p {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
        }

	
	/* Featured Services */
        .featured-services {
            padding: 120px 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 32px;
        }

        .featured-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
        }

        .featured-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--card-shadow-hover);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--accent), #f472b6);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }

        .featured-image {
            height: 220px;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.08);
        }

        .featured-content {
            padding: 32px;
        }

        .featured-content h3 {
            margin-bottom: 12px;
            font-size: 1.5rem;
        }

        .featured-content p {
            color: var(--gray);
            margin-bottom: 24px;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #fdf2ff 100%);
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 60px auto 0;
            position: relative;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 8rem;
            color: var(--primary-light);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 32px;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary-light);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 6px;
            font-size: 1.2rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

        .slider-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: white;
            border: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--dark);
        }

        .slider-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-top: 60px;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            font-weight: 600;
        }

        .btn-white:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
        }

        .btn-transparent {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-transparent:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 50px 0 40px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 14px;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-col p {
            color: #94a3b8;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.95rem;
        }


	/* Services Section */
        .services-section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .services-grid {
	    padding: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

	 .service-category {
            display: inline-block;
            background-color: #e0f2fe;
            color: #0369a1;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card-icon {
            height: 120px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;

	    img{
		width: 100%;
		height: 120px;	
	    }
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .card-content p {
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex-grow: 1;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--gray);
        }

        .card-time {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .card-time i {
            margin-right: 5px;
        }

        .card-button {
            background-color: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
        }

        .card-button:hover {
            background-color: var(--primary-dark);
        }
        
        
        /* Service Popular Tag */
        .popular-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #f59e0b;
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .card-icon {
            position: relative;
        }

	.faq-container {
            width: 1200px;
            margin: 40px auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }	
        
        .faq-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 15px;
        }
        
        .faq-header h3 {
            font-size: 2rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .faq-content {
            padding: 20px 30px 40px;
        }
        
        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 8px;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 22px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background-color 0.2s;
        }
        
        .faq-question:hover {
            background-color: #f8fafc;
        }
        
        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .question-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .faq-icon {
            color: #3b82f6;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            background-color: #f8fafc;
            border-radius: 0 0 8px 8px;
        }
        
        .faq-answer p {            
            color: #475569;
        }
        
        .faq-answer ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .faq-answer li:before {
            content: "•";
            color: #3b82f6;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: #e0f2fe;
            border-radius: 8px;
            font-weight: 500;
            color: #0369a1;
        }
        
        .contact-method i {
            font-size: 1.1rem;
        }
        
        .faq-active .faq-question {
            background-color: #f0f9ff;
        }
        
        .faq-active .faq-answer {
            max-height: 500px;
            padding: 10px 20px 24px;
        }
        
        .faq-active .faq-icon {
            transform: rotate(180deg);
        }
        
        .closing-line {            
            padding: 15px;
            background: #f0f9ff;
            margin: 10px;
            border-radius: 12px;
            border-left: 5px solid #3b82f6;
        }
        
        .closing-line .highlight {
            color: #1d4ed8;
            font-weight: 700;
        }

	        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: start;
            }

            .hero-content p {
                max-width: 100%;
            }

            .hero-stats {
                justify-content: center;
            }

	    .faq-container{
		width: 95%;
	    }
        }

        @media (max-width: 992px) {
            .navbar nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                padding: 24px;
                border-radius: 16px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                margin-top: 16px;
            }
            
            nav a:hover::after {
                width: 400%;
            }

            .navbar nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
                
                li{
                  border: 1px solid black;
                  padding: 10px;
                  border-radius: 10px;
                }
            }

            .mobile-menu-btn {
                display: flex;
            }

            .nav-actions {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title h2 {
                font-size: 2.4rem;
            }

            .featured-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
	    
	    .faq-container{
		width: 95%;
	    }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 160px 0 80px;
		gap: 0px;
            }

            .services, .how-it-works, .featured-services, .testimonials, .cta {
                padding: 80px 0;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                margin-bottom: 10px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .container, .nav-container {
                padding: 10px;
            }

            .navbar {
                padding: 10px 20px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .services-grid, .featured-grid {
		padding: 0px;
                grid-template-columns: 1fr;
            }
        }

	/* Responsive Design */

        @media (max-width: 768px) 
            .services-grid {
		padding: 0px;
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .services-grid {
		padding: 0px;
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {	    
            .faq-header {
                padding: 30px 20px;
            }
	
	    .faq-container{
		width: 95%;
	    }
            
            .faq-header h1 {
                font-size: 2rem;
            }
            
            .faq-content {
                padding: 15px 20px 30px;
            }
            
            .faq-question {
                padding: 18px 15px;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {            
            .faq-container {
                margin: 20px auto;
            }
            
            .faq-header h1 {
                font-size: 1.7rem;
            }
                  
        }

	
        /* Responsive Design */
        @media (max-width: 1100px) {
            .hero-container, .about-container {
                grid-template-columns: 1fr;
            }

            .about-content {
                padding-right: 0;
                text-align: start;
            }

            .feature-item {
                justify-content: center;
            }

            .services-grid-mini {
                grid-template-columns: repeat(2, 1fr);
            }

	    .services-highlights{
		padding: 25px 15px;
	    }
        }

        @media (max-width: 992px) {
            .section-title h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 50px 0;
            }

            .hero-content h1, .about-content h2 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .services-grid-mini {
                grid-template-columns: 1fr;
            }

            .stats-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        
        