/* Basic reset */
* {
    font-family: 'Parisienne', cursive;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar {
    height: 80px; /* Adjusted height */
    display: flex;
    align-items: center;
    background-color: rgb(220, 241, 250);
    padding: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 1000; /* Ensure navbar is on top */
}

.navbar:hover {
    background-color: rgb(200, 230, 250);
}

.navbar-brand img {
    height: 60px;
    margin-right: 20px;
    margin-left: 100px; /* Add a default left margin */
    transition: transform 0.3s ease, margin-left 0.3s ease; /* Add transition for margin-left */
}

@media (max-width: 1200px) {
    .navbar-brand img {
        margin-left: 15px; /* Adjust left margin for smaller screens */
    }
}

@media (max-width: 992px) {
    .navbar-brand img {
        margin-left: 10px; /* Adjust left margin for even smaller screens */
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        margin-left: 5px; /* Adjust left margin for smallest screens */
    }
}


.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3E%3Cpath stroke="currentColor" stroke-width="2" d="M5 7h20M5 15h20M5 23h20" /%3E%3C/svg%3E');
}

/* Style for the collapsible navbar menu */
.navbar-collapse {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
}

/* Ensure that the menu items are hidden by default */
.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 10px; /* Space between items */
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    display: block;
    text-decoration: none;
}

.extra_box {
    height: 60px;
    width: 120px; /* Adjusted width */
    border-radius: 10%; /* Rounded corners on the left */
    background-color: rgb(220, 241, 250);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.2rem;
    color: black; /* Ensure text color is visible */
    z-index: 1001; /* Ensure extra_box is on top */
}

.extra_box:hover {
    border: 2px solid black;
    background-color: aqua;
    opacity: 100%;
    border-radius: 10%;
    transform: scale(1.05);
}


footer {
    background-color: rgb(220, 241, 250);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-section {
    background-color: rgb(220, 241, 250);
    padding: 60px 0;
    border-radius: 10px; /* Border radius for the entire section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);


}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 10px; /* Box around the title */
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;

}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-details {
    margin-top: 20px;
}

.contact-details h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.social-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Rounded social icons */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.contact-form .form-label {
    font-size: 1rem;
    color: #333;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 2px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
