 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: "Poppins", sans-serif;
     background-color: #f8f9fa;
     color: #333;
     line-height: 1.6;
 }

 /*-------------------------------------------------------------- Header Styles----------------------------------------- */
 .header {
     background: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .header-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1.5rem;
     font-weight: 600;
     color: #4285f4;
 }

 .logo-icon {
     color: #4285f4;
     font-size: 1.8rem;
 }

 .search-bar {
     flex: 1;
     max-width: 600px;
     margin: 0 30px;
     position: relative;
 }

 .search-bar input {
     width: 100%;
     padding: 12px 20px 12px 45px;
     border: 1px solid #ddd;
     border-radius: 24px;
     font-size: 1rem;
     background-color: #f1f3f4;
     transition: all 0.3s;
 }

 .search-bar input:focus {
     background-color: white;
     box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
     outline: none;
 }

 .search-icon {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: #5f6368;
 }

 .nav-links {
     display: flex;
     gap: 25px;
 }

 .nav-link {
     color: #5f6368;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }

 .nav-link:hover {
     color: #4285f4;
 }


 /* -----------------------------------------------Back to home button css------------------------------------------------ */

 .go-home-btn {
     display: inline-block;
     background: linear-gradient(90deg, #007bff, #6610f2);
     color: #fff;
     font-weight: 600;
     padding: 10px 25px;
     border-radius: 30px;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
     transition: all 0.3s ease;
 }

 .go-home-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4);
     text-shadow: 0 0 6px #fff;
 }

 /*---------------------------------------------------------------- Main Content------------------------------------------------- */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 30px 20px;
 }

 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
 }

 .section-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: #3c4043;
 }

 .view-all {
     color: #4285f4;
     text-decoration: none;
     font-weight: 500;
 }

 .view-all:hover {
     text-decoration: underline;
 }

 /*---------------------------------------------------------- Categories------------------------------------------------------ */
 /* .categories {
     display: flex;
     gap: 15px;
     margin-bottom: 30px;
     overflow-x: auto;
     padding-bottom: 10px;
 }

 .category {
     padding: 8px 16px;
     background: white;
     border: 1px solid #dadce0;
     border-radius: 18px;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .category:hover,
 .category.active {
     background: #4285f4;
     color: white;
     border-color: #4285f4;
 } */

 /* ------------------------------------------------------------------App Grid---------------------------------------------------- */
 .app-image {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .app-logo {
     height: 60px;
     width: 60px;
     border-radius: 12px;
     object-fit: cover;
 }

 .apps-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
     gap: 25px;
     margin-bottom: 50px;
 }

 .app-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .app-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
 }

 .app-image {
     height: 150px;
     /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2.5rem;
 }

 .app-info {
     padding: 15px;
 }

 .app-name {
     font-weight: 600;
     margin-bottom: 8px;
     color: #3c4043;
     font-size: 1rem;
     line-height: 1.4;
 }

 .app-developer {
     color: #5f6368;
     font-size: 0.85rem;
     margin-bottom: 10px;
 }

 .app-rating {
     display: flex;
     align-items: center;
     gap: 5px;
     margin-bottom: 12px;
 }

 .stars {
     color: #fbbc04;
 }

 .rating-count {
     color: #5f6368;
     font-size: 0.85rem;
 }

 .app-description {
     color: #5f6368;
     font-size: 0.85rem;
     line-height: 1.5;
     margin-bottom: 15px;
     display: -webkit-box;
     /* -webkit-line-clamp: 2; */
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .app-description-1 {
     color: #5f6368;
     font-size: 0.85rem;
     line-height: 1.5;
     /* margin-bottom: 15px; */
     display: -webkit-box;
     /* -webkit-line-clamp: 2; */
     -webkit-box-orient: vertical;
     overflow: hidden;
     margin-bottom: 5px;
 }

 .app-description-2 {
     color: #5f6368;
     font-size: 0.85rem;
     line-height: 1.5;
     /* margin-bottom: 15px; */
     display: -webkit-box;
     /* -webkit-line-clamp: 2; */
     -webkit-box-orient: vertical;
     overflow: hidden;
     margin-bottom: 10px;
 }

 .add-to-chrome {
     width: 100%;
     padding: 10px;
     background: #4285f4;
     color: white;
     border: none;
     border-radius: 4px;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.3s;
 }

 .add-to-chrome:hover {
     background: #3367d6;
 }


 /*------------------------------------------------------------ Footer------------------------------------------------ */
 .footer {
     background: white;
     border-top: 1px solid #dadce0;
     padding: 30px 0;
     margin-top: 50px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-links {
     display: flex;
     gap: 20px;
 }

 .footer-link {
     color: #5f6368;
     text-decoration: none;
     font-size: 0.9rem;
 }

 .footer-link:hover {
     color: #4285f4;
     text-decoration: underline;
 }

 .copyright {
     color: #5f6368;
     font-size: 0.9rem;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .header-container {
         flex-direction: column;
         height: auto;
         padding: 15px 20px;
     }

     .logo {
         margin-bottom: 15px;
     }

     .search-bar {
         margin: 0 0 15px 0;
         max-width: 100%;
     }

     .nav-links {
         gap: 15px;
     }

     .apps-grid {
         grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
         gap: 15px;
     }

     .footer-container {
         flex-direction: column;
         gap: 15px;
         text-align: center;
     }
 }