body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6f61, #ffcc00);
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.section:hover {
    transform: scale(1.02);
}

.section h2 {
    margin-top: 0;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.list-group-item {
    background-color: #ffcc00;
    color: #000;
    border: 1px solid #ff6f61;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.list-group-item:hover {
    background-color: #ff6f61;
    color: #fff;
}

#contactForm .form-control {
    background-color: #ffcc00;
    color: #000;
    border: 1px solid #ff6f61;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#contactForm .form-control:focus {
    background-color: #ff6f61;
    color: #fff;
    border-color: #000;
}

.btn-primary {
    background-color: #ff6f61;
    border-color: #ff6f61;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

.row {
    display: flex;
    align-items: center;
}

.col-md-6 {
    padding: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 1s forwards;
}

/* Hover Effects */
.navbar-dark .navbar-nav .nav-link {
    color: #ffcc00;
    transition: color 0.3s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff6f61;
}

.img-fluid {
    transition: transform 0.3s ease-in-out;
}

.img-fluid:hover {
    transform: scale(1.1);
}

/* Background Patterns */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.png');
    opacity: 0.1;
    z-index: -1;
}

/* Interactive Elements */
.section:hover::before {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}