/* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.71), rgba(52, 152, 219, 0.71)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: #c0392b;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .services {
            padding: 6rem 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            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(--secondary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background: white;
            border-top-left-radius: 135deg 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
            border: 1px solid #f0f0f0;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--tech-blue));
            transition: height 0.4s;
            z-index: -1;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            color: white;
        }
        
        .service-card:hover .service-icon {
            background: white;
            color: var(--secondary-color);
        }
        
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p {
            color: white;
        }
        
        .service-icon {
            background: linear-gradient(135deg, var(--secondary-color), var(--tech-blue));
            color: white;
            font-size: 2.8rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s;
            border-radius: 12px 12px 0 0;
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            transition: color 0.4s;
        }
        
        .service-content p {
            color: var(--gray-color);
            transition: color 0.4s;
        }
        
        /* Material Section */
        .material {
            padding: 6rem 0;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        
        .material-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .material-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid var(--secondary-color);
        }
        
        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .material-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .material-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .material-content {
            padding: 1.5rem;
        }
        
        .material-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        
        .material-price {
            color: var(--accent-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .material-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .material-features li {
            margin-bottom: 0.5rem;
            color: var(--gray-color);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }
        
        .material-features i {
            color: var(--success-color);
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        /* About Section */
        .about {
            padding: 6rem 0;
            background: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h2 {
            color: var(--primary-color);
            margin-bottom: 1.8rem;
            font-size: 2.5rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            font-size: 1.1rem;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            color: var(--gray-color);
            font-weight: 500;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 5px solid var(--secondary-color);
            border-radius: 12px;
            z-index: -1;
        }
        
        /* Domains Section */
        .domains {
            padding: 6rem 0;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        
        .domains-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .domain-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid var(--secondary-color);
        }
        
        .domain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .domain-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        .domain-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* Location Section Styles */
.location-section {
    background: white;
    padding: 6rem 0;
}

.location-content {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.location-map {
    background: linear-gradient(rgba(1, 51, 108, 0.706), rgba(1, 51, 108, 0.706)),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80')
                no-repeat center center/cover;
    flex: 1;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-map h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.location-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.location-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: var(--secondary-color);
    width: 20px;
}

.location-services {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-block {
    background: linear-gradient(rgba(1, 51, 108, 0.706), rgba(1, 51, 108, 0.706)),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80')
                no-repeat center center/cover;
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.service-block:hover {
    transform: translateY(-5px);
}

.block-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.service-block ul {
    list-style: none;
    padding: 0;
}

.service-block li {
    margin-bottom: 0.5rem;
}

.service-block a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.3rem 0;
}

.service-block a:hover {
    color: white;
    transform: translateX(5px);
}

.service-block a i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    
    .location-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location-services {
        grid-template-columns: 1fr;
    }
    
    .location-section {
        padding: 4rem 0;
    }
}

         /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .mobile-menu {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
        }