*{
    font-family: "urbanist";
    font-size: large;
}
body {
    background-color: #0D1B2A; 
    color: #EAEAEA; 
}

.navbar {
    background-color: #091E42;
}

.navbar-brand,
.nav-link {
    color: #f9fffe !important; 
}
.navbar li a {
    transition: color 0.3s ease;
}

.navbar li a:hover {
    color: rgba(199, 153, 199, 0.7) !important;
}

.btn-primary {
    background-color: #600586;
    border: none;
}

.btn-primary:hover {
    background-color: #ffffff;
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.project-card {
    background-color: #091E42;
    border-radius: 10px;
    color: #FFFFFF;
}
.card {
background-color:#091E42; 
color: white;
border: none; 
border-radius: 8px; 
box-shadow: 0 8px 20px rgba(128, 0, 128, 0.7);
transition: transform 0.3s, box-shadow 0.3s; 
/* border: 2px solid white; */
}

.card:hover {
transform: translateY(-5px); 
box-shadow: 0 8px 20px rgba(128, 0, 128, 0.7) !important;
}

.card-title {
color: #ffffff;
}

.card-text {
color: #6c757d;
}


.btn-primary:hover {
background-color: #0056b3;
}
footer {
background-color: #091E42 !important;
color: aliceblue;
}
footer h3 {
margin-bottom: 10px;
color: aliceblue;
}

footer ul {
list-style-type: none;
padding: 0;

}
footer li a {
color:aliceblue;
text-decoration: none;
}
/* about */
.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.team-member {
    background-color: #091E42;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(128, 0, 128, 0.7);
}

.member-name {
    color: #ffffff;
    font-weight: bold;
}

.member-role {
    color: #EAEAEA;
}
/* background-color: #0D1B2A; */
/* Contact */
.bgx {
    /* background-image: linear-gradient(45deg, #903060, #6D28D9); */
    background-color: #0D1B2A; 
    margin: 0;
    padding: 5rem;
    color: #fff; 
}

.contactSection {
    margin-top: 2em;
}

.contactformContainer {
    display: flex;
    flex-direction: column;
    order: 1;
}

.contactPic {
    order: 0;
    width: 150px;
    background-color: #0D1B2A; 
    border-top-left-radius: 20%;
}

.contactPic img {
    width: 100%;
    border-radius: 20%;
}

.contactForm div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contactInput {
    width: 100%;
    font-size: 1rem;
    padding: 0.8em;
    margin-bottom: 1em;
    border-radius: 10px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
}

.contactInput::placeholder {
    color: #ccc;
}

.contactBtn {
    width: 200px;
}

.gridSection {
    display: grid;
    align-items: center;
    gap: 40px;
    margin-bottom: 5em;
}

#sectionPic {
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.sectionPic img {
    width: 100%;
    border-radius: 10px;
}

.btn {
    border: 1px solid #fff;
    border-radius: 50px;
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    padding: 0.7em 1.5em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: #333;
    transform: scale(1.05);
}

.primaryBtn {
    background-color: #3d51f2;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-30px); }
    50% { transform: translateY(30px); }
}

.bouncepic img {
    animation: bounce 15s infinite;
}

.sectionHeader {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.7em;
}

.sectionPara {
    font-size: 1rem;
    margin-bottom: 3em;
}

@media screen and (min-width: 800px) {
    .contactformContainer {
        order: 0;
    }
    
    .contactPic {
        order: 1;
    }

    section {
        width: 85%;
    }

    .gridSection {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1000px) {
    .sectionHeader {
        font-size: 3rem;
    }
}
.robot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff; 
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.robot-icon:hover {
   background-color:rgba(128, 0, 128, 0.7);
   color: white;
   text-decoration: none;
}
.robot-icon span {
    margin-left: 8px; 
}