* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #fff;
    color: #000;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.logo-ca {
    max-width: 120px;
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.company-name {
    font-size: 2.5rem;
    color: #000; /* Black color */
    margin-bottom: 5px;
    font-weight: bold;
    border-bottom: 2px solid #005B94;
    display: inline-block;
    padding-bottom: 5px;
}

.company-subtitle {
    font-size: 1.5rem;
    color: #005B94;
    margin-bottom: 20px;
}

.main-nav {
    margin-top: 20px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: #005B94;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #005B94;
    color: #fff;
}

.contact-section {
    background-color: #005B94;
    color: #fff;
    padding: 50px 0;
    margin-top: 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #FF5500;
    bottom: 0;
    left: 25%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-card-inner {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-qualification {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.contact-phone svg {
    margin-right: 10px;
}

.contact-phone a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone a:hover {
    color: #fff;
    text-decoration: underline;
}

.services-section {
    background-color: #f5f5f5;
    color: #333;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23005B94" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 20px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.service-item {
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid transparent;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #005B94;
}

.service-icon {
    margin-bottom: 15px;
    background-color: rgba(0, 91, 148, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background-color: rgba(0, 91, 148, 0.2);
    transform: scale(1.1);
}

.service-item span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.footer-section {
    background-color: #005B94;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 10px 0;
}

.contact-info img {
    margin-right: 10px;
}

.address {
    margin-top: 20px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid #005B94;
}

.form-title {
    color: #000;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.form-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border: 1px solid #005B94;
    box-shadow: 0 0 5px rgba(0, 91, 148, 0.3);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #005B94;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 10px auto 0;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #004275;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .company-subtitle {
        font-size: 1.2rem;
    }
    
    .service-item {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}