:root {
    --primary-blue: #1768b0;
    --white: #fcfcfc;
    --grayish-brown: #877373;
    --light-blue: #b2c4d8;
    --red: #b52728;
    --medium-blue: #6494c5;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
    color: #333;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    padding: 80px 0;
}

.section-title {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}
 .map-container {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--light-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card .card-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.service-card h5 {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--grayish-brown);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--medium-blue);
    border-color: var(--medium-blue);
}

.alert-success {
    background-color: var(--light-blue);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.alert-danger {
    background-color: #ffeaea;
    border-color: var(--red);
    color: var(--red);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(23, 104, 176, 0.25);
}

.tech-domain-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-domain-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tech-domain-card h5 {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.tech-domain-card h5 i {
    margin-right: 10px;
    color: var(--medium-blue);
}

.tech-domain-card p {
    color: var(--grayish-brown);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--grayish-brown);
    position: relative;
    padding-left: 1rem;
}

.service-card ul li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

footer {
    background-color: var(--grayish-brown);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 3rem;
}