
       

        .top-section {
            background: #e12c2c;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .top-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff4757, #2ed573, #1e90ff, transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-subtitle {
            color: #fff;
            font-size: 25px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-title {
            color: #fff;
            font-size: 42px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .feature-card {
            /* background: rgba(255, 255, 255, 0.05); */
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out backwards;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #e12c2c;
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
        }

        .feature-icon .material-icons {
            font-size: 36px;
            color: #fff;
        }

        .feature-title {
            color: #ff4757;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        footer {
            background: linear-gradient(135deg, #0a0a14 0%, #0f0f1e 100%);
            padding: 60px 20px 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            animation: fadeIn 1s ease-out backwards;
        }

        .footer-section:nth-child(1) { animation-delay: 0.2s; }
        .footer-section:nth-child(2) { animation-delay: 0.3s; }
        .footer-section:nth-child(3) { animation-delay: 0.4s; }
        .footer-section:nth-child(4) { animation-delay: 0.5s; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .logo-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo-icon .material-icons {
            color: #fff;
            font-size: 30px;
        }

        .logo-text {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-heading {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ff4757, #ff6348);
            border-radius: 2px;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: all 0.3s;
            position: relative;
            padding-left: 0;
        }

        .footer-link::before {
            content: '';
            position: absolute;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff4757;
            transition: width 0.3s;
            bottom: -2px;
        }

        .footer-link:hover {
            color: #ff4757;
            padding-left: 10px;
        }

        .footer-link:hover::before {
            width: 30px;
        }

        .footer-link .material-icons {
            font-size: 18px;
            color: #ff4757;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .contact-item .material-icons {
            color: #ff4757;
            font-size: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #ff4757;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
            border: none;
            color: #fff;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
        }

        .newsletter-btn .material-icons {
            font-size: 20px;
        }

        .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;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ff4757;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }
    

          @keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}




/* SLIDER SECTION */
        .services-sliderr {
            padding: 60px 40px;
            overflow: hidden;
            padding-top: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

       
        .swiper-slide {
            height: auto;
        }

        /* Navigation buttons */
        .swiper-button-next,
        .swiper-button-prev {
            color: #2c5f8d;
        }

        .swiper-pagination-bullet-active {
            background: #2c5f8d;
        }

        /* SERVICES */
        .sc_services_item {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(148, 163, 184, 0.25);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sc_services_item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .sc_services_item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .sc_services_item_content {
            padding: 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .sc_services_item_title {
            margin-bottom: 10px;
        }

        .sc_services_item_title a {
            text-decoration: none;
            color: #222;
            font-size: 18px;
            font-weight: bold;
            line-height: 1.4;
        }

        .sc_services_item_content p {
            font-size: 15px;
            /* color: #666; */
            margin-bottom: 8px;
        }


        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .services-sliderr {
                padding: 40px 20px;
            }
            
            .slide-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .slide-grid {
                grid-template-columns: 1fr;
            }
            
            .sc_services_item img {
                height: 200px;
            }
        }


          /* GRID CONTAINER */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            padding: 60px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* SERVICES */
        .sc_services_item {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(148, 163, 184, 0.25);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sc_services_item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .sc_services_item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

   
    .sc_services_item_content {
        padding: 20px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .sc_services_item_title {
        margin-bottom: 15px;
    }

    .sc_services_item_title a {
        text-decoration: none;
        color: #222;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .sc_services_item_title a:hover {
        color: #2563eb;
    }

    /* Description text */
    .item-description {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
        text-align: left;
    }

    /* Dimensions styling */
    .item-dimensions {
        font-size: 14px;
        color: #444;
        font-weight: 500;
        margin-bottom: 8px;
        text-align: center;
    }

    /* Price styling - distinctive color */
    .item-price {
        font-size: 18px;
        color: #dc2626;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Button container */
    .button-group {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: auto;
        flex-wrap: wrap;
    }

    /* Base button styles */
    .sc_button {
        display: inline-block;
        padding: 10px 18px;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 13px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-weight: 500;
    }

    /* Primary button (Start Designer) - Blue */
    .sc_button_primary {
        background: #2563eb;
    }

    .sc_button_primary:hover {
        background: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    }

    /* Secondary button (Read More) - Purple Gradient */
    .sc_button_secondary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    .sc_button_secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sc_button_secondary:hover::before {
        opacity: 1;
    }

    .sc_button_secondary:hover {
        transform: translateY(-2px);
        /* box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); */
    }

    .sc_button_secondary span {
        position: relative;
        z-index: 1;
    }
