body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.header h1 {
    font-size: 2.5em;
    margin: 0;
}

.header p {
    font-size: 1.2em;
    margin-top: 10px;
}

main {
    margin-top: 20px;
}

.contact-section {
    background: white;
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-container {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: bold;
    color: #333;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}

.contact-form input, .contact-form textarea {
    padding: 15px 20px 15px 45px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2em; 
    transition: border-color 0.3s ease;
    width: 100%; 
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #2575fc;
}

.contact-button {
    background: linear-gradient(45deg, #ff8008 0%, #ffc837 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    width: fit-content;
    align-self: flex-start;
}

.contact-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ffc837 0%, #ff8008 100%);
}

.illustration-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-container img {
    max-width: 100%;
    border-radius: 10px;
}

.contact-info {
    background: #f0f4f8; 
    color: #333; 
    padding: 60px 20px;
    border-top: 5px solid #007bff; 
    position: relative;
}

.contact-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info .section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: #007bff; 
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-item {
    background: #ffffff; 
    border-radius: 10px;
    padding: 30px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.contact-item:hover {
    background: #f8f9fa; 
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-item .contact-icon {
    font-size: 3rem;
    color: #007bff; 
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-item p {
    font-size: 1.125rem;
    margin: 5px 0;
}

.contact-item a {
    color: #007bff; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0056b3; 
}
.footer {
    background-color: #3498db;
    color: #ffffff; 
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 0 20px;
    min-width: 200px;
}

.footer-section.logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-section.logo p {
    font-size: 1rem;
    color: #ffffff; 
}

.footer-section.links h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 8px;
}

.footer-section.links ul li a {
    color: #ffffff; 
    text-decoration: none;
}

.footer-section.links ul li a:hover {
    text-decoration: underline;
}

.footer-section.social h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: #ffffff; 
    background-color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons .social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icons .social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icons .social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icons .social-icon.instagram:hover {
    background-color: #e4405f;
}

.footer-section.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex: 1;
    font-size: 1rem;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff; 
    color: #3498db;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.newsletter button:hover {
    background-color: #3498db; 
    color: #ffffff; 
}

.footer-bottom {
    background-color: #2980b9; 
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 1rem;
    margin: 0;
}
.home-icon {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    font-size: 24px;
    color: #000;
    background: #fff; 
    border-radius: 50%; 
    padding: 10px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); 
    text-decoration: none;
  }
  
  .home-icon:hover {
    color: #007bff; /* Color change on hover */
  }
