/* General Reset */
:root {
    --primary-font: 'Rubik', sans-serif;
    --bg-color: #f9f9f9;
    --text-color: #333;
    --link-color: #0066cc;
    --hover-link-color: #003366;
    --white: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

* {
   
}
ul{
    list-style: none;
}
.nav-content a{
    text-decoration: none;
}
body {
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

.iconn{
    font-size: 50px; /* Increase the size to make the icon larger */

}
.nav-content-icon a  {
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;   
}

.nav-content-icon a :hover {
    transform: scale(1.2); /* Slightly enlarge the icon when hovered */
    color: rgb(107, 104, 104); /* Change color on hover */
}


/* Background Sections */
.background-image {
    background-image: url("../images/1m.png");       
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.second-back {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(3, 51, 51, 0.607));
    background-size: cover;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0.9;
}

/* Logo Section */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo svg {
    max-width: 200px;
}
.logo img{
    width: 240px;
    height: 175px;
}

.nav-content {
    margin: 45px auto;
    display: flex; /* Enables Flexbox */
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
    text-align: center; /* Ensures text is centered */
    gap: 15px; /* Adds spacing between the items */
    padding: 20px; /* Optional: add padding for visual balance */
    border-radius: 10px; /* Optional: rounded corners */
}
.nav-content a {
    color:#ffffff;
    font-family :'Montserrat', sans-serif;
    font-size: 30px;
    line-height:30px;
    vertical-align:baseline;
    letter-spacing:10px;
    word-spacing:0px;
    font-weight:600;
    font-style:normal;
    font-variant:normal;
    text-transform:uppercase;
    text-decoration:none solid rgb(255, 255, 255);
    text-align:center;
    text-indent:0px;
    /* color:#ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 17px;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease; */
}
.nav-content  li {
    padding: 15px;
    
}
.nav-content a:hover {
    background-color: white;
    color: black;
    width: 100%;
}
/* Navigation Menu */
nav ul {
    /* display: flex; */
    justify-content: center;
    gap: 20px;
    list-style-type: none;
}

nav ul li a {
    text-transform: capitalize;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background-color: var(--overlay-color);
    border-radius: 5px;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.social-icons {
    display: flex;
    flex-direction: row;  /* Ensures the items are in a row */
    justify-content: flex-start;  /* Aligns the icons to the left */
    gap: 15px;
}

.social-icons a {
    display: block;
    color: var(--white);
    font-size: 20px;
    padding: 10px;
    /* background: var(--overlay-color); */
    border: 1px solid #ffffff;
    border-radius: 80%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #555;
}
/* Footer Links */
.search-bar {
    margin: auto;
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 30px;
    /* margin-top: 100px; */
    padding: 15px 0;
   
}

.search-bar ul {
    display: flex;
    gap: 30px;
}

.search-bar ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.search-bar ul li a:hover {
    padding: 10px;
    color: black;
    background-color: #ffffff;
    border-radius: 4px;
}

/* For screens up to 1200px wide (Laptops and small desktops) */
@media screen and (max-width: 1200px) {
    .container {
        width: 85%;
    }

    .nav-bar {
        padding: 15px 0;
        flex-direction: row; /* Ensure items stay in a row */
    }

    .nav-content {
        gap: 10px; /* Reduce gap for smaller screens */
    }

    .nav-content a {
        font-size: 25px; /* Adjust font size */
        letter-spacing: 8px; /* Reduce letter spacing */
    }

    .background-image, .second-back {
        height: 100vh; /* Adjust background height */
    }

    .social-icons a {
        font-size: 18px; /* Adjust icon size */
        padding: 8px;
    }
}

/* For screens up to 768px wide (Tablets) */
@media screen and (max-width: 768px) {
    .container {
        width: 85%;
    }

    .nav-bar {
        flex-direction: row; /* Stack logo and menu */
        align-items: center;
    }

    .nav-content {
        font-size: 22px; /* Smaller font size */
        letter-spacing: 6px; /* Adjust letter spacing */
    }

    .nav-content a {
        padding: 12px; /* Adjust padding */
    }

    .background-image, .second-back {
        height: 100vh; /* Reduce background height */
    }

    .social-icons {
        flex-direction: column; /* Stack icons vertically */
        gap: 10px;
    }

    .social-icons a {
        font-size: 16px;
        padding: 6px;
    }

    .search-bar {
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
    }
}

/* For screens up to 480px wide (Smartphones) */
@media screen and (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .nav-bar {
        padding: 20px;
        flex-direction: row;
        gap: 20px;
    }
    .social-icons ul{
        list-style: none;
    }
    .nav-content {
        gap: 8px;
    }

    .nav-content a {
        font-size: 18px; /* Reduce font size */
        letter-spacing: 4px; /* Adjust letter spacing */
    }

    .background-image, .second-back {
        height: 100vh; /* Reduce background height for small screens */
    }

    .social-icons a {
        font-size: 14px; /* Reduce icon size */
        padding: 5px;
        margin: 10px 0;

    }

    .search-bar ul {
        flex-direction: row; /* Stack links vertically */
        gap: 15px;
    }

    /* .search-bar ul li a {
        font-size: 15px; 
    } */
    .social-icons ul li {
        list-style: none;
        font-size: 20px;
        line-height: 20px;
        padding: 5px 0px;
    }
    .logo img{
        width: 140px;
        height: 90px;
    }
}
