/* Reset some default browser styles */
body {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    /*background-color: black;*/
}

.navbar {
    position: relative;
}

.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1100;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.navbar-toggler-icon {
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #2a9ae5;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: none;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Updated styles */
.navbar-collapse {
    display: none;
    position: absolute;
    top: 10px;
    left: 0;
    width: 140px;
    padding: 10px;
    border-radius: 5px;
    /*background-color: black;*/
}

/* Show the menu on hover and keep it visible when hovering over the menu itself */
.navbar-toggler:hover + .navbar-collapse,
.navbar-toggler:focus + .navbar-collapse,
.navbar-collapse:hover {
    display: block;
}

.navbar .navbar-nav {
    flex-direction: column;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 0;
    color: #2a9ae5;
}

.navbar-dark .navbar-nav .nav-link {
    color: #2a9ae5;
}

.nav-link:hover {
    color: rgba(157, 0, 255, 0.5);
}
ul {
    list-style-type: none; /* Removes the dots */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

li {
    margin: 0; /* Adds some spacing between the items */
    padding: 10px 0;
}

a {
    text-decoration: none; /* Removes the underline */
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    background-color: #f4f4f4;
}

.main-content img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: row;
        align-items: center;
    }

    .main-content {
        height: 250px;
    }
    .images{
        height: 250px !important;
    }
}
/* Connect Section */
.connect-section {
    padding: 40px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: 24px;
    color: #3d5170;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.tabs a {
    margin-right: 20px;
    font-weight: bold;
    color: #3d5170;
    text-decoration: none;
}

.tabs a.active {
    color: black;
}

.content {
    display: flex;
    justify-content: space-between;
}

.options {
    flex: 1 1 30%;
    margin-right: 20px;
}

.options h3 {
    font-size: 18px;
    color: #3d5170;
    margin-bottom: 15px;
}

.options ul {
    list-style: none;
    padding-left: 0;
}

.options li {
    margin-bottom: 10px;
}

.options label {
    display: flex;
    align-items: center;
}

.options input[type="checkbox"] {
    margin-right: 10px;
}

.form-container {
    flex: 1 1 65%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 18px;
    color: #3d5170;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    color: #3d5170;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

button {
    background-color: #3d5170;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .options {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.final-content-footer {
    background-color: #d4c9c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 0px;
    text-align: center;
}

.final-content-footer h2 {
    margin: 0;
    font-size: 2.5rem;
    color: darkblue;
    margin-bottom: 5px;
    font-weight: bold;
}

.social-icons {
    margin-bottom: 10px;
}

.footer-link {
    font-size: 2rem;
    margin: 0 5px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-link:hover {
    transform: scale(1.1);
}

/* Specific colors for each icon */
.footer-link i.fa-facebook-f {
    color: #3b5998;
}

.footer-link i.fa-twitter {
    color: #00acee;
}

.footer-link i.fa-instagram {
    color: #C13584;
}

.footer-link i.fa-youtube {
    color: #FF0000;
}
/* Mobile View Adjustments */
@media (max-width: 767px) {
    .navbar-collapse {
        width: 100px; /* Reduce width for mobile */
        padding: 5px; /* Reduce padding for mobile */
    }

    .navbar .navbar-nav .nav-item {
        padding: 4px 0; /* Reduce padding for each item */
        font-size: 15px; /* Reduce font size for mobile */
    }
    .text-overlay{
        display: none;
    }
}