body {
    font-family: Arial, sans-serif;
    padding-top: 56px; 
    /* background-color: #E6F7FB; */
    font-size: 24px;
}

/* =================== Navbar =========== */

.navbar {
    /* background:  linear-gradient(to right, rgba(0, 151, 178), rgba(0, 119, 140));  */
    /* background-color:  #1A3A4A;  */
    background-color: #0097B2;
    /* background-size: cover; */
    padding: 15px 0 !important;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    opacity: 0.9;
    margin-left: 10px;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.active {
    font-weight: 900 !important;
    opacity: 1;
}

.navbar-nav .nav-link:hover {
    opacity: 1;
    font-weight: 900;
}

.navbar-brand {
    font-weight: 600;
    color: #ffffff;
    font-size: 1em;
}

.navbar-brand:hover {
    color: #ffffff;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    color: #ffffff !important;
}

.navbar-toggler {
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
}

.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    background-color: #0097B2; /* shade of #0097B2 */
    border: none;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255,.5)/* light translucent shade */
}

.btn-get-in-touch {
    background-color: #0097B2; 
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 20px;
}

.btn-get-in-touch:hover {
    font-size: 0.7em;
    font-weight: 600;
    color: #ffffff;
}

/* ====== Hero Container */
.auto-type {
    display: inline-block;
    position: relative;
}

.auto-type::after {
    content: '|';
    position: absolute;
    right: -7px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.container-div {
    max-height: 100vh;   
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-image: url(../pictures/back3.jpg) !important;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
} 

.container-div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #fff; 
    clip-path: ellipse(50% 100% at 50% 100%);
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    /* color: #005F76; */
}

.hero h3 {
    font-size: 2rem;
    font-weight: bold;
    /* color: #007A92;  */
}

.hero-image {
    margin-left: 100px;
    max-width: 600px;
    height: 400px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #0097B2;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

/* ========= Media queries section ========= */
@media(max-width : 1199px) {
    .hero-image {
        display: none;
    }
}

@media(max-width:767px) {
    .container-div {
        padding-bottom: 30px;
    }
    .hero-text h2 {
        font-size: 1.6rem;
    }
    .btn-get-in-touch {
       margin-left: 0 !important;
    }
}

@media (max-width:577px) {
    .hero-text {
        padding: auto 30px;
        text-align: center;
        margin-left: 0;
    }
}
