  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 10px 0;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
            background-color: #efefef;
            padding: 7px 20px;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .header.scrolled .header-top {
            opacity: 0;
            height: 0;
            margin-bottom: 0;
            overflow: hidden;
        }

        .contact-info {
            display: flex;
            gap: 30px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #666;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #ff6b9d;
            color: white;
            transform: translateY(-2px);
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff6b9d;
            transition: font-size 0.3s ease;
        }

        .nav {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: #ff6b9d;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b9d;
            transition: width 0.3s ease;
        }

        .nav a:hover::after {
            width: 100%;
        }

        .free-quote-btn {
            background: #ff6b9d;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
        }

        .free-quote-btn:hover {
            background: #ff5a8a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            display: flex;
            align-items: center;
            min-height: 70vh;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInLeft 0.8s ease-out;
        }

        .hero-tag {
            color: #ff6b9d;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .hero-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-button {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
        }

        .seo-illustration {
            position: relative;
            animation: fadeInRight 0.8s ease-out;
        }

        .seo-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .seo-container img {
            width: 100%;
            height: 100%;
            /* object-fit: cover;    */
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-text {
            padding-left: 20px;
        }

        .about-header {
            margin-bottom: 30px;
        }

        .about-tag {
            color: #8B7CF6;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about-title .agency-text {
            color: #8B7CF6;
        }

        .about-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .stats-container {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .stat-circle {
            position: relative;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            font-size: 18px;
            color: white;
        }

        .stat-circle.pink {
            background: conic-gradient(#ff6b9d 0% 90%, #f0f0f0 90% 100%);
            flex-direction: column;
        }

        .stat-circle.purple {
            background: conic-gradient(#8B7CF6 0% 80%, #f0f0f0 80% 100%);
            flex-direction: column;
        }
.para{
        font-weight: 300;
    color: black;
    position: relative;
    z-index: 2;
    font-size: 10px;
}
.imagessss{
        width: 100%;
    height: auto;
    object-fit: contain;
}
        .stat-circle.orange {
            background: conic-gradient(#ff9500 0% 80%, #f0f0f0 80% 100%);
            flex-direction: column;
        }

        .stat-circle::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            z-index: 1;
        }

        .stat-circle span {
            position: relative;
            z-index: 2;
            color: #333;
            font-size: 13px;
            font-weight: 700;
        }

        .about-illustration {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .about-illustration img {
            width: 100%;
            height: auto;
            max-width: 400px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-tag {
            color: #8B7CF6;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .services-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
        }

        .services-title .provides-text {
            color: #8B7CF6;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .service-tab {
            background: white;
            border: none;
            padding: 20px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 120px;
        }

        .service-tab:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .service-tab.active {
            background: linear-gradient(135deg, #8B7CF6 0%, #6D5CE6 100%);
            color: white;
        }

        .service-tab i {
            font-size: 24px;
            color: #8B7CF6;
            transition: color 0.3s ease;
        }

        .service-tab.active i {
            color: white;
        }

        .service-tab span {
            font-size: 12px;
            font-weight: 600;
            text-align: center;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .service-info {
            padding: 20px;
        }

        .service-info h3 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .service-info p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        .feature-item i {
            color: #8B7CF6;
            font-size: 12px;
        }

        .service-visual {
            position: relative;
            height: 400px;
            /* background: linear-gradient(135deg, #8B7CF6 0%, #6D5CE6 100%); */
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-visual i {
            font-size: 80px;
            color: rgba(255, 255, 255, 0.8);
        }

        .service-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        /* Hidden content initially */
        .service-content-item {
            display: none;
        }

        .service-content-item.active {
              display: contents;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .service-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-tabs {
                gap: 10px;
            }

            .service-tab {
                min-width: 100px;
                padding: 15px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .about-title, .services-title {
                font-size: 2rem;
            }

            .nav {
                display: none;
            }

            .header-top {
                flex-direction: column;
                gap: 15px;
                  display: none;
                
            }

            .stats-container {
                justify-content: center;
            }

            .service-features {
                grid-template-columns: 1fr;
            }
        }

        .service-content-item {
    display: none;
}

.service-content-item.active {
    display: contents;
}


/*  */

        .projects-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
        }

        .section-title .highlight {
            color: #8b5cf6;
            background: linear-gradient(45deg, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-underline {
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #8b5cf6, #06b6d4);
            margin: 0 auto;
            border-radius: 2px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-image::before {
            opacity: 1;
        }

        .project-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .project-2 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .project-3 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        .project-4 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .project-5 { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }

        .project-content {
            padding: 25px;
            text-align: center;
        }

        .project-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .project-subtitle {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(45deg, #8b5cf6, #06b6d4);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
        }

        .project-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .project-link:hover::after {
            transform: translateX(3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .projects-section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .project-card {
                margin: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.7rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-content {
                padding: 20px;
            }

            .project-title {
                font-size: 1.1rem;
            }
        }

        /* Animation for cards */
        .project-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /*  */


            .contact_container {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 60px 20px;
            background-color: white;
        }

        .contact_header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact_header-label {
            color: #8b5cf6;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .contact_header-title {
            font-size: 42px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .contact_header-title .contact_highlight {
            color: #8b5cf6;
        }

        .contact_divider {
            width: 80px;
            height: 3px;
            background-color: #8b5cf6;
            margin: 0 auto;
        }

        .contact_content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
                box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
                    border-radius: 10px;
        }

        .contact_map-section {
            position: relative;
        }

        .contact_map-container {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact_map-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact_info {
            display: flex;
            flex-direction: column;
            /* gap: 30px; */
                padding: 30px;

        }

        .contact_cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 15px;
        }

        .contact_card {
            background: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .contact_card:hover {
            transform: translateY(-5px);
        }

        .contact_icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .contact_card:nth-child(1) .contact_icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .contact_card:nth-child(2) .contact_icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .contact_card:nth-child(3) .contact_icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .contact_text {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .contact_detail {
            font-size: 12px;
            color: #666;
        }

        .contact_form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact_form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact_form-group {
            display: flex;
            flex-direction: column;
        }

        .contact_form-group.contact_full-width {
            grid-column: span 2;
        }

        .contact_form-input {
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s ease;
            background-color: #f8f9fa;
        }

        .contact_form-input:focus {
            outline: none;
            border-color: #8b5cf6;
        }

        .contact_form-textarea {
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            transition: border-color 0.3s ease;
            background-color: #f8f9fa;
        }

        .contact_form-textarea:focus {
            outline: none;
            border-color: #8b5cf6;
        }

        .contact_submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
            margin-top: 20px;
        }

        .contact_submit-btn:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .contact_content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact_cards {
                grid-template-columns: 1fr;
            }

            .contact_form-row {
                grid-template-columns: 1fr;
            }

            .contact_form-group.contact_full-width {
                grid-column: span 1;
            }

            .contact_header-title {
                font-size: 32px;
            }
        }


          .footer_ {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer_::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
            animation: footer_float 20s infinite linear;
        }

        @keyframes footer_float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .footer_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer_main {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer_section h3 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.3em;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer_section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            border-radius: 2px;
        }

        .footer_logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer_logo i {
            font-size: 2.5em;
            color: #4ecdc4;
        }

        .footer_logo h2 {
            font-size: 1.8em;
            font-weight: 700;
            color: #ffffff;
        }

        .footer_section p {
            color: #e0e0e0;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .footer_section ul {
            list-style: none;
        }

        .footer_section ul li {
            margin-bottom: 12px;
        }

        .footer_section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer_section ul li a:hover {
            color: #ff6b9d ;
            transform: translateX(5px);
        }

        .footer_section ul li a i {
            font-size: 0.9em;
        }

        .footer_contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer_contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #e0e0e0;
        }

        .footer_contact-item i {
            font-size: 1.1em;
            color: #4ecdc4;
            width: 20px;
        }

        .footer_social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer_social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .footer_social-links a:hover {
            background: #4ecdc4;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
        }

        .footer_newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer_newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
            outline: none;
            transition: all 0.3s ease;
        }

        .footer_newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer_newsletter-form input:focus {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }

        .footer_newsletter-form button {
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer_newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .footer_bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer_bottom p {
            color: white;
            font-size: 0.95em;
        }

        .footer_links {
            display: flex;
            gap: 30px;
        }

        .footer_links a {
            color: white;
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s ease;
        }

        .footer_links a:hover {
            color:      #ff6b9d;
        }

        .footer_back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2em;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .footer_back-to-top.footer_show {
            opacity: 1;
            visibility: visible;
        }

        .footer_back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer_main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .footer_bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer_links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer_main {
                grid-template-columns: 1fr;
            }
            
            .footer_newsletter-form {
                flex-direction: column;
            }
            
            .footer_social-links {
                justify-content: center;
            }
        }
        .footer_logo img{
width: 100px;
height: auto;
        }

         .service-content-item {
        display: none !important;
    }
    
    .service-content-item.active {
        display: contents !important;
    }

    .notification {
  position: fixed;
  top: 40px;
  right: 20px;
  background-color: #28a745; /* Green for success */
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-weight: bold;
  display: none;
  animation: fadeInOut 5s forwards;
}

.notification.error {
  background-color: #dc3545; /* Red for error */
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}
