


/* downloads */




        body {
            background: #000;
            color: #fff;
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .main-section {
            position: relative;
            padding: 60px 20px;
            background:  #1a1a2e;
        }

        .main-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #1a1a2e;
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 100px auto;
            position: relative;
            z-index: 1;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .main-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
        }

        .main-subtitle {
            color: #9ca3af;
            margin-bottom: 40px;
            font-size: 1.3rem;
        }

        .category-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .category-btn {
            background: #1a1a2e;
            border: 2px solid #00bcd4;
            color: #00bcd4;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            backdrop-filter: blur(10px);
        }

        .category-btn:hover, .category-btn.active {
            background: linear-gradient(45deg, #00bcd4);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
        }

        .category-section {
            margin-bottom: 80px;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #00bcd4;
        }

        .category-title {
            font-size: 2.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .category-title.games {
            color: #00bcd4;
        }

        .category-title.ebooks {
            color: #e91e63;
        }

        .category-title.software {
            color: #00bcd4;
        }

        .category-title.tools {
            color: #e91e63;
        }

        .view-all-btn {
            background: #e91e63;
            border: 2px solid #e91e63;
            color: inherit;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .view-all-btn:hover {
            background: #e91e63;
            color: #fff;
            transform: scale(1.05);
        }

        .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 1 row me 3 cards */
  gap: 20px; /* cards ke beech gap */
  margin-top: 20px;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


        .product-card.games:hover {
            border-color: rgba(236, 72, 153, 0.4);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
        }

        .product-card.ebooks:hover {
            border-color: rgba(34, 211, 238, 0.4);
            box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
        }

        .product-card.software:hover {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        }

        .product-card.tools:hover {
            border-color: rgba(16, 185, 129, 0.4);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }

        .product-image {
            position: relative;
            height: 180px;
            background: linear-gradient(45deg, #1f2937, #374151);
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-category {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            backdrop-filter: blur(10px);
            
        }

        .product-category.games {
            background: #e91e63;
            color: #fff;
        }

        .product-category.ebooks {
            background: rgba(34, 211, 238, 0.8);
            color: #fff;
        }

        .product-category.software {
            background: #e91e63;
            color: #fff;
        }

        .product-category.tools {
            background: #00bcd4;
            color: #fff;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .download-btn {
  position: relative;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: bold;
  color: #00bcd4;
  background: transparent;
  border: none;
  text-align: center;
  z-index: 1;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}

.download-btn::before,
.download-btn::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border: 2px solid transparent;
  border-radius: 50%;
  z-index: -1;
}

.download-btn::before {
  border-top: 2px solid #00bcd4;
  border-right: 2px solid #00bcd4;
  animation: rotateBorder1 3s linear infinite;
}

.download-btn::after {
  border-bottom: 2px solid #00bcd4;
  border-left: 2px solid #00bcd4;
  animation: rotateBorder2 3s linear infinite reverse;
}

@keyframes rotateBorder1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateBorder2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .product-title.games {
            color: #00bcd4;
        }

        .product-title.ebooks {
            color: #e91e63;
        }

        .product-title.software {
            color: #00bcd4;
        }

        .product-title.tools {
            color: #e91e63;
        }

        .product-price {
            font-weight: bold;
            font-size: 1.1rem;
            float: right;
        }

        .product-price.games {
            color: #e91e63;
        }

        .product-price.ebooks {
            color: #00bcd4;
        }

        .product-price.software {
            color: #e91e63;
        }

        .product-price.tools {
            color: #00bcd4;
        }

        .product-description {
            color: #9ca3af;
            margin: 10px 0;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .product-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            font-size: 0.8rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fbbf24;
        }

        .product-meta {
            color: #e91e63;
            display: flex;
            gap: 10px;
        }

        .search-section {
            margin-bottom: 40px;
            text-align: center;
        }

        .search-container {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(236, 72, 153, 0.3);
            border-radius: 30px;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .search-input:focus {
            border-color: rgba(236, 72, 153, 0.6);
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
        }

        .search-input::placeholder {
            color: #9ca3af;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background:  #00bcd4;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff
        }

        .search-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        @keyframes neonGlow {
            from {
                text-shadow: 0 0 20px #00bcd4, 0 0 30px #00bcd4, 0 0 40px #00bcd4;
            }
            to {
                text-shadow: 0 0 30px #e91e63, 0 0 40px #e91e63, 0 0 50px #e91e63;
            }
        }

        .hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .category-title {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .main-section {
                padding: 40px 15px;
            }
            
            .category-nav {
                gap: 10px;
            }
            
            .category-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }


/* software */


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

        body {
            background: #000;
            color: #fff;
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .software-section {
            position: relative;
            padding: 60px 20px;
            margin-top: 80px;
            background: #16213e;
        }

        .software-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #16213e ;
             pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: #00bcd4;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .software-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .software-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
            border: 1px solid rgba(236, 72, 153, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .software-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(236, 72, 153, 0.4);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
        }

        .software-image {
            position: relative;
            height: 220px;
            background: linear-gradient(45deg, #1f2937, #374151);
            overflow: hidden;
        }

        .software-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .software-card:hover .software-image img {
            transform: scale(1.1);
        }

        .software-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ec4899;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .software-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .software-card:hover .software-overlay {
            opacity: 1;
        }

        
        .software-info {
            padding: 20px;
        }

        .software-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ec4899;
            margin-bottom: 8px;
        }

        .software-price {
            color: #22d3ee;
            font-weight: bold;
            font-size: 1.1rem;
            float: right;
        }

        .software-description {
            color: #9ca3af;
            margin: 10px 0;
            font-size: 0.9rem;
        }

        .software-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            font-size: 0.85rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fbbf24;
        }

        .software-meta {
            color: #6b7280;
            display: flex;
            gap: 15px;
        }

        .platform-info {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            color: #6b7280;
            font-size: 0.8rem;
        }

      
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .software-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .software-section {
                padding: 40px 15px;
            }
        }





        /* games */

        .games-section {
            position: relative;
            padding: 60px 20px;
            margin-top: 0px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 1) 50%, rgba(34, 211, 238, 0.1) 100%);
        }

        .games-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #16213e;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: #00bcd4;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .game-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
            border: 1px solid rgba(236, 72, 153, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(236, 72, 153, 0.4);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
        }

        .game-image {
            position: relative;
            height: 200px;
            background: linear-gradient(45deg, #1f2937, #374151);
            overflow: hidden;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .game-card:hover .game-image img {
            transform: scale(1.1);
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        

        .game-info {
            padding: 20px;
        }

        .game-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ec4899;
            margin-bottom: 8px;
        }

        .game-price {
            color: #22d3ee;
            font-weight: bold;
            font-size: 1.1rem;
            float: right;
        }

        .game-description {
            color: #9ca3af;
            margin: 10px 0;
            font-size: 0.9rem;
        }

        .game-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            font-size: 0.85rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fbbf24;
        }

        .game-meta {
            color: #6b7280;
            display: flex;
            gap: 15px;
        }


        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .games-section {
                padding: 40px 15px;
            }
        }
    

        /* ebooks */


        
        .ebooks-section {
            position: relative;
            padding: 60px 20px;
            margin-top: 0px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 1) 50%, rgba(34, 211, 238, 0.1) 100%);
        }

        .ebooks-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #16213e;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: #00bcd4;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .ebooks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .ebooks-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
            border: 1px solid rgba(236, 72, 153, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .ebooks-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(236, 72, 153, 0.4);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
        }

        .ebooks-image {
            position: relative;
            height: 200px;
            background: linear-gradient(45deg, #1f2937, #374151);
            overflow: hidden;
        }

        .ebooks-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .ebooks-card:hover .ebooks-image img {
            transform: scale(1.1);
        }

        .ebooks-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ebooks-card:hover .ebooks-overlay {
            opacity: 1;
        }

        

        .ebooks-info {
            padding: 20px;
        }

        .ebooks-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ec4899;
            margin-bottom: 8px;
        }

        .ebooks-price {
            color: #22d3ee;
            font-weight: bold;
            font-size: 1.1rem;
            float: right;
        }

        .ebooks-description {
            color: #9ca3af;
            margin: 10px 0;
            font-size: 0.9rem;
        }

        .ebooks-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            font-size: 0.85rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fbbf24;
        }

        .ebooks-meta {
            color: #6b7280;
            display: flex;
            gap: 15px;
        }


        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .ebooks-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .ebooks-section {
                padding: 40px 15px;
            }
        }
    


        /* other tools */

        
        .tools-section {
            position: relative;
            padding: 60px 20px;
            margin-top: 0px;
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(0, 0, 0, 1) 50%, rgba(236, 72, 153, 0.1) 100%);
        }

        .tools-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:#16213e ;
           
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: #00bcd4;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #9ca3af;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .tool-card {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
            border: 1px solid rgba(34, 211, 238, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .tool-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(34, 211, 238, 0.4);
            box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
        }

        .tool-image {
            position: relative;
            height: 200px;
            background: linear-gradient(45deg, #1f2937, #374151);
            overflow: hidden;
        }

        .tool-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .tool-card:hover .tool-image img {
            transform: scale(1.1);
        }

        .tool-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ec4899;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .tool-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tool-card:hover .tool-overlay {
            opacity: 1;
        }

       
        .tool-info {
            padding: 20px;
        }

        .tool-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #22d3ee;
            margin-bottom: 8px;
        }

        .tool-price {
            color: #ec4899;
            font-weight: bold;
            font-size: 1.1rem;
            float: right;
        }

        .tool-description {
            color: #9ca3af;
            margin: 10px 0;
            font-size: 0.9rem;
        }

        .tool-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            font-size: 0.85rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fbbf24;
        }

        .tool-meta {
            color: #6b7280;
            display: flex;
            gap: 15px;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(34, 211, 238, 0.1);
            color: #22d3ee;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            margin-top: 10px;
            border: 1px solid rgba(34, 211, 238, 0.2);
        }

        

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tools-section {
                padding: 40px 15px;
            }
        }



