* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar-toggler-icon {
    display: none;
}

.hide {
    display: none;
}

/* Main Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 6rem;
    background-color: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.3s ease-in-out;
}

/* Sticky Header */
.sticky-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    top: -150px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: top 0.3s;
}

/* Logo styling */
.logo img {
    max-width: 300px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 19px;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.contact-info i {
    color: #d4a017;
}

/* Navigation styling */
/* Dropdown Menu Styling */
.dropdown:hover .dropdown-menu {
    display: block;
    padding: 10px;
    width: 10rem;
    height: auto;
    background-color:#0c3c6d; 
    color: rgb(255, 255, 255);
}

.dropdown-menu a{
    width: 100px;
}
.dropdown-menu a{
    color: #ffffff;
    font-size: 15px;
}
.dropdown-menu a:hover{
    color: #d4a017;
}

.main-nav {
    margin-top: 1rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d4a017;
}

/* Sticky header styling for nav */
.sticky-header nav ul li a {
    color: #000;
}

/* Background Image Section */
.background {
    background-image: url('img/home.jpg');
    /* Your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
    /* Ensures background image is positioned relative to the parent */
}

/* Hero Section */
.hero {
    color: #000000;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    padding: 1rem;
}

.hero h1 {
    font-weight: bold;
    font-size: 3rem;
    margin: 0;
}

.hero strong {
    display: block;
    margin-left: 11.5rem;
    left: 50%;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    header {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 992px) {
    header {
        background-color: #000;
        color: #fbfbfb;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 2rem;
        padding-bottom: 3rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        margin-top: 20px;
        max-width: 550px;
    }

    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        font-size: 19px;
        text-align: center;
    }

    .contact-info a {
        background-color: #d4a017;
        border-radius: 50%;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: transparent;
        font-size: 0;
    }
}