/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin-top: 90px;
    padding-top: 0px;
}

/* Navbar Styles */
.navbar {
    background-color: #f8f9fa;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.nav-link:hover, .nav-link.active {
    color: #f0a500;
}
.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text-title {
    font-size: 1.5rem;
    margin: 0;
}

.logo-subtext {
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Styles */
.modal-header {
    background-color: #007bff;
    color: white;
}

.modal-title {
    margin: 0;
}

/* Card Styles */
.card {
    border: none;
}

.card-title {
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.9rem;
}

/* Contact Section */
#contact {
    background-color: #343a40;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        width: 40px;
        height: 40px;
    }
}


/* Internship Section Styles */
.container {
    margin-top: 80px;
     /* Adjust margin to accommodate fixed navbar */
}
.container h2{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
}

/* Internship Card Styles */
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Card Image Styles */
.card-img-top {
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Ensure images cover the area */
}

/* About Section Styles */
h4 {
    margin-top: 20px; /* Add spacing above heading */
}

ul {
    list-style-type: disc; /* Use disc bullets for the list */
    margin-left: 20px; /* Indent list items */
}


.btn-primary {
    background-color: #f0a500;
    border: none;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #cc8500;
}
