
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4361ee;
            --secondary: #3f37c9;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4cc9f0;
            --warning: #ffbe0b;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f9fafb;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
            z-index: 1001;
        }

        .logo span {
            color: var(--accent);
        }

        .logo i {
            margin-right: 10px;
            font-size: 2.2rem;
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            position: relative;
            margin-left: 30px;
        }

        .nav-menu > li > a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
            display: block;
            padding: 10px 0;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 220px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            display: block;
            color: #555;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
            padding-left: 25px;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Active state for menu toggle */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
            z-index: 1001;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            padding-right: 50px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
        }

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

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 20px auto 0;
        }

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

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            z-index: -1;
            transition: height 0.5s ease;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-box {
            text-align: center;
            padding: 25px 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .stat-box .number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background-color: white;
        }
        
        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .portfolio-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(67, 97, 238, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .portfolio-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .portfolio-link:hover {
            transform: translateX(5px);
        }
        
        .portfolio-link i {
            margin-left: 8px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .contact-details p {
            color: #555;
            margin-bottom: 5px;
        }
        
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient);
        }

        .footer-column p {
            color: #bbb;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons 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;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .email-btn {
            background: #EA4335;
        }
        
        /* Modal Popup */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            padding: 40px;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.5s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--accent);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 30px 30px;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 20px 0;
                width: 100%;
            }
            
            .nav-menu > li > a {
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin-top: 10px;
                padding: 0 0 0 20px;
            }
            
            .nav-menu li:hover .dropdown-menu {
                display: block;
            }
            
            .cta-button {
                display: none;
            }
            
            .hero {
                padding: 130px 0 70px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .services, .about, .portfolio, .contact {
                padding: 70px 0;
            }
            
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }

        /* Additional CSS for Services Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-showcase {
            padding: 100px 0;
            background: white;
        }
        
        .services-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card-modern {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .service-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            z-index: -1;
            transition: height 0.5s ease;
        }
        
        .service-card-modern:hover::before {
            height: 100%;
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card-modern:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-icon-modern {
            width: 70px;
            height: 70px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .service-card-modern:hover .service-icon-modern {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: scale(1.1);
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-card-modern:hover h3,
        .service-card-modern:hover p {
            color: white;
        }
        
        .service-content p {
            margin-bottom: 25px;
            color: #555;
            flex-grow: 1;
        }
        
        .service-cta {
            margin-top: auto;
        }
        
        .service-features {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: #555;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .services-showcase, .service-features {
                padding: 70px 0;
            }
            
            .services-grid-modern {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .service-content {
                padding: 20px;
            }
        }

        /* Additional CSS for Web Design & Development Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 3px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .portfolio-showcase {
            padding: 100px 0;
            background: white;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(67, 97, 238, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .portfolio-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .portfolio-link:hover {
            transform: translateX(5px);
        }
        
        .portfolio-link i {
            margin-left: 8px;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .process-section, .portfolio-showcase, .pricing-section {
                padding: 70px 0;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .portfolio-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-content {
                text-align: left;
            }
        }
   
        /* Additional CSS for SEO Optimization Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 3px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .results-section {
            padding: 100px 0;
            background: white;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .result-item {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: #f9fafb;
            transition: all 0.3s ease;
        }
        
        .result-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .result-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .result-text {
            font-size: 1.2rem;
            color: #555;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .faq-section {
            padding: 100px 0;
            background: white;
        }
        
        .faq-list {
            margin-top: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            background: #f9fafb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f1f3f5;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            margin: 0;
            color: var(--dark);
        }
        
        .faq-toggle {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .process-section, .results-section, .pricing-section, .faq-section {
                padding: 70px 0;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .results-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-content {
                text-align: left;
            }
            
            .result-number {
                font-size: 2.5rem;
            }
        }

        /* Additional CSS for E-Commerce Solutions Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .platforms-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .platforms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .platform-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
        }
        
        .platform-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
        }
        
        .platform-icon img {
            width: 100%;
            height: auto;
        }
        
        .platform-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .platform-card p {
            color: #555;
            margin-bottom: 25px;
        }
        
        .process-section {
            padding: 100px 0;
            background: white;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 3px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .features-showcase {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .features-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 50px;
        }
        
        .feature-tab {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex: 1;
            min-width: 300px;
            transition: transform 0.3s ease;
        }
        
        .feature-tab:hover {
            transform: translateY(-10px);
        }
        
        .tab-header {
            padding: 25px;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .tab-header h3 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .tab-content ul {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .tab-content li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .tab-content li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: white;
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: baseline;
        }
        
        .price .from {
            font-size: 1rem;
            margin-right: 5px;
            color: #777;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
            margin-left: 5px;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .platforms-section, .process-section, .features-showcase, .pricing-section {
                padding: 70px 0;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .features-tabs {
                flex-direction: column;
            }
            
            .platforms-container, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-content {
                text-align: left;
            }
        }

        /* Additional CSS for Digital Marketing Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .strategy-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .strategy-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 50px;
        }
        
        .strategy-tab {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex: 1;
            min-width: 300px;
            transition: transform 0.3s ease;
        }
        
        .strategy-tab:hover {
            transform: translateY(-10px);
        }
        
        .tab-header {
            padding: 25px;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .tab-header h3 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .tab-content ul {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .tab-content li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .tab-content li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .results-section {
            padding: 100px 0;
            background: white;
        }
        
        .results-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .result-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: #f9fafb;
            transition: all 0.3s ease;
        }
        
        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .result-icon {
            width: 70px;
            height: 70px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .result-card:hover .result-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .result-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .result-card p {
            color: #555;
        }
        
        .case-studies {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .case-study-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .case-study-card:hover {
            transform: translateY(-10px);
        }
        
        .case-study-image {
            height: 200px;
            overflow: hidden;
        }
        
        .case-study-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .case-study-card:hover .case-study-image img {
            transform: scale(1.1);
        }
        
        .case-study-content {
            padding: 30px;
        }
        
        .case-study-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .case-study-content p {
            color: #555;
            margin-bottom: 20px;
        }
        
        .case-study-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .case-study-stat {
            text-align: center;
            padding: 15px;
            background: #f9fafb;
            border-radius: 10px;
        }
        
        .case-study-stat .number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }
        
        .case-study-stat .label {
            font-size: 0.9rem;
            color: #777;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: white;
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .strategy-section, .results-section, .case-studies, .pricing-section {
                padding: 70px 0;
            }
            
            .strategy-tabs {
                flex-direction: column;
            }
            
            .results-container, .case-study-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .case-study-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Additional CSS for Mobile App Development Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .platforms-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .platforms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .platform-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
        }
        
        .platform-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
        }
        
        .platform-icon img {
            width: 100%;
            height: auto;
        }
        
        .platform-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .platform-card p {
            color: #555;
            margin-bottom: 25px;
        }
        
        .process-section {
            padding: 100px 0;
            background: white;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 3px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .app-types {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .types-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .type-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .type-card:hover {
            transform: translateY(-10px);
        }
        
        .type-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .type-card:hover .type-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .type-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .type-card p {
            color: #555;
            margin-bottom: 25px;
        }
        
        .type-features {
            text-align: left;
            margin-top: 20px;
        }
        
        .type-features ul {
            list-style: none;
        }
        
        .type-features li {
            margin-bottom: 10px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .type-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .portfolio-section {
            padding: 100px 0;
            background: white;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(67, 97, 238, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .portfolio-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .portfolio-link:hover {
            transform: translateX(5px);
        }
        
        .portfolio-link i {
            margin-left: 8px;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: baseline;
        }
        
        .price .from {
            font-size: 1rem;
            margin-right: 5px;
            color: #777;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
            margin-left: 5px;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .platforms-section, .process-section, .app-types, .portfolio-section, .pricing-section {
                padding: 70px 0;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .platforms-container, .types-container, .portfolio-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-content {
                text-align: left;
            }
        }

        /* Additional CSS for Brand Identity Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail {
            padding: 100px 0;
            background: white;
        }
        
        .service-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .service-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .service-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-image:hover img {
            transform: scale(1.05);
        }
        
        .service-features {
            margin: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            background: #f9fafb;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-item p {
            color: #555;
        }
        
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 3px;
            background: var(--gradient);
            z-index: 1;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            flex-grow: 1;
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-content p {
            color: #555;
            margin-bottom: 0;
        }
        
        .brand-elements {
            padding: 100px 0;
            background: white;
        }
        
        .elements-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .element-card {
            background: #f9fafb;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .element-card:hover {
            transform: translateY(-10px);
        }
        
        .element-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .element-card:hover .element-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }
        
        .element-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .element-card p {
            color: #555;
            margin-bottom: 25px;
        }
        
        .element-features {
            text-align: left;
            margin-top: 20px;
        }
        
        .element-features ul {
            list-style: none;
        }
        
        .element-features li {
            margin-bottom: 10px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .element-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(67, 97, 238, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .portfolio-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .portfolio-link:hover {
            transform: translateX(5px);
        }
        
        .portfolio-link i {
            margin-left: 8px;
        }
        
        .pricing-section {
            padding: 100px 0;
            background: white;
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--gradient);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .price {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: baseline;
        }
        
        .price .from {
            font-size: 1rem;
            margin-right: 5px;
            color: #777;
        }
        
        .price span {
            font-size: 1rem;
            font-weight: 500;
            color: #777;
            margin-left: 5px;
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features ul {
            list-style: none;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 12px;
            color: 555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .service-detail, .process-section, .brand-elements, .portfolio-section, .pricing-section {
                padding: 70px 0;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .elements-container, .portfolio-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-content {
                text-align: left;
            }
        }

        /* Additional CSS for Portfolio Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .portfolio-section {
            padding: 100px 0;
            background: white;
        }
        
        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
        }
        
        .portfolio-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(67, 97, 238, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .portfolio-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .portfolio-link:hover {
            transform: translateX(5px);
        }
        
        .portfolio-link i {
            margin-left: 8px;
        }
        
        .portfolio-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .author-details p {
            color: #777;
            font-size: 0.9rem;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(67, 97, 238, 0.1);
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Portfolio Modal */
        .portfolio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .portfolio-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.5s ease;
        }
        
        .portfolio-modal.active .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
            z-index: 10;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--accent);
        }
        
        .modal-header {
            position: relative;
        }
        
        .modal-header-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }
        
        .modal-body {
            padding: 40px;
        }
        
        .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .modal-category {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .modal-description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .project-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .detail-item {
            background: #f9fafb;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        
        .detail-item h4 {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #777;
        }
        
        .detail-item p {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .modal-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .portfolio-section, .testimonials-section {
                padding: 70px 0;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .modal-body {
                padding: 30px 20px;
            }
            
            .modal-title {
                font-size: 1.8rem;
            }
            
            .project-details {
                grid-template-columns: 1fr 1fr;
            }
            
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .portfolio-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .project-details {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                width: 95%;
            }
        }

        /* Additional CSS for Contact Page */
        .breadcrumb {
            padding: 15px 0;
            background: #f8f9fa;
            margin-top: 80px;
        }
        
        .breadcrumb-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--accent);
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #6c757d;
        }
        
        .breadcrumb-item.active {
            color: var(--dark);
        }
        
        .page-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-section {
            padding: 100px 0;
            background: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info {
            padding-right: 20px;
        }
        
        .contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .contact-info p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .contact-details {
            margin-bottom: 50px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .contact-text p {
            color: #555;
            margin-bottom: 0;
        }
        
        .contact-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            color: var(--primary);
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-form {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--dark);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            display: block;
            width: 100%;
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
        }
        
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
        }
        
        .accordion {
            margin-top: 50px;
        }
        
        .accordion-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark);
        }
        
        .accordion-header i {
            transition: transform 0.3s ease;
        }
        
        .accordion-header.active i {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .accordion-content.active {
            padding: 0 20px 20px;
            max-height: 300px;
        }
        
        .accordion-content p {
            color: #555;
            line-height: 1.7;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                padding-right: 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .contact-info h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 60px 0;
            }
            
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1.1rem;
            }
            
            .contact-section, .map-section, .faq-section {
                padding: 70px 0;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .map-container {
                height: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 2rem;
            }
            
            .contact-info h2 {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 25px 20px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .social-links {
                justify-content: center;
            }
        }

        .submit-btn {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
}

.blog-content {
    display: flex;
    gap: 40px;
}

.blog-posts {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

/* Blog Post Styles */
.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-post {
    display: flex;
    flex-direction: column;
}

.featured-post .post-image {
    height: 300px;
}

.featured-post .post-content {
    padding: 25px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.posts-grid .blog-post {
    margin-bottom: 0;
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.post-meta span i {
    margin-right: 5px;
}

.blog-post h2,
.blog-post h3 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.blog-post h2 a,
.blog-post h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover,
.blog-post h3 a:hover {
    color: var(--primary-color);
}

.blog-post p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
}

.search-form button {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary-color);
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.categories-widget li:last-child {
    border-bottom: none;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #666;
    transition: color 0.3s ease;
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.categories-widget span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content .post-date {
    font-size: 12px;
    color: #777;
}

/* Tags Widget */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags a {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* CTA Widget */
.cta-widget {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.cta-widget h3 {
    color: #fff;
    border-bottom: none;
    margin-bottom: 15px;
}

.cta-widget p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-widget .cta-button {
    background: #fff;
    color: var(--primary-color);
}

.cta-widget .cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 15px 25px;
    border-radius: 0 30px 30px 0;
    white-space: nowrap;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    font-size: 14px;
    color: #777;
}

.breadcrumb-item:not(:last-child):after {
    content: '/';
    margin: 0 10px;
}

.breadcrumb-item a {
    color: #777;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-content {
        flex-direction: column;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .featured-post .post-image {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
    }
}


    /* Additional CSS for blog post page */
    .blog-post-page {
        padding: 80px 0;
    }
    
    .blog-post-container {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .post-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .post-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
        line-height: 1.3;
    }
    
    .post-meta {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
        color: #777;
        font-size: 14px;
    }
    
    .post-meta span {
        display: flex;
        align-items: center;
    }
    
    .post-meta i {
        margin-right: 5px;
    }
    
    .post-featured-image {
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .post-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .post-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
    }
    
    .post-content h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }
    
    .post-content h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }
    
    .post-content p {
        margin-bottom: 20px;
    }
    
    .post-content ul, .post-content ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .post-content li {
        margin-bottom: 10px;
    }
    
    .post-content blockquote {
        border-left: 4px solid var(--primary-color);
        padding-left: 20px;
        margin: 30px 0;
        font-style: italic;
        color: #555;
    }
    
    .post-content a {
        color: var(--primary-color);
        text-decoration: underline;
    }
    
    .post-content a:hover {
        color: var(--secondary-color);
    }
    
    .post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 40px 0;
    }
    
    .post-tags a {
        padding: 5px 15px;
        background: #f5f5f5;
        border-radius: 20px;
        font-size: 14px;
        color: #666;
        transition: all 0.3s ease;
    }
    
    .post-tags a:hover {
        background: var(--primary-color);
        color: #fff;
    }
    
    .post-share {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 40px 0;
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    
    .post-share span {
        font-weight: 600;
        color: #333;
    }
    
    .share-buttons {
        display: flex;
        gap: 10px;
    }
    
    .share-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .share-button.facebook {
        background: #3b5998;
    }
    
    .share-button.twitter {
        background: #1da1f2;
    }
    
    .share-button.linkedin {
        background: #0077b5;
    }
    
    .share-button.whatsapp {
        background: #25d366;
    }
    
    .share-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .author-bio {
        display: flex;
        gap: 20px;
        margin: 50px 0;
        padding: 30px;
        background: #f9f9f9;
        border-radius: 10px;
    }
    
    .author-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-details h3 {
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .author-details p {
        margin-bottom: 15px;
        color: #666;
    }
    
    .author-social {
        display: flex;
        gap: 10px;
    }
    
    .author-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #eee;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .author-social a:hover {
        background: var(--primary-color);
        color: #fff;
    }
    
    .related-posts {
        margin: 60px 0;
    }
    
    .related-posts h2 {
        margin-bottom: 30px;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .related-post {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .related-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .related-post-image {
        height: 180px;
        overflow: hidden;
    }
    
    .related-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .related-post:hover .related-post-image img {
        transform: scale(1.05);
    }
    
    .related-post-content {
        padding: 20px;
    }
    
    .related-post-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .related-post-content h3 a {
        color: #333;
        transition: color 0.3s ease;
    }
    
    .related-post-content h3 a:hover {
        color: var(--primary-color);
    }
    
    .related-post-date {
        font-size: 13px;
        color: #777;
    }
    
    .comments-section {
        margin: 60px 0;
    }
    
    .comments-section h2 {
        margin-bottom: 30px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .comment-form {
        margin-top: 40px;
    }
    
    .comment-form h3 {
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
    }
    
    @media (max-width: 992px) {
        .related-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .post-title {
            font-size: 2rem;
        }
        
        .author-bio {
            flex-direction: column;
            text-align: center;
        }
        
        .author-avatar {
            margin: 0 auto;
        }
        
        .related-grid {
            grid-template-columns: 1fr;
        }
        
        .post-share {
            justify-content: center;
        }
    }


