/* Main Styles for Korturl */

/* General Styling */
body {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

a {
    color: #337ab7;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #23527c;
    text-decoration: underline;
}

.clear {
    clear: both;
}

/* Header Styling */
header {
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.head_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head_logo {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.site-description {
    font-size: 14px;
    margin: 5px 0 0;
    font-weight: 300;
}

.my_menu {
    display: flex;
    align-items: center;
}

/* Menu Styling */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.main-navigation li {
    display: inline-block;
    position: relative;
    margin-left: 20px;
}

.main-navigation a {
    color: #333;
    display: block;
    padding: 10px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: #337ab7;
    text-decoration: none;
}

/* Page Header */
.page_head {
    background-color: #f5f5f5;
    padding: 100px 0 50px;
    text-align: center;
}

.hustler_hp_head_sec_head {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hustler_hp_head_sec_desc {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Section */
.feature_con {
    padding: 50px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.my_feature {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 50%;
    box-sizing: border-box;
}

.feat {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feat:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feat i {
    color: #337ab7;
    margin-bottom: 15px;
}

.feat h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hustler_hp_feat_sec_desc_1 {
    min-height: 120px;
    margin-bottom: 20px;
}

.feat_btn {
    background-color: #337ab7;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feat_btn:hover {
    background-color: #23527c;
}

/* Content Area */
.page-content {
    padding: 50px 0;
}

/* Sidebar */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-form {
    position: relative;
}

.search-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.search-submit {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #337ab7;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 3px 3px 0;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 50px 0 20px;
}

footer .widget-title {
    color: #fff;
    border-bottom-color: #333;
}

footer a {
    color: #aaa;
}

footer a:hover {
    color: #fff;
}

.copy_right {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Media Queries */
@media (max-width: 768px) {
    .main-navigation ul {
        text-align: center;
    }
    
    .main-navigation li {
        margin: 0 10px;
    }
    
    .page_head {
        padding: 80px 0 30px;
    }
    
    .hustler_hp_head_sec_head {
        font-size: 28px;
    }
    
    .hustler_hp_feat_sec_desc_1 {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .my_feature {
        width: 100%;
    }
}
