* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    font-family: Arial, sans-serif;
}

.navbar-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    max-height: 30px;
}

.left {
    display: flex;
    gap: 25px;
    margin-left: 200px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-right:200px ;
}

.menu li a {
    text-decoration: none;
    color: black;
}


.navbar-b {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    margin-left: 200px;
    margin-right: 200px;
}

.logo {
    height: 50px;
    width: 50px;

}

.search-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    
    margin-left: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.category-dropdown {
    border: none;
    /* padding: 10px; */
    outline: none;
}

.search-button {
    background-color: #3460E9;
    color: white;
    
    border: 1px solid #3460E9;
    
    cursor: pointer;
    font-size: 16px;
}
.search-button:hover{
    background-color: #3628E5;
}

.advanced-search {
    color: #898989;
    text-decoration: none;
    font-size: 13px;
}

.advanced-search:hover{
    color: #3460E9;
}

/* Sort by category style */
.category-btn {
    background: white;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #898989;
}

.category-btn:hover {
    background: #f3f3f3;
}

.category-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    gap: 50px;
    width: 600px;
    top: 100%;
    left: 0;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.column {
    flex: 1;
    min-width: 150px;
    padding: 10px;
}

.column h4 {
    margin: 5px 0;
    font-size: 16px;
}

.column p {
    margin: 5px 0;
    font-size: 13px;
    color: #898989;
    cursor: pointer;
}

.column p:hover {
    text-decoration: underline;
}

/* Show dropdown on hover */
.category-dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.search-input {
    flex-grow: 1;
    padding: 10px;
    margin-left: 20px;
    font-size: 14px;
}
hr{
    opacity: 70%;
    margin-top: 0;
}


/* header part upto here */
body {
    background-color: #fff;
    color: #333;
}

.top-nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-right: 20px;
    display: flex;
}

.logo span:nth-child(1) { color: #e53238; }
.logo span:nth-child(2) { color: #0064d2; }
.logo span:nth-child(3) { color: #f5af02; }
.logo span:nth-child(4) { color: #86b817; }

.title {
    font-size: 1.8rem;
    color: #333;
    margin-left: 80px;

}

/* Search Bar */
.search-container {
    position: sticky;
    margin: 30px 0;
    width: 100%;
    
    top: 0;
}

.search-input {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    
    border-radius: 8px;
    background-color: #f5f5f5;
    cursor: pointer;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #0064d2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTAINER-2  */
.container-2 {
    display: flex;
    width: 94%;
    margin: 50px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.section {
    flex: 1;
    padding: 30px;
    
    min-height: 300px;
}

.left-section {
    background-color: skyblue;
}

.middle-section {
    background-color: rgb(186, 225, 241);
}
.right-section {
    background-color: rgb(184, 226, 243);
}

/* h2, h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
}
a {
    text-decoration: none;
    color: white;
    
}
a p {
    font-size: 16px;
    margin: 0;
    padding: 0px;
    border-radius: 5px;
    transition: background 0.3s;
}
a:hover h4 p {
    background-color: #dceeff;
} */

.sign-in {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.sign-in:hover {
    background-color: #005bb5;
}

a {
    color: black;
    text-decoration: none;
    
}

a:hover {
    text-decoration: underline;
}

/* Browse Help Articles */
.article-section {
    margin: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.article-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #0064d2;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Help Section */
.help-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.signin-box {
    background: #e8f4ff;
    padding: 32px;
    border-radius: 8px;
}

.signin-button {
    background: #0064d2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.3s;
}

.signin-button:hover {
    background: #0056b3;
}

.register-link {
    color: #0064d2;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.help-link:hover {
    background: #eee;
}

.help-text {
    flex: 1;
}

.popular-tag {
    color: #666;
    font-size: 0.9rem;
    margin-top: 4px;
}

.arrow {
    color: #0064d2;
    font-size: 1.5rem;
}

/* Need More Help Section */
.help-section {
    text-align: center;
    background-color: rgb(195, 188, 236);
    padding: 40px 20px;
    margin: 30px auto;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: 0px;
  }
  
  .notice {
    top: 0;
    background-color: rgb(230, 230, 122);
    padding: 20px;
    padding-left: 5%;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    height: 90px;
    display: flex;
    place-items: center;
    
    box-shadow: 0 2px 5px darkgoldenrod;
    
    margin-top: 0%;
  }
  
  .contact-box {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 20px 0;
    
  }
  .options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .options a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    font-size: 16px;
  }
  
  .options a:hover {
    text-decoration: underline;
  }  

/* Responsive Design */
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .help-section {
        grid-template-columns: 1fr;
    }

    .signin-button {
        width: 100%;
    }
}

.same-footer {
    margin-top: 20px;
    font-size: 14px; 
    padding-top: 12px;
    text-align: center;
    }
  
    .same-footer p {
    margin: 0;
    }
  
    .same-link {
    color: #3b82f6; 
    text-decoration: none;
    }
  
    .same-link:hover {
    text-decoration: underline;
    }