
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1221;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    animation: subtle-movement 10s infinite alternate;
}

.page-title-section h1 {
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.service-box {
    background-color: #1c2033;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #2c3347;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,55,95,0.2), 
        transparent
    );
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255,55,95,0.2);
    border-color: rgba(255,55,95,0.5);
}

.service-box h3 {
    color: #ff374f;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-box ul {
    list-style-type: none;
}

.service-box ul li {
    color: #a0aec0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-box ul li::before {
    content: '•';
    color: #ff374f;
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-title-section h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes subtle-movement {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-section {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .box-grid {
        grid-template-columns: 1fr;
    }

    .page-title-section h1 {
        font-size: 1.8rem;
    }
}