body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}


header {
    background:rgb(94, 94, 245);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    background-image: url(images/qq.jpg);
    background-position: center;
    background-size: cover; 
    
}
header h1{
    color: black;
    font-size: 50px;
}

header .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background:blue;
    margin-top: -15px;
}

header .top-bar .social-media img {
    width: 40px;
    margin: 0  5px;
    border-radius: 20px;
}

header .top-bar .contact-info {
    color: #fff;
}

header .logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
    filter: brightness(1.2) contrast(1.2); /* Adjust brightness and contrast */
}
.log{
    left: 10px;
}

.internintro{
    font-size: large;
    font-weight: bold;
    text-align: center;
}
nav {
    background: blue;
    color: #fff;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}
nav a{
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: font-size 0.1s ease;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4CAF50;
}
    

nav a:hover {
    font-size: 20px; /* Increase font size on hover */
}





footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
   
   
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.footer-section h3 {
    color: #4CAF50;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.contact-details {
    text-align: left;
}

.contact-details p {
    margin: 5px 0;
}
.social-medias img{
    width: 30px;
    height: 30px;
    display:inline-block;
    padding: 10px;
    transition: transform 0.3s ease;
    border-radius: 20px
}

.social-medias img:hover {
    transform: scale(1.2); /* Scale up the image by 20% on hover */
}



.social-media img{
   
    transition: transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.2); /* Scale up the image by 20% on hover */
}






.about {
    margin-top: 20px;
    padding: 20px;
    margin: auto;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.we-are {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.we-are .text {
    flex: 1;
    padding-right: 20px;
}

.we-are .image {
    flex: 1;
    text-align: right;
}

.we-are .image img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-right: 100px;
}




.welcome {
    margin-left: 100px;
}
.welcome h2{
    text-align: center;
    font-weight: bold;
    text-shadow: #242323;
    padding: 10px;
    font-size: 30px;
}
.welcome p{
    
   font-weight: none; 
}

.about{
    text-align: center;
    border-style: double;
    margin-top: 10px;
}
.about p{
    font-weight: bold;
}


.abtus{
    background-color: antiquewhite;
}

.we-are{
    margin-left: 50px;
}
.we-are p{
    font-weight: bold;
}

.we-are h2{
    text-align: center;
}



/*inquiry form*/

/* Existing CSS code */

/* Fixed and positioned form */
form {
    margin: 0 auto; /* Centers the form horizontally */
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 800px;
    position: relative; /* Allows further adjustments, if necessary */
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.submit {
    background-color: #4CAF50;
    color: white;
}

.cancel {
    background-color: #f44336;
    color: white;
}



/* Floating image link */
.floating-image {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shake 0.5s infinite;
}

.floating-image img {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    transition: transform 0.3s ease;

}

.floating-image img:hover {
    transform: scale(1.3); /* Scale up the image by 20% on hover */
}

.floating-image span {
    display:inline-flex;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    background-color:orange;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 30px;
    margin-bottom: 70px;
}

/* Keyframes for the shaking animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}





/* Media Queries */
@media (max-width: 1200px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .we-are {
        flex-direction: column;
    }
    .we-are .image {
        text-align: center;
        margin: 0;
    }
    .we-are .text {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    header .top-bar {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-section {
        margin: 10px 0;
    }
    .floating-image {
        bottom: 10px;
        right: 10px;
    }
    form {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    nav a {
        padding: 15px;
        font-size: 14px;
    }
    header h1 {
        font-size: 40px;
    }
    .welcome h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    header .top-bar {
        padding: 0.5rem;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-section {
        margin: 5px 0;
    }
    .welcome {
        margin-left: 0;
    }
    .we-are {
        margin-left: 0;
    }
    .we-are .image img {
        max-width: 100%;
        margin-right: 0;
    }
    form {
        width: 90%;
    }
}




/*administrators*/
.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
}
.clients-container p{
    font-weight: bold;
}
.clients1 h1,h3{
    text-align: center;
}

.client {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: calc(33% - 40px);
    box-sizing: border-box;
    
    
}

.client:nth-child(3n+1) {
    background-color: #e1f7d5;
}

.client:nth-child(3n+2) {
    background-color: #ffbdbd;
}

.client:nth-child(3n) {
    background-color: #c9c9ff;
}

@media screen and (max-width: 768px) {
    .client {
        width: calc(50% - 40px);
    }
}

@media screen and (max-width: 480px) {
    .client {
        width: calc(100% - 40px);
    }
}


.contact-info {
    align-self: center;
    padding: 10px;
}

.phone-number {
    color:white; /* Visible color against blue background */
    text-decoration: none;
    font-weight: bold;
}

.phone-number:hover {
    text-decoration: underline;
}




.admin{
    text-align: center;
    background-color: white;
    font-family: Arial, sans-serif;
   
}
.admin p{
    font-weight: bold;
}


.admin {
    padding: 20px;
    text-align: center;
}

.admin-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-style: double;
    background-color:#ddd;
}

.admin-section img {
    max-width: 100%;
    height: auto;
    margin-top: 0;
}

.admin-details {
    max-width: 500px;
    margin-left: 20px;
    text-align: left;
}

.phone-number2 {
    color:blue; /* Visible color against blue background */
    text-decoration: none;
    font-weight: bold;
}

.phone-number2:hover {
    text-decoration: underline;
}

.phone-number3 {
    color:blue; /* Visible color against blue background */
    text-decoration: none;
    font-weight: bold;
}

.phone-number3:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .admin-section {
        flex-direction: column;
        text-align: center;
    }
    .admin-details {
        margin-left: 0;
        text-align: center;
    }
}

