body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #00E5FF; /* Cyan */
}

.navbar {
    background-color: #0D2341; /* Dark blue */
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.nav-link {
    font-size: 1.1rem;
    color: #fff !important;
}

.nav-link.active {
    color: #FF4081 !important; /* Pink */
}

.btn-primary {
    background-color: #FF4081; /* Pink */
    border-color: #FF4081;
}

.btn-primary:hover {
    background-color: #e6316f; /* Darker pink */
    border-color: #e6316f;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
}

.hero-section .lead {
    font-size: 1.5rem;
}

.service-card {
    background-color: #1a1a1a;
    border: none;
    color: #fff;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 4rem;
    color: #00E5FF;
    margin-bottom: 1rem;
}

.bg-light-section {
    background-color: #1a1a1a;
    color: #fff;
}

.why-us-list i {
    color: #00E5FF;
}

.testimonials .carousel-item p {
    font-size: 1.25rem;
}

.footer {
    background-color: #000;
    color: #fff;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF4081; /* Pink */
}

.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/about-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-section h1 {
    font-size: 4rem;
}

.value-card {
    background-color: #1a1a1a;
    border: none;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 4rem;
    color: #FF4081; /* Pink */
    margin-bottom: 1rem;
}

.team-member-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.service-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/service-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-hero-section h1 {
    font-size: 4rem;
}

.service-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.service-item h3 i {
    color: #00E5FF; /* Cyan */
}

.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-hero-section h1 {
    font-size: 4rem;
}

.map-container {
    height: 400px;
    width: 100%;
}