/* Base Styles */
body {
    background-color: #fafafa;
    font-family: 'Epilogue', sans-serif;
    margin: 0;
    padding: 0;
    max-height:100vh;
}

/* Navigation */
nav {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    width: 87px;
    height: 35px;
    margin: 20px;
}

.nav-div {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left:0;
}
nav .nav-div{
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction:row;

}
.link {
    font-size: 15px;
    text-decoration: none;
    font-weight: 400;
    color: #686868;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.link:hover {
    color: #000;
    font-weight: 500;
}

.nav-div-2nd {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 40px;
    margin-left: 67px;
}

#btn {
    padding: 10px 20px;
    border: 1px solid #686868;
    border-radius: 10px;
    background: none;
    cursor: pointer;
    font-family: 'Epilogue', sans-serif;
}

#btn:hover {
    border-color: #000;
}

/* Title Section */
.title-div{
    margin-left: 135px;
    margin-top: 110px;
    align-items:start;
    flex-direction: column;
    display: flex;

}
.container{
    display: flex;
    flex-direction:row;
}

.title{
    font-size:5rem;
    font-weight: 650;
    margin-right:150px;
    margin-bottom:0;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    background-color: white;
    width: 140px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1;
    top: 100%;
    left: 0;
    height: 160px;
    display: none;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    padding-left: 35px;
    padding-top:30px;
}
.mini-icons{
    margin-right: 12px;
}
.items{
    display: flex;
    flex-direction:row;
    margin-left:30px;
}

.arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown-content p {
    color: #333;
    font-size: 14px;
    margin-left:0;
]
position:absolute;
}

.dropdown-content p:hover {
    color: #000;
    font-weight: 500;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown.active .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero{
    display: flex;
    justify-content:end;
    align-items: center;
    width:480px;
    flex-direction: column;
    margin-right:10px;
    margin-bottom:300px;
}

.hero-div{
    display: flex;
    flex-direction: column;
    justify-content:end;
    align-items:end;
}

.dropdown-content-no-2{
    position: absolute;
    width: 120px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1;
    top: 100%;
    left: 0;
    height: 140px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align:start;
}

.dropdown-content-no-2 p {
    color: #333;
    font-size: 14px;
}
.dropdown-content-no-2 p:hover {
    color: #000;
    font-weight: 500;
}

.arrow-2 {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}
.dropdown.active .arrow-2 {
    transform: rotate(180deg);
}
.arrow-2{
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.dropdown.active .arrow-2 {
    transform: rotate(180deg);
}
.dropdown.active .dropdown-content-no-2 {
    display: block;
    animation: fadeIn 0.3s ease;
}
.items-2{
    display: flex;
    margin-left:25px;
    margin-top:20px;
}
.description{
    display: flex;
    flex-direction: column;
    color: #686868;
    font-family: 'Epilogue', sans-serif;
    margin-top: 50px;
    font-size:16px;
}
.btn{
    width:163px;
    height: 56px;
    border-radius:12px;
    background:black;
    color: white;
    font-family: 'Epilogue', sans-serif;
    font-weight: bold;
    transition: 0.5s;
    margin-top: 40px;
    margin-bottom: 30px;
}
.btn:hover{
    background:white;
    color:black;
    border:1px black solid;
    cursor: pointer;
    transition: 0.3s;
}
#sponser{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top:70px;
    column-gap: 30px;
}
